/* ── Reset & Base ─────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --black: #111;
  --white: #fff;
  --grey-light: #f5f5f3;
  --grey-mid: #888;
  --grey-border: #ddd;
  --accent: #c8a97e;
  --font-sans: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Lato', 'Helvetica Neue', Arial, sans-serif;
  --nav-h: 72px;
}

html { scroll-behavior: smooth; }

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

img { display: block; width: 100%; height: 100%; object-fit: cover; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ── Typography ───────────────────────────────────────────── */
h1, h2, h3, h4 {
  font-family: var(--font-sans);
  font-weight: 400;
  letter-spacing: 0.02em;
  line-height: 1.2;
}

.section-label {
  font-family: var(--font-body);
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--grey-mid);
  margin-bottom: 1rem;
}

/* ── Navigation ───────────────────────────────────────────── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--grey-border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 3rem;
  z-index: 100;
}

.nav-logo {
  font-family: var(--font-sans);
  font-size: 1.35rem;
  letter-spacing: 0.08em;
  white-space: nowrap;
}

.nav-links {
  display: flex;
  gap: 2.2rem;
  align-items: center;
}

.nav-links a {
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--grey-mid);
  transition: color 0.2s;
}
.nav-links a:hover,
.nav-links a.active { color: var(--black); }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--black);
  transition: all 0.25s;
}
.mobile-menu {
  display: none;
  position: fixed;
  top: var(--nav-h); left: 0; right: 0; bottom: 0;
  background: var(--white);
  padding: 2rem 2rem;
  z-index: 99;
  flex-direction: column;
  gap: 0;
  overflow-y: auto;
}
.mobile-menu a {
  font-size: 0.85rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--grey-mid);
  padding: 1rem 0;
  border-bottom: 1px solid var(--grey-border);
  transition: color 0.2s;
}
.mobile-menu a:last-child { border-bottom: none; }
.mobile-menu a:hover { color: var(--black); }
.mobile-menu.open { display: flex; }

/* ── Page wrapper ─────────────────────────────────────────── */
main { padding-top: var(--nav-h); min-height: 100vh; }

/* ── Hero ─────────────────────────────────────────────────── */
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: calc(100vh - var(--nav-h));
}

.hero-image {
  background: var(--grey-light);
  position: relative;
  overflow: hidden;
}
.hero-image img { width: 100%; height: 100%; object-fit: cover; object-position: right top; }

.hero-placeholder {
  width: 100%; height: 100%;
  background: linear-gradient(135deg, #e8e4de 0%, #cfc9c0 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-sans);
  font-size: 1rem;
  color: var(--grey-mid);
  letter-spacing: 0.08em;
  min-height: 480px;
}

.hero-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 5rem 5rem 5rem 6rem;
}

.hero-content h1 {
  font-size: clamp(2.8rem, 4vw, 4.5rem);
  margin-bottom: 0.4rem;
}
.hero-subtitle {
  font-family: var(--font-sans);
  font-size: 1.1rem;
  color: var(--grey-mid);
  margin-bottom: 2rem;
  font-style: italic;
}
.hero-content p {
  max-width: 420px;
  font-size: 0.97rem;
  color: #555;
  margin-bottom: 2.8rem;
}

.btn {
  display: inline-block;
  padding: 0.75rem 2rem;
  border: 1px solid var(--black);
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  transition: background 0.2s, color 0.2s;
}
.btn:hover { background: var(--black); color: var(--white); }
.btn-group { display: flex; gap: 1rem; flex-wrap: wrap; }

/* ── Generic inner page ───────────────────────────────────── */
.page-hero {
  background: var(--black);
  display: flex;
  align-items: flex-end;
  padding: 4rem 6rem 2rem;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.72) 0%, rgba(0,0,0,0.22) 100%), url('images/about-photo.jpg') center top / cover no-repeat;
  z-index: 0;
}
.page-hero-content { position: relative; z-index: 1; }
.page-hero h1 { font-size: clamp(2.2rem, 4vw, 3.8rem); color: var(--white); }
.page-hero .section-label { color: rgba(255,255,255,0.55); }

.page-hero.dark .section-label { color: rgba(255,255,255,0.5); }
.page-hero.dark h1 { color: var(--white); }
.page-hero.dark .page-hero-bg img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

