/* Customize: Change these colors to match your personal brand. */
:root {
  --bg: #f7f7f2;
  --text: #202124;
  --muted: #5f6368;
  --panel: #ffffff;
  --accent: #0f766e;
  --accent-dark: #0b4f4a;
  --dark: #151719;
  --line: #d8ddd8;
  --shadow: 0 16px 40px rgba(25, 32, 31, 0.08);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.6;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(247, 247, 242, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(10px);
}

.nav {
  width: min(1120px, calc(100% - 32px));
  min-height: 72px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo {
  font-size: 1.1rem;
  font-weight: 800;
}

.nav-links {
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 24px;
  list-style: none;
}

.nav-links a {
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 700;
}

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

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 10px;
  border: 1px solid var(--line);
  background: var(--panel);
  border-radius: 6px;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  margin: 5px 0;
  background: var(--text);
}

.section {
  padding: 88px 0;
}

.section-inner {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

.hero {
  min-height: calc(100vh - 72px);
  display: grid;
  align-items: center;
  background:
    linear-gradient(90deg, rgba(13, 15, 16, 0.78), rgba(13, 15, 16, 0.28)),
    url("images/DSCF0096.jpg") center / cover;
}

.hero-content {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.75fr);
  gap: 52px;
  align-items: center;
}

.hero-copy {
  min-width: 0;
}

.hero h1 {
  color: white;
}

.hero-text {
  color: rgba(255, 255, 255, 0.84);
}

.hero-frame {
  margin: 0;
  padding: 0;
  background: rgba(13, 15, 16, 0.28);
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 8px;
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.34);
  overflow: hidden;
}

.hero-frame img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center;
}

.eyebrow {
  margin: 0 0 12px;
  color: #70d6ca;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: break-word;
}

h1 {
  margin: 0;
  max-width: 860px;
  font-size: clamp(2.7rem, 8vw, 5.8rem);
  line-height: 0.96;
}

h2 {
  margin: 0 0 20px;
  font-size: clamp(2rem, 4vw, 3.1rem);
  line-height: 1.08;
}

h3 {
  margin: 0 0 10px;
  font-size: 1.2rem;
}

p {
  margin: 0 0 18px;
  color: var(--muted);
}

.hero-text {
  max-width: 680px;
  margin-top: 24px;
  font-size: 1.15rem;
}

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

.image-band {
  min-height: 340px;
  display: grid;
  align-items: end;
  background:
    linear-gradient(90deg, rgba(13, 15, 16, 0.78), rgba(13, 15, 16, 0.28)),
    url("images/DSCF0359.JPG") center / cover;
}

.image-band-inner {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  padding: 44px 0;
}

.image-band p {
  max-width: 560px;
  margin: 0;
  color: white;
  font-size: clamp(1.6rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.08;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  border: 1px solid var(--accent);
  border-radius: 6px;
  font-weight: 800;
}

.button.primary {
  background: var(--accent);
  color: white;
}

.button.secondary {
  background: rgba(255, 255, 255, 0.92);
  border-color: rgba(255, 255, 255, 0.92);
  color: var(--dark);
}

.button:hover {
  transform: translateY(-1px);
}

.two-column {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 56px;
  align-items: start;
}

.about-copy {
  max-width: 780px;
}

.about-copy p {
  font-size: 1.12rem;
}

.section-photo {
  position: relative;
  overflow: hidden;
}

.section-photo::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(247, 247, 242, 0.96), rgba(247, 247, 242, 0.72)),
    var(--section-photo);
  background-position: center;
  background-size: cover;
  opacity: 0.58;
}

.section-photo > * {
  position: relative;
}

.section-photo-about {
  --section-photo: url("images/DSCF0052.jpg");
}

.selected-songs {
  background: var(--bg);
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  margin-top: 32px;
}

.video-card {
  min-width: 0;
}

.video-frame {
  overflow: hidden;
  aspect-ratio: 16 / 9;
  background: var(--dark);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.video-frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.video-card h3 {
  margin-top: 18px;
}

.video-card p {
  max-width: 560px;
}

.audio-samples {
  margin-top: 52px;
}

.audio-samples h3 {
  margin-bottom: 18px;
}

.audio-note {
  max-width: 560px;
  margin-bottom: 22px;
}

.audio-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.audio-card {
  padding: 20px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.audio-card h4 {
  margin: 0 0 14px;
  font-size: 1.05rem;
}

.audio-card audio {
  width: 100%;
}

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

.contact-section {
  background:
    linear-gradient(90deg, rgba(13, 15, 16, 0.96), rgba(13, 15, 16, 0.76)),
    url("images/DSCF0288.JPG") center / cover;
}

.section-dark p {
  color: #c4c9c7;
}

.contact {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: start;
}

.contact-links {
  display: grid;
  gap: 12px;
}

.contact-links a {
  padding: 14px 0;
  color: white;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  font-weight: 800;
}

.contact-links a:hover {
  color: #70d6ca;
}

.site-footer {
  padding: 26px 16px;
  text-align: center;
  background: #0d0f10;
}

.site-footer p {
  margin: 0;
  color: #c4c9c7;
  font-size: 0.9rem;
}

@media (max-width: 760px) {
  .nav {
    min-height: 64px;
  }

  .nav-toggle {
    display: block;
  }

  .nav-links {
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    display: none;
    padding: 16px;
    background: var(--bg);
    border-bottom: 1px solid var(--line);
  }

  .nav-links.is-open {
    display: grid;
    gap: 12px;
  }

  .nav-links a {
    display: block;
    padding: 10px 0;
  }

  .section {
    padding: 64px 0;
  }

  .hero {
    min-height: auto;
    padding-top: 82px;
  }

  .hero-content {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .hero-frame {
    max-width: 420px;
  }

  .hero-actions {
    display: grid;
  }

  .button {
    width: 100%;
  }

  .two-column,
  .contact {
    grid-template-columns: 1fr;
    gap: 18px;
  }

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

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

  .image-band {
    min-height: 280px;
  }
}
