/* ===========================
   Peter Keane — Mid-Century Modern
   =========================== */

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

:root {
  --cream:    #F4EFE4;
  --warm-white: #FAF7F2;
  --brown:    #2A1F14;
  --tan:      #C8A97E;
  --terra:    #B85C38;
  --sage:     #6B7E5E;
  --gold:     #C9A84C;
  --muted:    #7A6E62;
  --border:   #DDD5C4;

  --serif: 'DM Serif Display', Georgia, serif;
  --sans:  'DM Sans', system-ui, sans-serif;
}

html { scroll-behavior: smooth; }

body {
  background: var(--warm-white);
  color: var(--brown);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.7;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

/* ── NAV ── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  background: var(--brown);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 3rem;
  height: 60px;
}

.nav-logo {
  font-family: var(--serif);
  font-size: 1.2rem;
  color: var(--cream);
  letter-spacing: 0.04em;
}

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

.nav-links a {
  color: var(--tan);
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: color 0.2s;
}

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

/* ── HERO ── */
#home {
  min-height: 100vh;
  background: var(--brown);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding: 6rem 2rem 4rem;
}

/* Geometric accents */
#home::before {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 400px; height: 400px;
  border-radius: 50%;
  border: 1px solid rgba(200, 169, 126, 0.2);
}
#home::after {
  content: '';
  position: absolute;
  bottom: 60px; left: 60px;
  width: 160px; height: 160px;
  border: 1px solid rgba(200, 169, 126, 0.15);
}

.hero-inner {
  text-align: center;
  position: relative;
  z-index: 1;
}

.hero-eyebrow {
  font-size: 0.72rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
}

.hero-name {
  font-family: var(--serif);
  font-size: clamp(3.5rem, 10vw, 7rem);
  color: var(--cream);
  line-height: 1;
  font-weight: 400;
  margin-bottom: 1.5rem;
}

.hero-sub {
  color: var(--tan);
  font-size: 1rem;
  letter-spacing: 0.08em;
  margin-bottom: 3rem;
}

.hero-divider {
  width: 48px;
  height: 2px;
  background: var(--terra);
  margin: 0 auto 3rem;
}

.hero-cta {
  display: inline-block;
  padding: 0.8rem 2.2rem;
  border: 1px solid var(--tan);
  color: var(--tan);
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  transition: background 0.25s, color 0.25s;
}

.hero-cta:hover {
  background: var(--tan);
  color: var(--brown);
}

/* ── SECTIONS ── */
section { padding: 6rem 2rem; }

.container { max-width: 1100px; margin: 0 auto; }

.section-label {
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--terra);
  margin-bottom: 0.75rem;
}

.section-title {
  font-family: var(--serif);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 400;
  line-height: 1.15;
  margin-bottom: 1.5rem;
}

.section-rule {
  width: 40px;
  height: 2px;
  background: var(--tan);
  margin-bottom: 2.5rem;
}

/* ── ABOUT ── */
#about { background: var(--cream); }

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.about-text p {
  color: var(--muted);
  margin-bottom: 1.25rem;
  font-size: 1.05rem;
  line-height: 1.85;
}

.about-graphic {
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-emblem {
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: var(--brown);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  position: relative;
}

.about-emblem::before {
  content: '';
  position: absolute;
  inset: -12px;
  border-radius: 50%;
  border: 1px solid var(--tan);
  opacity: 0.4;
}

.about-emblem span:first-child {
  font-family: var(--serif);
  font-size: 1.8rem;
  color: var(--cream);
}

.about-emblem span:last-child {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
}

@media (max-width: 760px) {
  .about-grid { grid-template-columns: 1fr; gap: 3rem; }
  .about-graphic { display: none; }
}

/* ── MUSIC ── */
#music { background: var(--warm-white); }

.video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 2rem;
}

.video-card {
  display: block;
  color: inherit;
}

.video-thumb {
  position: relative;
  padding-bottom: 56.25%;
  background: var(--brown);
  overflow: hidden;
}

.video-thumb img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.3s;
}

.video-card:hover .video-thumb img { opacity: 0.75; }

.video-play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}