/* ── Content sections ─────────────────────────────────────── */
.container { max-width: 1100px; margin: 0 auto; padding: 0 3rem; }

.section { padding: 6rem 0; }
.section + .section { border-top: 1px solid var(--grey-border); }

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.two-col.reverse { direction: rtl; }
.two-col.reverse > * { direction: ltr; }

.about-image {
  aspect-ratio: 3/4;
  background: linear-gradient(160deg, #e2ddd7, #c9c3ba);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--grey-mid);
  font-size: 0.85rem;
  letter-spacing: 0.06em;
}
.about-image img { object-position: right top; }

.about-text h2 { font-size: 2.4rem; margin-bottom: 1.5rem; }
.about-text p { color: #555; margin-bottom: 1.2rem; font-size: 0.97rem; }

/* ── Projects grid ────────────────────────────────────────── */
.projects-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}

.project-card {
  position: relative;
  aspect-ratio: 4/5;
  overflow: hidden;
  cursor: pointer;
  background: #ddd;
}

.project-card-bg {
  width: 100%; height: 100%;
  background: linear-gradient(160deg, #e2ddd7, #b8b0a5);
  transition: transform 0.5s ease;
}
.project-card:hover .project-card-bg { transform: scale(1.04); }

.project-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 55%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 2rem;
  opacity: 0;
  transition: opacity 0.3s;
}
.project-card:hover .project-card-overlay { opacity: 1; }

.project-card-title {
  color: var(--white);
  font-family: var(--font-sans);
  font-size: 1.2rem;
  line-height: 1.3;
}

.project-number {
  position: absolute;
  top: 1.2rem; left: 1.5rem;
  font-size: 0.65rem;
  letter-spacing: 0.14em;
  color: var(--grey-mid);
}

.project-card-caption {
  padding: 1.2rem 1.5rem;
  background: var(--white);
  border-bottom: 1px solid var(--grey-border);
}
.project-card-caption h3 {
  font-family: var(--font-sans);
  font-size: 1.05rem;
  margin-bottom: 0.2rem;
}
.project-card-caption p { font-size: 0.8rem; color: var(--grey-mid); }

/* ── Concerts ─────────────────────────────────────────────── */
.concerts-list { display: flex; flex-direction: column; gap: 0; }
.concert-row {
  display: grid;
  grid-template-columns: 120px 1fr auto;
  align-items: center;
  gap: 2rem;
  padding: 1.8rem 0;
  border-bottom: 1px solid var(--grey-border);
}
.concert-date { font-family: var(--font-sans); font-size: 1.1rem; }
.concert-date span { display: block; font-size: 0.7rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--grey-mid); }
.concert-info h3 { font-family: var(--font-sans); font-size: 1.15rem; margin-bottom: 0.2rem; }
.concert-info p { font-size: 0.85rem; color: var(--grey-mid); }
.concert-tag {
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: 1px solid var(--grey-border);
  padding: 0.35rem 0.8rem;
  color: var(--grey-mid);
  white-space: nowrap;
}

