:root {
  --bg-dark: #0e0b08;
  --bg-darker: #070605;
  --gold: #c9982f;
  --gold-light: #e8c778;
  --cream: #f5ede0;
  --text-muted: #c9c2b6;
  --font-heading: 'Playfair Display', serif;
  --font-script: 'Great Vibes', cursive;
  --font-body: 'Poppins', sans-serif;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--bg-dark);
  color: var(--cream);
  font-family: var(--font-body);
  line-height: 1.6;
  overflow-x: hidden;
}

.gold { color: var(--gold-light); }
.script { font-family: var(--font-script); font-weight: 400; }

h1, h2, h3 {
  font-family: var(--font-heading);
  font-weight: 700;
}

a {
  text-decoration: none;
  color: inherit;
}

ul { list-style: none; }

img { max-width: 100%; display: block; }

/* Header / Nav */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(7, 6, 5, 0.85);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(201, 152, 47, 0.25);
}

.navbar {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.5rem;
}

.logo {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--cream);
  letter-spacing: 0.5px;
}

.logo span {
  color: var(--gold-light);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-links a {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: color 0.2s ease;
}

.nav-links a:hover {
  color: var(--gold-light);
}

.btn-nav {
  background: var(--gold);
  color: var(--bg-darker) !important;
  padding: 0.55rem 1.25rem;
  border-radius: 999px;
  font-weight: 600;
}

.btn-nav:hover {
  background: var(--gold-light);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--gold-light);
}

/* Hero */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 8rem 5vw 4rem;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 20% 20%, rgba(201, 152, 47, 0.12), transparent 45%),
    radial-gradient(circle at 80% 70%, rgba(201, 152, 47, 0.08), transparent 50%);
}

.hero .parallax-bg {
  background: linear-gradient(rgba(7, 6, 5, 0.75), rgba(7, 6, 5, 0.85)),
    url("images/violin_banjo_guitar_1920x1080.png") center / cover no-repeat;
}

.hero-content {
  max-width: 620px;
  position: relative;
  z-index: 1;
  margin-left: 9.5rem;
}

.eyebrow {
  color: var(--gold-light);
  letter-spacing: 3px;
  text-transform: uppercase;
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.hero h1 {
  font-size: clamp(3.6rem, 10vw, 6.8rem);
  line-height: 1;
  margin-bottom: 0.25rem;
}

.hero h1 .script {
  font-size: 1.2em;
  display: inline-block;
}

.hero-tagline {
  font-size: 1.75rem;
  color: var(--text-muted);
  margin: 1rem 0;
}

.hero-tagline em {
  font-family: var(--font-script);
  color: var(--gold-light);
  font-style: normal;
  font-size: 1.3em;
}

.hero-notes {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.5rem;
  margin: 1.5rem 0;
}

.hero-notes li {
  color: var(--gold-light);
  font-weight: 500;
  font-size: 1.15rem;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin: 2rem 0 1.5rem;
}

.btn {
  display: inline-block;
  padding: 0.9rem 1.9rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.25s ease;
  border: 2px solid transparent;
}

.btn-primary {
  background: var(--gold);
  color: var(--bg-darker);
}

.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
}

.btn-outline {
  background: rgba(7, 6, 5, 0.72);
  border-color: var(--gold);
  color: var(--gold-light);
}

.btn-outline:hover {
  background: var(--gold);
  color: var(--bg-darker);
  transform: translateY(-2px);
}

.hero-quote {
  font-family: var(--font-script);
  font-size: 2.3rem;
  color: var(--gold-light);
}

