:root {
  --black: #000;
  --white: #fff;
  --cyan: #7dd0e0;
  --grey: #9a9a9a;
  --line: #262626;
  --display: "Syncopate", sans-serif;
  --body: "Manrope", system-ui, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  margin: 0;
  background: var(--black);
  color: var(--white);
  font-family: var(--body);
  font-size: 17px;
  line-height: 1.55;
}

a { color: inherit; }
a:focus-visible, button:focus-visible { outline: 2px solid var(--cyan); outline-offset: 4px; }
img { display: block; max-width: 100%; height: auto; }

/* header */
.top {
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
  padding: 22px clamp(20px, 5vw, 64px);
}
.mark img { width: clamp(120px, 14vw, 180px); height: auto; }
.nav { display: flex; gap: clamp(16px, 3vw, 36px); font-weight: 600; font-size: 15px; }
.nav a { text-decoration: none; }
.nav a:hover { color: var(--cyan); }
.nav-book { border-bottom: 2px solid var(--cyan); padding-bottom: 2px; }

/* hero */
.hero {
  display: grid; grid-template-columns: 1.1fr 0.9fr; align-items: end;
  padding: clamp(24px, 6vh, 80px) clamp(20px, 5vw, 64px) 0;
  min-height: 72vh;
}
.hero-text { padding-bottom: clamp(40px, 8vh, 96px); }
h1 {
  font-family: var(--display); font-weight: 700;
  font-size: clamp(28px, 4.6vw, 64px); line-height: 1.05; letter-spacing: -0.01em;
  margin: 0 0 24px;
}
.hero-sub { max-width: 34ch; color: var(--grey); font-size: 18px; margin: 0 0 32px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-photo img { width: 100%; max-height: 78vh; object-fit: contain; object-position: bottom; }

/* buttons */
.btn {
  display: inline-block; text-decoration: none; font-weight: 600;
  padding: 14px 26px; background: var(--cyan); color: var(--black);
  clip-path: polygon(10px 0, 100% 0, calc(100% - 10px) 100%, 0 100%);
}
.btn:hover { background: var(--white); }
.btn-quiet { background: transparent; color: var(--white); box-shadow: inset 0 0 0 2px var(--white); }
.btn-quiet:hover { background: var(--white); color: var(--black); }
.btn-big { font-family: var(--display); font-size: clamp(16px, 2.4vw, 28px); padding: 20px 34px; word-break: break-all; }

/* sections */
.block {
  padding: clamp(56px, 9vh, 120px) clamp(20px, 5vw, 64px);
  border-top: 1px solid var(--line);
}
h2 {
  font-family: var(--display); font-weight: 700;
  font-size: clamp(20px, 2.6vw, 34px); margin: 0 0 8px;
}
.lede { color: var(--grey); margin: 0 0 36px; max-width: 48ch; }

/* listen */
.embeds { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 28px; }
.embeds iframe { width: 100%; border: 0; }
.embed-placeholder {
  min-height: 166px; display: grid; place-items: center;
  border: 1px dashed var(--line); color: var(--grey); font-size: 14px;
}
.links { display: flex; gap: 24px; font-weight: 600; margin: 0; }
.links a { text-decoration: none; border-bottom: 1px solid var(--line); }
.links a:hover { border-color: var(--cyan); color: var(--cyan); }

/* dates */
.dates { list-style: none; padding: 0; margin: 0 0 28px; max-width: 760px; }
.dates li {
  display: grid; grid-template-columns: 90px 1fr auto; gap: 16px; align-items: baseline;
  padding: 18px 0; border-bottom: 1px solid var(--line);
}
.dates time { font-family: var(--display); font-weight: 700; font-size: 15px; color: var(--cyan); }
.venue { font-weight: 600; }
.city { color: var(--grey); }
.dates-note { color: var(--grey); margin: 0; max-width: 60ch; }
.dates-note a { color: var(--white); }

/* about */
.about { display: grid; grid-template-columns: 1.2fr 0.8fr; gap: clamp(32px, 6vw, 96px); align-items: center; }
.about-text p { max-width: 58ch; margin: 0 0 18px; }
.about-photo img { max-height: 60vh; object-fit: contain; margin-left: auto; }

/* book */
.book .btn-big { margin-bottom: 36px; }

/* footer */
.foot {
  border-top: 1px solid var(--line);
  padding: 40px clamp(20px, 5vw, 64px); display: flex; justify-content: space-between; align-items: center; gap: 24px;
  color: var(--grey); font-size: 14px;
}
.foot img { width: 110px; opacity: .5; }
.foot p { margin: 0; }

/* mobile */
@media (max-width: 760px) {
  .hero { grid-template-columns: 1fr; min-height: auto; padding-top: 12px; }
  .hero-text { padding-bottom: 24px; order: 2; }
  .hero-photo { order: 1; }
  .hero-photo img { max-height: 52vh; margin: 0 auto; }
  .embeds { grid-template-columns: 1fr; }
  .about { grid-template-columns: 1fr; }
  .about-photo { display: none; }
  .dates li { grid-template-columns: 70px 1fr; }
  .city { grid-column: 2; }
  .foot { flex-direction: column; align-items: flex-start; }
}