/* ── Awards ───────────────────────────────────────────────── */
.awards-list { display: flex; flex-direction: column; gap: 4rem; }
.award-item { display: grid; grid-template-columns: 80px 1fr; gap: 2.5rem; align-items: start; }
.award-year {
  font-family: var(--font-sans);
  font-size: 2rem;
  color: var(--grey-border);
  line-height: 1;
  padding-top: 0.3rem;
}
.award-content h3 { font-family: var(--font-sans); font-size: 1.5rem; margin-bottom: 0.6rem; }
.award-content p { color: #555; font-size: 0.93rem; }

/* ── Albums ───────────────────────────────────────────────── */
.albums-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; }
.album-card {}
.album-cover {
  aspect-ratio: 1;
  background: linear-gradient(135deg, #d8d2c9, #b0a99e);
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--grey-mid);
  font-size: 0.85rem;
  letter-spacing: 0.08em;
}
.album-card h3 { font-family: var(--font-sans); font-size: 1.5rem; margin-bottom: 0.3rem; }
.album-card .album-artist { font-size: 0.8rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--grey-mid); margin-bottom: 0.8rem; }
.album-card p { font-size: 0.93rem; color: #555; }

/* ── YAEL ─────────────────────────────────────────────────── */
.yael-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.yael-image {
  aspect-ratio: 1;
  background: linear-gradient(135deg, #2a2a2a, #4a4a4a);
  display: flex; align-items: center; justify-content: center;
  color: #666; font-size: 0.85rem; letter-spacing: 0.08em;
}
.yael-text h2 { font-size: 2.4rem; margin-bottom: 1.5rem; }
.yael-text p { color: #555; margin-bottom: 1.2rem; font-size: 0.97rem; }

.musicians-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2.5rem;
}
.musician-card { text-align: center; }
.musician-avatar {
  width: 100%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: linear-gradient(135deg, #e2ddd7, #c9c3ba);
  margin: 0 auto 1rem;
  display: flex; align-items: center; justify-content: center;
  color: var(--grey-mid);
  font-size: 1.5rem;
}
.musician-card h4 { font-family: var(--font-sans); font-size: 1rem; margin-bottom: 0.2rem; }
.musician-card p { font-size: 0.78rem; color: var(--grey-mid); }

/* ── Contact ──────────────────────────────────────────────── */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 6rem; align-items: start; }
.contact-info h2 { font-size: 2.4rem; margin-bottom: 1.5rem; }
.contact-info p { color: #555; margin-bottom: 2rem; font-size: 0.97rem; }
.contact-detail {
  display: flex; align-items: center; gap: 1rem;
  margin-bottom: 1.2rem;
  font-size: 0.95rem;
}
.contact-detail .icon {
  width: 40px; height: 40px;
  border: 1px solid var(--grey-border);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  font-size: 1rem;
}

.contact-form { display: flex; flex-direction: column; gap: 1.2rem; }
.form-group { display: flex; flex-direction: column; gap: 0.4rem; }
.form-group label { font-size: 0.7rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--grey-mid); }
.form-group input,
.form-group textarea {
  border: none;
  border-bottom: 1px solid var(--grey-border);
  padding: 0.7rem 0;
  font-family: var(--font-body);
  font-size: 0.95rem;
  outline: none;
  transition: border-color 0.2s;
  background: transparent;
}
.form-group input:focus,
.form-group textarea:focus { border-color: var(--black); }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-submit { margin-top: 0.8rem; }

/* ── Footer ───────────────────────────────────────────────── */
footer {
  border-top: 1px solid var(--grey-border);
  padding: 3rem 0;
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 3rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem;
}
.footer-logo { font-family: var(--font-sans); font-size: 1.1rem; }
.footer-copy { font-size: 0.75rem; color: var(--grey-mid); }
.footer-links { display: flex; gap: 1.8rem; }
.footer-links a { font-size: 0.7rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--grey-mid); transition: color 0.2s; }
.footer-links a:hover { color: var(--black); }

/* ── Responsive ───────────────────────────────────────────── */
@media (max-width: 900px) {
  nav { padding: 0 1.5rem; }
  .nav-links { display: none; }
  .hamburger { display: flex; }

  .hero { grid-template-columns: 1fr; }
  .hero-image { min-height: 75vw; }
  .hero-content { padding: 3rem 2rem; }

  .page-hero { padding: 2rem 1.5rem; }

  .container { padding: 0 1.5rem; }
  .section { padding: 4rem 0; }

  .two-col { grid-template-columns: 1fr; gap: 2.5rem; }
  .two-col.reverse { direction: ltr; }

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

  .concert-row { grid-template-columns: 90px 1fr; }
  .concert-tag { display: none; }

  .award-item { grid-template-columns: 60px 1fr; gap: 1.5rem; }

  .albums-grid { grid-template-columns: 1fr; gap: 2.5rem; }

  .yael-intro { grid-template-columns: 1fr; gap: 2.5rem; }

  .musicians-grid { grid-template-columns: repeat(2, 1fr); }

  .contact-grid { grid-template-columns: 1fr; gap: 3rem; }

  .footer-inner { flex-direction: column; text-align: center; }
  .footer-links { justify-content: center; }
}

@media (max-width: 560px) {
  .projects-grid { grid-template-columns: 1fr; }
  .musicians-grid { grid-template-columns: repeat(2, 1fr); }
}
