:root {
  --ink: #080808;
  --paper: #ffffff;
  --soft: #f4f4f2;
  --line: #cfcfcf;
  --muted: #686868;
  --max: 1320px;
  --narrow: 760px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.55;
  letter-spacing: 0;
  overflow-x: hidden;
}

img {
  display: block;
  width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 28px;
  min-height: 78px;
  padding: 16px clamp(22px, 5vw, 76px);
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  backdrop-filter: blur(14px);
}

.brand {
  justify-self: end;
  font-family: "Segoe Script", "Brush Script MT", cursive;
  font-size: clamp(1.55rem, 2.4vw, 2.3rem);
  line-height: 1;
  white-space: nowrap;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(18px, 2.2vw, 34px);
}

.site-nav a {
  position: relative;
  font-size: 0.79rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.site-nav a::after {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -9px;
  height: 3px;
  background: var(--ink);
  content: "";
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 160ms ease;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after,
.site-nav a.is-active::after {
  transform: scaleX(1);
}

.social-mini {
  display: flex;
  justify-self: start;
  gap: 12px;
}

.social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border: 1px solid transparent;
  border-radius: 999px;
}

.social-icon:hover,
.social-icon:focus-visible {
  border-color: var(--ink);
}

.social-icon svg {
  display: block;
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.social-icon .icon-cutout,
.social-icon .icon-dot {
  fill: currentColor;
  stroke: none;
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 1px solid var(--ink);
  border-radius: 0;
  background: transparent;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: var(--ink);
}

.home-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(320px, 0.55fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
  width: min(var(--max), calc(100% - 48px));
  margin: 0 auto;
  padding: clamp(58px, 8vw, 112px) 0 clamp(54px, 7vw, 96px);
}

.hero-media img {
  aspect-ratio: 2.18 / 1;
  object-fit: cover;
}

.hero-copy {
  max-width: 470px;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

p {
  overflow-wrap: anywhere;
}

h1,
h2 {
  margin: 0;
  font-weight: 900;
  line-height: 1.05;
}

.home-hero h1 {
  max-width: 9ch;
  font-size: clamp(3rem, 5.4vw, 6rem);
}

.hero-copy p:not(.eyebrow) {
  max-width: 34rem;
  margin: 24px 0 0;
  color: #2d2d2d;
  font-size: clamp(1rem, 1.15vw, 1.2rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 22px;
  border: 1px solid var(--ink);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.button-dark {
  background: var(--ink);
  color: var(--paper);
}

.button-light {
  background: var(--paper);
  color: var(--ink);
}

.section {
  width: min(var(--max), calc(100% - 48px));
  margin: 0 auto;
  padding: clamp(58px, 8vw, 112px) 0;
}

.section.compact {
  width: min(900px, calc(100% - 48px));
}

.section-heading {
  display: grid;
  grid-template-columns: 42px auto 42px;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin-bottom: 42px;
  text-align: center;
}

.section-heading span,
.ornament span {
  display: block;
  height: 1px;
  background: var(--ink);
}

.section-heading h2,
.page-title h1,
.site-footer h2 {
  font-size: clamp(1.9rem, 3vw, 3rem);
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.two-column {
  column-count: 2;
  column-gap: clamp(42px, 5vw, 76px);
}

.two-column p {
  margin: 0 0 18px;
  font-size: 1.04rem;
  font-weight: 700;
  line-height: 1.7;
  text-align: justify;
}

.split-feature {
  display: grid;
  grid-template-columns: minmax(260px, 0.82fr) minmax(320px, 1.18fr);
  gap: clamp(32px, 7vw, 96px);
  align-items: center;
}

.split-feature h2,
.contact-panel h2,
.music-grid h2,
.video-placeholder h2 {
  margin-bottom: 18px;
  font-size: clamp(2rem, 4vw, 4.6rem);
}

.split-feature p:not(.eyebrow),
.contact-panel p:not(.eyebrow),
.music-grid p,
.center-text p {
  max-width: 620px;
  color: #303030;
  font-size: 1.02rem;
}

.image-frame img {
  aspect-ratio: 1.7 / 1;
  object-fit: cover;
}

.link-list,
.contact-links {
  display: grid;
  gap: 10px;
  margin-top: 28px;
}

.link-list a,
.contact-links a,
.video-list a {
  display: grid;
  gap: 4px;
  padding: 18px 0;
  border-top: 1px solid var(--line);
  font-weight: 900;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.link-list a:last-child,
.contact-links a:last-child,
.video-list a:last-child {
  border-bottom: 1px solid var(--line);
}

.link-list span,
.contact-links span,
.video-list span {
  color: var(--muted);
  font-size: 0.76rem;
  letter-spacing: 0.08em;
  text-transform: none;
}

.quote-section {
  width: min(780px, calc(100% - 48px));
  text-align: center;
}

blockquote {
  margin: 0;
}

blockquote p {
  margin: 0;
  font-size: clamp(1.2rem, 2vw, 1.85rem);
  font-style: italic;
  font-weight: 800;
  line-height: 1.35;
}

.page-title {
  width: min(var(--max), calc(100% - 48px));
  margin: 0 auto;
  padding: clamp(76px, 9vw, 132px) 0 42px;
  text-align: center;
}

.ornament {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin-top: 32px;
}

.ornament span {
  width: 46px;
}

.ornament i {
  display: block;
  width: 14px;
  height: 14px;
  border: 2px solid var(--ink);
  border-radius: 999px;
  background: var(--paper);
}

.wide-photo {
  width: min(var(--max), calc(100% - 48px));
  margin: 0 auto;
}

.wide-photo img {
  aspect-ratio: 2.35 / 1;
  object-fit: cover;
}

.social-symbols {
  display: flex;
  justify-content: center;
  gap: clamp(34px, 7vw, 72px);
  padding-top: 0;
}

.social-symbols .social-icon {
  width: 46px;
  height: 46px;
}

.social-symbols .social-icon svg {
  width: 25px;
  height: 25px;
}

.music-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
}

.music-grid article {
  min-height: 290px;
  padding: clamp(28px, 4vw, 48px);
  background: var(--soft);
}

.music-grid h2 {
  font-size: clamp(1.8rem, 3vw, 3.3rem);
}

.spotify-section {
  width: min(920px, calc(100% - 48px));
  padding-top: 0;
}

.youtube-section {
  width: min(920px, calc(100% - 48px));
  padding-top: 0;
}

.spotify-embed {
  overflow: hidden;
}

.spotify-embed iframe {
  display: block;
  width: 100%;
  max-width: 100%;
  border: 0;
  border-radius: 0;
}

.youtube-embed {
  overflow: hidden;
}

.youtube-embed iframe {
  display: block;
  width: 100%;
  max-width: 100%;
  border: 0;
  border-radius: 0;
  background: #000;
}

.spotify-note {
  margin: 24px 0 0;
  text-align: center;
}

.spotify-note a {
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.video-layout {
  display: grid;
  grid-template-columns: 360px minmax(0, 1fr);
  gap: clamp(30px, 5vw, 68px);
  align-items: start;
}

.video-list {
  display: grid;
  gap: 0;
}

.video-item {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  gap: 16px;
  align-items: start;
  width: 100%;
  padding: 18px 0;
  border: 0;
  border-top: 1px solid var(--line);
  background: transparent;
  color: var(--ink);
  text-align: left;
  cursor: pointer;
}

.video-item:last-child {
  border-bottom: 1px solid var(--line);
}

.video-item-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  margin-top: 2px;
}

.video-item-icon svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
}

.video-item-copy {
  display: grid;
  gap: 6px;
}

.video-item-copy b {
  font-size: 0.94rem;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.video-item-copy span {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 700;
}

.video-item.is-active .video-item-copy b,
.video-item:hover .video-item-copy b,
.video-item:focus-visible .video-item-copy b {
  color: #111;
}

.featured-video iframe {
  display: block;
  width: 100%;
  max-width: 100%;
  border: 0;
  background: #000;
}

.photo-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.9fr;
  gap: clamp(18px, 2.5vw, 32px);
  width: min(var(--max), calc(100% - 48px));
  margin: 0 auto;
}

.photo-grid figure {
  margin: 0;
  background: var(--soft);
}

.photo-grid figure:first-child {
  grid-row: span 2;
}

.photo-grid img {
  height: 100%;
  min-height: 320px;
  object-fit: cover;
}

.center-text {
  text-align: center;
}

.center-text p {
  margin: 0 auto;
}

.contact-showcase {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(320px, 0.9fr);
  gap: clamp(34px, 5vw, 64px);
  align-items: start;
  padding-top: clamp(52px, 7vw, 96px);
}

.contact-photo {
  margin: 0;
}

.contact-photo img {
  aspect-ratio: 1.35 / 1;
  object-fit: cover;
  object-position: center 40%;
}

.contact-copy h1 {
  margin: 0;
  font-size: clamp(2.1rem, 3.2vw, 3.4rem);
  font-weight: 900;
  letter-spacing: 0.08em;
}

.contact-rule {
  width: min(100%, 520px);
  height: 4px;
  margin: 28px 0 54px;
  background: var(--ink);
}

.contact-email {
  font-size: clamp(1.2rem, 1.9vw, 1.7rem);
  font-weight: 700;
}

.contact-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.8fr);
  gap: clamp(32px, 8vw, 112px);
  align-items: start;
  min-height: 420px;
}

.site-footer {
  width: min(var(--max), calc(100% - 48px));
  margin: 0 auto;
  padding: 70px 0 42px;
  text-align: center;
}

.footer-social {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 28px;
  margin: 40px 0 34px;
}

.footer-social a {
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.site-footer p {
  margin: 0;
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.26em;
  text-transform: uppercase;
}

@media (max-width: 1040px) {
  .site-header {
    grid-template-columns: auto 1fr auto;
  }

  .brand {
    justify-self: start;
  }

  .social-mini {
    display: none;
  }

  .home-hero,
  .split-feature,
  .video-layout,
  .contact-panel,
  .contact-showcase {
    grid-template-columns: 1fr;
  }

  .home-hero {
    min-height: 0;
  }

  .hero-copy {
    max-width: 720px;
  }
}

@media (max-width: 820px) {
  .site-header {
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 14px;
    min-height: 0;
    padding: 16px 20px 18px;
  }

  .site-nav {
    display: flex;
    position: static;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 12px 18px;
    padding: 0;
    background: transparent;
    border-bottom: 0;
  }

  .brand {
    justify-self: center;
    font-size: clamp(1.95rem, 6.5vw, 2.5rem);
  }

  .site-nav a {
    padding: 0;
    font-size: 0.74rem;
  }

  .site-nav a::after {
    right: 0;
    bottom: -8px;
    width: auto;
  }

  .home-hero,
  .section,
  .section.compact,
  .page-title,
  .wide-photo,
  .photo-grid,
  .site-footer {
    width: min(var(--max), calc(100% - 32px));
  }

  .home-hero {
    padding-top: 30px;
  }

  .two-column {
    column-count: 1;
  }

  .two-column p {
    text-align: left;
  }

  .music-grid,
  .photo-grid {
    grid-template-columns: 1fr;
  }

  .photo-grid figure:first-child {
    grid-row: auto;
  }

  .video-placeholder,
  .video-placeholder > div {
    min-height: 420px;
  }
}

@media (max-width: 520px) {
  .section-heading,
  .page-title h1,
  .site-footer h2 {
    letter-spacing: 0.14em;
  }

  .home-hero h1 {
    font-size: 2.65rem;
  }

  .hero-actions {
    display: grid;
  }

  .button {
    width: 100%;
  }
}