.hero-image {
  flex-shrink: 0;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.hero-photo-frame {
  width: min(520px, 46vw);
  aspect-ratio: 3 / 4;
  border: 3px solid var(--gold);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
  background: linear-gradient(160deg, #2b2115, #100c07);
}

.hero-photo-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.hero-photo-frame img:hover {
  transform: scale(1.04);
}

.img-fallback {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.img-fallback img { display: none; }

.img-fallback::after {
  content: "\1F3B8";
  font-size: 4rem;
  color: var(--gold);
  opacity: 0.6;
}

/* Sections */
.section-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 5rem 1.5rem;
  text-align: center;
}

section h2 {
  font-size: clamp(2rem, 4vw, 2.8rem);
  margin-bottom: 1.5rem;
}

.about p {
  max-width: 850px;
  margin: 0 auto;
  color: var(--text-muted);
  font-size: 1.1rem;
}

.repertoire {
  position: relative;
  overflow: hidden;
  box-shadow: inset 0 0 140px rgba(0, 0, 0, 0.65);
}

.parallax-bg {
  position: absolute;
  top: -20%;
  left: 0;
  width: 100%;
  height: 140%;
  background: url("images/Woodgrain%20background.png") center / cover no-repeat;
  will-change: transform;
  z-index: 0;
}

.repertoire::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(10, 6, 3, 0.35);
  pointer-events: none;
}

.repertoire .section-inner {
  position: relative;
  z-index: 1;
}

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.card {
  background: linear-gradient(160deg, rgba(24, 15, 7, 0.85), rgba(10, 6, 3, 0.75));
  border: 2px solid var(--gold);
  border-radius: 14px;
  padding: 2.25rem 1.5rem;
  backdrop-filter: blur(2px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(232, 199, 120, 0.15) inset;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.card:hover {
  transform: translateY(-8px) scale(1.03);
  border-color: var(--gold-light);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.6), 0 0 25px rgba(201, 152, 47, 0.45);
}

.card-icon {
  color: var(--gold-light);
  display: block;
  margin-bottom: 0.75rem;
  text-shadow: 0 0 18px rgba(232, 199, 120, 0.6);
}

.card-icon svg {
  width: 2.4rem;
  height: 2.4rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
  color: var(--gold-light);
  letter-spacing: 0.5px;
}

.card p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

.occasion-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin-top: 2.5rem;
}

.occasions {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #171008, #0e0b08 55%, #1d1409);
}

.occasion-notes {
  position: absolute;
  top: -15%;
  left: 0;
  width: 100%;
  height: 130%;
  pointer-events: none;
  opacity: 0.16;
  will-change: transform;
  z-index: 0;
}

.occasion-notes span {
  position: absolute;
  color: var(--gold-light);
  font-family: Georgia, serif;
  font-size: clamp(2.5rem, 6vw, 5rem);
  text-shadow: 0 0 24px rgba(232, 199, 120, 0.3);
}

.occasion-notes span:nth-child(1) { top: 12%; left: 8%; transform: rotate(-15deg); }
.occasion-notes span:nth-child(2) { top: 28%; left: 27%; font-size: 3rem; transform: rotate(12deg); }
.occasion-notes span:nth-child(3) { top: 8%; right: 16%; transform: rotate(18deg); }
.occasion-notes span:nth-child(4) { top: 52%; left: 5%; font-size: 3.5rem; transform: rotate(10deg); }
.occasion-notes span:nth-child(5) { top: 66%; left: 42%; transform: rotate(-12deg); }
.occasion-notes span:nth-child(6) { top: 42%; right: 8%; font-size: 3rem; transform: rotate(-18deg); }
.occasion-notes span:nth-child(7) { top: 82%; right: 28%; transform: rotate(14deg); }
.occasion-notes span:nth-child(8) { top: 76%; left: 18%; font-size: 3rem; transform: rotate(-8deg); }

.occasions .section-inner {
  position: relative;
  z-index: 1;
}

.occasion {
  background: linear-gradient(135deg, var(--gold), #a97e22);
  color: var(--bg-darker);
  font-weight: 600;
  padding: 0.9rem 1.75rem;
  border-radius: 999px;
  font-size: 1rem;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.occasion:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.3);
}

.gallery {
  background: var(--bg-darker);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 190px;
  gap: 1rem;
  margin-top: 2.5rem;
}

.gallery-item {
  min-width: 0;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(201, 152, 47, 0.25);
}

.gallery-item:nth-child(1) { grid-column: 1; grid-row: 1 / 3; }
.gallery-item:nth-child(2) { grid-column: 2; grid-row: 1; }
.gallery-item:nth-child(3) { grid-column: 3; grid-row: 1 / 3; }
.gallery-item:nth-child(4) { grid-column: 2; grid-row: 2; }
.gallery-item:nth-child(5) { grid-column: 1; grid-row: 3; }
.gallery-item:nth-child(6) { grid-column: 2 / 4; grid-row: 3; }

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.gallery-item img:hover {
  transform: scale(1.06);
}

.gallery-item.placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  background: rgba(201, 152, 47, 0.05);
  font-size: 0.95rem;
  padding: 1rem;
  text-align: center;
}