.video-play span {
  width: 52px;
  height: 52px;
  background: rgba(42, 31, 20, 0.75);
  border: 2px solid rgba(200, 169, 126, 0.6);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--cream);
  padding-left: 3px;
  transition: background 0.2s, border-color 0.2s;
}

.video-card:hover .video-play span {
  background: var(--terra);
  border-color: var(--terra);
}

.video-info {
  padding: 1rem 0 0;
}

.video-info h3 {
  font-family: var(--serif);
  font-size: 1.1rem;
  font-weight: 400;
  margin-bottom: 0.2rem;
}

.video-info span {
  font-size: 0.78rem;
  color: var(--muted);
  letter-spacing: 0.05em;
}

/* ── STREAMING ── */
#streaming { background: var(--warm-white); }

.streaming-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 0.5rem;
}

.streaming-link {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.75rem 1.5rem;
  border: 1px solid var(--border);
  background: var(--white);
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  color: var(--brown);
  transition: border-color 0.2s, background 0.2s;
}

.streaming-link:hover {
  border-color: var(--tan);
  background: var(--cream);
}

.streaming-link img {
  width: 20px;
  height: 20px;
  object-fit: contain;
}

/* ── ALBUMS ── */
#albums { background: var(--cream); }

.album-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 2rem;
}

.album-card {
  display: block;
  color: inherit;
}

.album-cover {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1;
  background: var(--brown);
}

.album-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.3s, transform 0.4s;
}

.album-card:hover .album-cover img {
  opacity: 0.8;
  transform: scale(1.03);
}

.album-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s;
  background: rgba(42,31,20,0.4);
}

.album-card:hover .album-overlay { opacity: 1; }

.album-overlay span {
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cream);
  border: 1px solid rgba(250,247,242,0.6);
  padding: 0.4rem 0.9rem;
}

.album-info { padding: 0.75rem 0 0; }

.album-info h3 {
  font-family: var(--serif);
  font-size: 1rem;
  font-weight: 400;
  margin-bottom: 0.15rem;
}

.album-info span {
  font-size: 0.75rem;
  color: var(--muted);
  letter-spacing: 0.04em;
}

/* ── REPERTOIRE ── */
#repertoire { background: var(--cream); }

.rep-intro {
  color: var(--muted);
  max-width: 600px;
  margin-bottom: 3rem;
}

.rep-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 0;
}

.rep-item {
  padding: 0.65rem 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.9rem;
  color: var(--brown);
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.rep-item::before {
  content: '';
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--terra);
  flex-shrink: 0;
}

/* ── CONTACT ── */
#contact { background: var(--brown); }

#contact .section-title { color: var(--cream); }
#contact .section-label { color: var(--gold); }
#contact .section-rule { background: var(--terra); }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}

.contact-text p {
  color: var(--tan);
  line-height: 1.9;
  margin-bottom: 2rem;
}

.contact-links {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 2rem;
}

.contact-link {
  display: flex;
  align-items: center;
  gap: 1rem;
  color: var(--cream);
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  transition: color 0.2s;
}

.contact-link:hover { color: var(--gold); }

.contact-link-icon {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(200,169,126,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}

.contact-form { }

.form-group { margin-bottom: 1.25rem; }

.form-group label {
  display: block;
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--tan);
  margin-bottom: 0.4rem;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.7rem 0.9rem;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(200,169,126,0.25);
  color: var(--cream);
  font-family: var(--sans);
  font-size: 0.95rem;
  transition: border-color 0.2s;
}

.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(200,169,126,0.35); }

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--tan);
}

.form-group textarea { min-height: 120px; resize: vertical; }

.btn-submit {
  display: inline-block;
  padding: 0.8rem 2.2rem;
  background: var(--terra);
  color: var(--cream);
  font-family: var(--sans);
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: background 0.2s;
}

.btn-submit:hover { background: #9e4d2e; }

@media (max-width: 760px) {
  .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
}

/* ── FOOTER ── */
footer {
  background: #1A1109;
  padding: 2rem;
  text-align: center;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  color: rgba(200,169,126,0.4);
}

/* ── MOBILE NAV ── */
@media (max-width: 640px) {
  nav { padding: 0 1.5rem; }
  .nav-links { gap: 1.25rem; }
  .nav-links a { font-size: 0.65rem; letter-spacing: 0.06em; }
}
