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

    :root {
      --black: #000000;
      --white: #f4f2ee;
      --dim: rgba(244, 242, 238, 0.35);
      --hairline: rgba(244, 242, 238, 0.12);
      --display: 'Bodoni Moda', Georgia, serif;
      --body: 'Spectral', Georgia, serif;
    }

    html {
      scroll-behavior: smooth;
      font-size: 18px;
    }

    body {
      background: var(--black);
      color: var(--white);
      font-family: var(--body);
      font-weight: 300;
      line-height: 1.75;
      -webkit-font-smoothing: antialiased;
      cursor: default;
    }

    body::before {
      content: '';
      position: fixed;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      width: 100%;
      height: 100%;
      background: url('LogoWideCropped.png') center center / contain no-repeat;
      opacity: 0.01;
      pointer-events: none;
      z-index: 0;
    }

    body > * { position: relative; z-index: 1; }

    /* ── FADE-IN ON LOAD ── */
    @keyframes fadeUp {
      from { opacity: 0; transform: translateY(18px); }
      to   { opacity: 1; transform: translateY(0); }
    }

    .reveal {
      opacity: 0;
      animation: fadeUp 1s cubic-bezier(0.22, 1, 0.36, 1) forwards;
    }

    /* ── NAV ── */
    nav {
      position: fixed;
      top: 0; left: 0; right: 0;
      z-index: 50;
      padding: 2rem 4rem;
      display: flex;
      justify-content: space-between;
      align-items: baseline;
      background: linear-gradient(to bottom, rgba(0,0,0,0.95) 0%, transparent 100%);
    }

    .nav-logo {
      display: block;
      text-decoration: none;
    }

    .nav-logo img {
      height: 32px;
      width: auto;
      display: block;
    }

    .nav-links {
      list-style: none;
      display: flex;
      gap: 2.5rem;
    }

    .nav-links a {
      font-family: var(--body);
      font-size: 0.72rem;
      font-weight: 200;
      letter-spacing: 0.22em;
      text-transform: uppercase;
      color: var(--dim);
      text-decoration: none;
      transition: color 0.3s;
    }

    .nav-links a:hover { color: var(--white); }

    /* ── HERO ── */
    #home {
      min-height: 100vh;
      display: grid;
      place-items: center;
      text-align: center;
      padding: 8rem 4rem 6rem;
      position: relative;
    }

    .hero-inner { max-width: 1100px; width: 100%; }

    .hero-eyebrow {
      font-family: var(--body);
      font-size: 0.65rem;
      font-weight: 200;
      letter-spacing: 0.35em;
      text-transform: uppercase;
      color: var(--dim);
      margin-bottom: 2.5rem;
    }

    .hero-quotes {
      position: relative;
      height: 6rem;
      width: 100%;
      max-width: 1100px;
      margin: 0 auto 2.5rem;
    }

    /* Each quote: 35s total cycle, visible for 7s (20% of cycle)
       Fade in over 2s, hold for 5s, fade out over 2s
       But each is staggered by 7s so only one is ever visible */
    @keyframes q0 {
      0%      { opacity: 0; }
      5.71%   { opacity: 1; }
      20%     { opacity: 1; }
      25.71%  { opacity: 0; }
      100%    { opacity: 0; }
    }
    @keyframes q1 {
      0%      { opacity: 0; }
      20%     { opacity: 0; }
      25.71%  { opacity: 1; }
      40%     { opacity: 1; }
      45.71%  { opacity: 0; }
      100%    { opacity: 0; }
    }
    @keyframes q2 {
      0%      { opacity: 0; }
      40%     { opacity: 0; }
      45.71%  { opacity: 1; }
      60%     { opacity: 1; }
      65.71%  { opacity: 0; }
      100%    { opacity: 0; }
    }
    @keyframes q3 {
      0%      { opacity: 0; }
      60%     { opacity: 0; }
      65.71%  { opacity: 1; }
      80%     { opacity: 1; }
      85.71%  { opacity: 0; }
      100%    { opacity: 0; }
    }
    @keyframes q4 {
      0%      { opacity: 0; }
      80%     { opacity: 0; }
      85.71%  { opacity: 1; }
      100%    { opacity: 1; }
    }

    .hero-quote {
      position: absolute;
      top: 0; left: 0; right: 0;
      opacity: 0;
      font-family: var(--body);
      font-style: italic;
      font-weight: 200;
      font-size: clamp(1rem, 1.8vw, 1.5rem);
      color: var(--white);
      letter-spacing: 0.03em;
      line-height: 1.6;
      text-align: center;
      animation-duration: 35s;
      animation-timing-function: linear;
      animation-iteration-count: infinite;
      animation-delay: 0s;
    }

    .hero-quote:nth-child(1) { animation-name: q0; }
    .hero-quote:nth-child(2) { animation-name: q1; }
    .hero-quote:nth-child(3) { animation-name: q2; }
    .hero-quote:nth-child(4) { animation-name: q3; }
    .hero-quote:nth-child(5) { animation-name: q4; }

    .hero-quote em {
      font-style: normal;
      font-weight: 200;
      font-size: 0.8em;
      letter-spacing: 0.08em;
      color: var(--dim);
      display: block;
      margin-top: 0.4rem;
    }

    .hero-cta-wrap {
      margin-top: 3rem;
    }

    .btn {
      display: inline-block;
      font-family: var(--body);
      font-size: 0.68rem;
      font-weight: 200;
      letter-spacing: 0.28em;
      text-transform: uppercase;
      color: var(--black);
      background: var(--white);
      text-decoration: none;
      padding: 1rem 2.8rem;
      transition: background 0.3s, color 0.3s, outline 0.3s;
    }

    .btn:hover {
      background: transparent;
      color: var(--white);
      outline: 1px solid var(--white);
    }

    /* ── SHARED SECTION ── */
    .section-wrap {
      max-width: 1100px;
      margin: 0 auto;
      padding: 9rem 4rem;
      border-top: 1px solid var(--hairline);
    }

    .section-label {
      font-family: var(--body);
      font-size: 0.8rem;
      font-weight: 200;
      letter-spacing: 0.32em;
      text-transform: uppercase;
      color: var(--dim);
      margin-bottom: 4rem;
    }

    /* ── ABOUT ── */
    .about-heading {
      font-family: var(--display);
      font-size: clamp(1rem, 4vw, 1.5rem);
      font-weight: 300;
      line-height: 1.1;
      letter-spacing: -0.01em;
      margin-bottom: 2.5rem;
    }

    .about-heading em { font-style: italic; }

    .about-body-wrap::after {
      content: '';
      display: table;
      clear: both;
    }

    .about-photo {
      float: left;
      width: 40%;
      aspect-ratio: 3 / 4;
      overflow: hidden;
      margin: 0.25rem 3rem 1rem 0;
    }

    .about-bio {
      font-size: 1.05rem;
      font-weight: 300;
      line-height: 1.9;
      color: rgba(244, 242, 238, 0.8);
    }

    .about-bio + .about-bio { margin-top: 1.2rem; }

    .about-bio-full {
      font-size: 1.05rem;
      font-weight: 300;
      line-height: 1.9;
      color: rgba(244, 242, 238, 0.8);
      margin-top: 1.2rem;
    }

    /* ── BOOKING ── */
    .booking-inner {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 5rem;
      align-items: start;
    }

    .booking-heading {
      font-family: var(--display);
      font-size: clamp(2rem, 4vw, 3rem);
      font-weight: 300;
      line-height: 1.1;
      letter-spacing: -0.01em;
      margin-bottom: 1.5rem;
    }

    .booking-heading em { font-style: italic; }

    .booking-note {
      font-size: 1rem;
      font-weight: 300;
      color: rgba(244, 242, 238, 0.65);
      line-height: 1.85;
      max-width: 40ch;
    }

    .contact-form {
      display: flex;
      flex-direction: column;
      gap: 1.4rem;
    }

    .field {
      display: flex;
      flex-direction: column;
      gap: 0.4rem;
    }

    .field label {
      font-family: var(--body);
      font-size: 0.6rem;
      font-weight: 200;
      letter-spacing: 0.28em;
      text-transform: uppercase;
      color: var(--dim);
    }

    .field input,
    .field textarea,
    .field select {
      background: transparent;
      border: none;
      border-bottom: 1px solid var(--hairline);
      color: var(--white);
      font-family: var(--body);
      font-size: 0.95rem;
      font-weight: 300;
      padding: 0.6rem 0;
      outline: none;
      transition: border-color 0.25s;
      width: 100%;
    }

    .field input::placeholder,
    .field textarea::placeholder { color: rgba(244,242,238,0.2); }

    .field input:focus,
    .field textarea:focus,
    .field select:focus { border-bottom-color: rgba(244,242,238,0.5); }

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

    .field select option { background: #000; }

    .form-submit {
      align-self: flex-start;
      margin-top: 0.5rem;
      font-family: var(--body);
      font-size: 0.68rem;
      font-weight: 200;
      letter-spacing: 0.28em;
      text-transform: uppercase;
      color: var(--black);
      background: var(--white);
      border: 1px solid var(--white);
      padding: 0.9rem 2.4rem;
      cursor: pointer;
      transition: background 0.3s, color 0.3s;
    }

    .form-submit:hover {
      background: transparent;
      color: var(--white);
    }

    /* ── LISTEN ── */
    .track-list {
      list-style: none;
      border-top: 1px solid var(--hairline);
      margin-bottom: 3rem;
    }

    .track-item {
      display: flex;
      align-items: center;
      gap: 1.5rem;
      padding: 1.1rem 0;
      border-bottom: 1px solid var(--hairline);
      cursor: pointer;
      transition: color 0.2s;
    }

    .track-item:hover { color: var(--white); }

    .track-item.inactive { color: var(--dim); }

    .track-num {
      font-family: var(--body);
      font-size: 0.62rem;
      font-weight: 200;
      letter-spacing: 0.2em;
      color: var(--dim);
      width: 1.5rem;
      flex-shrink: 0;
      text-align: right;
    }

    .track-item.active .track-num { color: var(--white); }

    .track-play-icon {
      width: 1rem;
      flex-shrink: 0;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .track-play-icon svg { display: block; }

    .track-title {
      font-family: var(--body);
      font-size: 1rem;
      font-weight: 300;
      letter-spacing: 0.02em;
      flex: 1;
    }

    .track-duration {
      font-family: var(--body);
      font-size: 0.65rem;
      font-weight: 200;
      letter-spacing: 0.12em;
      color: var(--dim);
    }

    .player-transport {
      display: flex;
      align-items: center;
      gap: 1.5rem;
    }

    .transport-btn {
      background: none;
      border: none;
      color: var(--white);
      cursor: pointer;
      padding: 0;
      display: flex;
      align-items: center;
      opacity: 0.9;
      transition: opacity 0.2s;
    }

    .transport-btn:hover { opacity: 1; }

    .progress-wrap {
      flex: 1;
      display: flex;
      flex-direction: column;
      gap: 0.5rem;
    }

    .progress-bar-bg {
      width: 100%;
      height: 1px;
      background: var(--hairline);
      position: relative;
      cursor: pointer;
    }

    .progress-bar-fill {
      height: 100%;
      background: var(--white);
      width: 0%;
      pointer-events: none;
    }

    .progress-times {
      display: flex;
      justify-content: space-between;
      font-family: var(--body);
      font-size: 0.6rem;
      font-weight: 200;
      letter-spacing: 0.1em;
      color: var(--dim);
    }

    .listen-credits {
      margin-top: 2.5rem;
      font-size: 0.75rem;
      font-weight: 200;
      font-style: italic;
      letter-spacing: 0.04em;
      color: var(--dim);
      line-height: 1.8;
    }

    /* ── LINKS ── */
    .links-wrap {
      max-width: 900px;
      margin: 0 auto;
      padding: 6rem 4rem;
      border-top: 1px solid var(--hairline);
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 2rem;
    }

    .links-name {
      font-family: var(--display);
      font-size: 1.05rem;
      font-weight: 400;
      letter-spacing: 0.06em;
    }

    .social-links {
      display: flex;
      gap: 2.5rem;
      list-style: none;
    }

    .social-links a {
      font-family: var(--body);
      font-size: 0.65rem;
      font-weight: 200;
      letter-spacing: 0.22em;
      text-transform: uppercase;
      color: var(--dim);
      text-decoration: none;
      transition: color 0.25s;
    }

    .social-links a:hover { color: var(--white); }

    /* ── FOOTER ── */
    footer {
      max-width: 900px;
      margin: 0 auto;
      padding: 2rem 4rem 4rem;
      border-top: 1px solid var(--hairline);
      display: flex;
      justify-content: space-between;
      align-items: baseline;
    }

    footer p {
      font-family: var(--body);
      font-size: 0.6rem;
      font-weight: 200;
      letter-spacing: 0.15em;
      color: rgba(244,242,238,0.2);
    }

    /* ── SCROLL REVEAL ── */
    .sr {
      opacity: 0;
      transform: translateY(20px);
      transition: opacity 0.9s cubic-bezier(0.22, 1, 0.36, 1),
                  transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
    }

    .sr.visible {
      opacity: 1;
      transform: none;
    }

    /* ── RESPONSIVE ── */
    @media (max-width: 760px) {
      nav { padding: 1.5rem 1.5rem; }
      .nav-links { display: none; }

      #home { padding: 7rem 1.5rem 5rem; }

      .section-wrap { padding: 6rem 1.5rem; }

      .about-grid,
      .what-body,
      .booking-inner { grid-template-columns: 1fr; gap: 3rem; }

      .about-photo {
        float: none;
        width: 100%;
        aspect-ratio: 4 / 3;
        margin: 0 0 1.5rem 0;
      }

      .links-wrap {
        flex-direction: column;
        align-items: flex-start;
        padding: 4rem 1.5rem;
        gap: 2rem;
      }

      footer { padding: 2rem 1.5rem 3rem; flex-direction: column; gap: 0.5rem; }
    }