.contact {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(7, 6, 5, 0.94), rgba(7, 6, 5, 0.76)),
    var(--bg-dark);
  border-top: 1px solid rgba(232, 199, 120, 0.35);
}

.contact::before {
  content: "";
  position: absolute;
  inset: -6%;
  background: url("images/violin_banjo_guitar_1920x1080.png") center / cover no-repeat;
  opacity: 0.34;
  transform: scale(1.06) translate3d(var(--contact-mouse-x, 0px), var(--contact-mouse-y, 0px), 0);
  transition: transform 1.8s ease-out;
  will-change: transform;
  z-index: 0;
}

.contact-inner {
  display: grid;
  max-width: 1250px;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.95fr);
  column-gap: clamp(2rem, 5vw, 5rem);
  row-gap: 0.75rem;
  align-items: center;
  text-align: center;
  position: relative;
  z-index: 1;
}

.contact-inner h2 {
  grid-column: 1 / -1;
  margin-bottom: 0;
}

.contact-inner p {
  grid-column: 1 / -1;
  color: var(--text-muted);
  margin-bottom: 0;
}

.contact-cards {
  display: grid;
  grid-column: 1;
  grid-row: 3;
  gap: 0.75rem;
  margin-top: 2.5rem;
  width: min(100%, 450px);
  justify-self: center;
}

.contact-card {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  gap: 1rem;
  min-height: 92px;
  background: rgba(201, 152, 47, 0.11);
  border: 1px solid rgba(232, 199, 120, 0.45);
  border-left: 4px solid var(--gold);
  border-radius: 0 10px 10px 0;
  padding: 1.25rem 1.5rem;
  font-weight: 600;
  font-size: 1.1rem;
  line-height: 1.45;
  color: var(--gold-light);
  text-align: left;
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.22);
  transition: background 0.2s ease, color 0.2s ease;
}

.contact-card:hover {
  transform: translateX(5px);
  background: rgba(201, 152, 47, 0.14);
  color: var(--cream);
}

.contact-icon {
  width: 2.8rem;
  height: 2.8rem;
  font-size: 2.8rem;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.contact-icon svg {
  display: block;
  width: 100%;
  height: 100%;
  fill: currentColor;
}

.contact-card small {
  color: var(--text-muted);
  font-weight: 400;
  font-size: 0.8rem;
}

.availability-preview {
  grid-column: 2;
  grid-row: 3;
  width: 100%;
  max-width: none;
  margin: 2.5rem 0 0;
  padding: 1.5rem;
  background: rgba(7, 6, 5, 0.78);
  border: 1px solid rgba(232, 199, 120, 0.3);
  border-radius: 10px;
  color: var(--cream);
}

.availability-header,
.calendar-legend {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.availability-kicker,
.calendar-preview-label {
  color: var(--gold-light);
  font-size: 0.75rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.availability-header h3 {
  margin-top: 0.25rem;
  font-size: 1.35rem;
}

.calendar-weekdays,
.calendar-days {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 0.4rem;
  margin-top: 1.25rem;
  text-align: center;
}

.calendar-weekdays {
  color: var(--text-muted);
  font-size: 0.75rem;
}

.calendar-days span {
  min-height: 2.2rem;
  display: grid;
  place-items: center;
  border: 1px solid rgba(232, 199, 120, 0.16);
  border-radius: 5px;
  color: var(--text-muted);
  font-size: 0.85rem;
}

.calendar-days .empty {
  border-color: transparent;
}

.calendar-days .busy {
  background: rgba(201, 152, 47, 0.32);
  border-color: rgba(232, 199, 120, 0.5);
  color: var(--cream);
}

.calendar-legend {
  justify-content: flex-start;
  gap: 1.25rem;
  margin-top: 1.25rem;
  color: var(--text-muted);
  font-size: 0.8rem;
}

.calendar-legend span {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.calendar-legend i {
  width: 0.6rem;
  height: 0.6rem;
  border-radius: 50%;
  background: rgba(232, 199, 120, 0.35);
}

.calendar-legend .busy-dot {
  background: var(--gold);
}

@media (max-width: 700px) {
  .contact-inner {
    display: block;
    text-align: center;
  }

  .contact-inner p {
    margin-bottom: 2rem;
  }

  .contact-cards {
    margin-top: 0;
    width: 100%;
    justify-self: auto;
  }

  .contact-card {
    min-height: 84px;
  }

  .availability-preview {
    margin: 3rem auto 0;
    padding: 1rem;
  }

  .calendar-preview-label {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .contact::before {
    transition: none;
  }
}

.site-footer {
  text-align: center;
  padding: 2rem;
  color: var(--text-muted);
  font-size: 0.85rem;
  border-top: 1px solid rgba(201, 152, 47, 0.2);
}

button.btn-nav,
button.contact-card,
button.btn {
  font-family: inherit;
  cursor: pointer;
}

/* Booking Modal */
.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(5, 4, 2, 0.75);
  backdrop-filter: blur(4px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, visibility 0.25s ease;
  padding: 1.5rem;
}

.modal-overlay.open {
  opacity: 1;
  visibility: visible;
}

.modal {
  position: relative;
  width: 100%;
  max-width: 460px;
  background: linear-gradient(160deg, #241608, #14100a);
  border: 1px solid var(--gold);
  border-radius: 16px;
  padding: 2.5rem 2rem 2rem;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6);
  transform: translateY(20px) scale(0.97);
  transition: transform 0.25s ease;
}

.modal-overlay.open .modal {
  transform: translateY(0) scale(1);
}

.modal h3 {
  font-size: 1.6rem;
  margin-bottom: 0.4rem;
}

.modal-subtitle {
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
}

.modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: none;
  border: none;
  color: var(--gold-light);
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
}

.booking-form {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.booking-form label {
  color: var(--gold-light);
  font-size: 0.85rem;
  font-weight: 600;
  margin-top: 0.75rem;
}

.booking-form input,
.booking-form textarea {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(201, 152, 47, 0.35);
  border-radius: 8px;
  padding: 0.7rem 0.9rem;
  color: var(--cream);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color-scheme: dark;
}

.booking-form input:focus,
.booking-form textarea:focus {
  outline: none;
  border-color: var(--gold);
}

.booking-form button {
  margin-top: 1.5rem;
  width: 100%;
  text-align: center;
}

/* Lightbox */
#lightbox {
  padding: 2rem;
}

.lightbox-image {
  max-width: min(90vw, 900px);
  max-height: 85vh;
  border-radius: 12px;
  border: 2px solid var(--gold);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6);
  object-fit: contain;
}

.lightbox-close {
  top: 1.5rem;
  right: 1.5rem;
  z-index: 1;
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  width: 3rem;
  height: 3rem;
  display: grid;
  place-items: center;
  transform: translateY(-50%);
  background: rgba(7, 6, 5, 0.72);
  border: 1px solid var(--gold);
  border-radius: 50%;
  color: var(--gold-light);
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  z-index: 1;
  transition: background 0.2s ease, color 0.2s ease;
}

.lightbox-nav:hover {
  background: var(--gold);
  color: var(--bg-darker);
}

.lightbox-prev { left: 1.5rem; }
.lightbox-next { right: 1.5rem; }

/* Responsive */
@media (max-width: 900px) {
  .hero {
    flex-direction: column-reverse;
    text-align: center;
    padding-top: 7rem;
  }
  .hero-content {
    width: 100%;
    margin-left: 0;
    text-align: center;
  }
  .hero-notes,
  .hero-cta {
    justify-content: center;
  }
  .hero-photo-frame {
    width: min(400px, 75vw);
  }
}

@media (max-width: 720px) {
  .nav-toggle {
    display: flex;
  }
  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--bg-darker);
    flex-direction: column;
    align-items: flex-start;
    padding: 1.5rem;
    gap: 1.25rem;
    border-bottom: 1px solid rgba(201, 152, 47, 0.25);
    display: none;
  }
  .nav-links.open {
    display: flex;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: auto;
  }

  .gallery-item {
    aspect-ratio: 1 / 1;
  }

  .gallery-item:nth-child(n) {
    grid-column: auto;
    grid-row: auto;
  }

  .lightbox-nav {
    width: 2.5rem;
    height: 2.5rem;
  }

  .lightbox-prev { left: 0.75rem; }
  .lightbox-next { right: 0.75rem; }
}
