:root {
  --cream: #faf6ef;
  --cream-deep: #f2ead9;
  --ink: #2b2420;
  --ink-soft: #56493f;
  --burgundy: #6d1f2a;
  --burgundy-deep: #4e1520;
  --gold: #a9812f;
  --gold-light: #d9c48a;
  --serif-display: 'Cormorant Garamond', 'Times New Roman', serif;
  --serif-body: 'EB Garamond', 'Times New Roman', serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--serif-body);
  background: var(--cream);
  color: var(--ink);
  line-height: 1.65;
}

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

h1, h2, h3 {
  font-family: var(--serif-display);
  font-weight: 600;
  color: var(--burgundy-deep);
  margin: 0 0 0.4em;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.78rem;
  color: var(--gold);
  font-weight: 600;
  margin: 0 0 0.6em;
}

.section-inner {
  max-width: 1080px;
  margin: 0 auto;
  padding: 5rem 1.5rem;
}

.section-inner.narrow-top { padding-top: 3.5rem; }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(250, 246, 239, 0.94);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid var(--gold-light);
}

.header-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 1.1rem 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.brand {
  font-family: var(--serif-display);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--burgundy-deep);
  text-decoration: none;
  letter-spacing: 0.02em;
}

.nav-social {
  display: flex;
  align-items: center;
  gap: 1.75rem;
  flex-wrap: wrap;
}

.site-nav {
  display: flex;
  gap: 1.6rem;
  flex-wrap: wrap;
}

.social-links {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  padding-left: 1.6rem;
  border-left: 1px solid var(--gold-light);
}

.social-links a {
  color: var(--ink-soft);
  display: inline-flex;
  transition: color 0.2s ease;
}

.social-links a:hover { color: var(--burgundy); }

.site-nav a {
  color: var(--ink-soft);
  text-decoration: none;
  font-size: 0.96rem;
  letter-spacing: 0.03em;
  transition: color 0.2s ease;
  padding-bottom: 2px;
  border-bottom: 1px solid transparent;
}

.site-nav a:hover { color: var(--burgundy); }

.site-nav a.active {
  color: var(--burgundy);
  border-bottom: 1px solid var(--burgundy);
}

/* Page header banner (non-home pages) */
.page-banner {
  max-width: 1080px;
  margin: 0 auto;
  padding: 3.5rem 1.5rem 1rem;
  text-align: center;
}

.page-banner h1 { font-size: 2.6rem; }
.page-banner p { color: var(--ink-soft); font-size: 1.05rem; max-width: 620px; margin: 0 auto; }

/* Hero (home) — full-bleed background photo */
.hero-full {
  position: relative;
  height: 86vh;
  min-height: 560px;
  max-height: 820px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 22%;
  filter: saturate(1.08) contrast(1.03);
  transform: scale(1.02);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(43,36,32,0.10) 0%, rgba(43,36,32,0.18) 45%, rgba(43,36,32,0.88) 100%),
    linear-gradient(90deg, rgba(43,36,32,0.25) 0%, rgba(43,36,32,0) 35%, rgba(43,36,32,0) 65%, rgba(43,36,32,0.25) 100%);
}

.hero-full-text {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 1.5rem 4.5rem;
  color: var(--cream);
  text-align: center;
}

.hero-full-text h1 {
  color: var(--cream);
  font-size: 4rem;
  line-height: 1.05;
  text-shadow: 0 4px 28px rgba(0,0,0,0.4);
}

.eyebrow-light {
  color: var(--gold-light);
}

.tagline-light {
  font-size: 1.25rem;
  font-style: italic;
  color: #f4ecdd;
  margin-bottom: 1.8rem;
  text-shadow: 0 2px 12px rgba(0,0,0,0.35);
}

.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; justify-content: center; }

.btn-outline-light {
  background: transparent;
  color: var(--cream);
  border: 1px solid rgba(250,246,239,0.85);
}

.btn-outline-light:hover {
  background: var(--cream);
  color: var(--burgundy-deep);
}

.btn {
  display: inline-block;
  background: var(--burgundy);
  color: var(--cream);
  text-decoration: none;
  padding: 0.75rem 1.8rem;
  border-radius: 2px;
  font-family: var(--serif-body);
  font-size: 1rem;
  letter-spacing: 0.03em;
  border: none;
  cursor: pointer;
  transition: background 0.2s ease;
}

.btn:hover { background: var(--burgundy-deep); }

.btn-outline {
  background: transparent;
  color: var(--burgundy);
  border: 1px solid var(--burgundy);
}

.btn-outline:hover { background: var(--burgundy); color: var(--cream); }

/* Home highlight strip */
.highlights { background: var(--cream-deep); }

.highlight-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 2rem;
}

.highlight-grid .card {
  background: var(--cream);
  border: 1px solid var(--gold-light);
  border-radius: 4px;
  padding: 1.6rem;
  text-align: center;
}

.highlight-grid .card h3 {
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
}

.highlight-grid .card p {
  color: var(--ink-soft);
  font-size: 0.95rem;
}

/* About */
.about-content {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 3rem;
  align-items: center;
}

.about-text p { font-size: 1.08rem; color: var(--ink-soft); }

.about-image img {
  border-radius: 4px;
  box-shadow: 0 18px 40px rgba(78, 21, 32, 0.15);
}

.edit-note {
  font-size: 0.85rem;
  font-style: italic;
  color: #8a7a68;
  border-left: 3px solid var(--gold-light);
  padding-left: 0.9rem;
  margin-top: 1.5rem;
}

/* Gallery */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
  margin-top: 1rem;
}

.gallery-grid figure {
  margin: 0;
  background: var(--cream-deep);
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 10px 26px rgba(78, 21, 32, 0.12);
}

.gallery-grid img {
  aspect-ratio: 3/4;
  object-fit: cover;
  width: 100%;
}

.gallery-grid figcaption {
  padding: 0.9rem 1.1rem;
  font-size: 0.92rem;
  color: var(--ink-soft);
  font-style: italic;
}

/* Concerts */
.concert-list {
  margin-top: 1rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.concert-item {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 1.5rem;
  padding: 1.5rem;
  background: var(--cream-deep);
  border-radius: 4px;
  border-left: 3px solid var(--gold);
}

.concert-date {
  font-family: var(--serif-display);
  font-size: 1.15rem;
  color: var(--burgundy);
  font-weight: 600;
}

.concert-details h3 { font-size: 1.25rem; margin-bottom: 0.3rem; }
.concert-details p { color: var(--ink-soft); margin: 0.2rem 0; font-size: 0.98rem; }
.concert-tag {
  display: inline-block;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gold);
  font-weight: 600;
  margin-top: 0.4rem;
}

/* Contact */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.contact-photo img {
  border-radius: 4px;
  box-shadow: 0 18px 40px rgba(78, 21, 32, 0.16);
}

.section-intro {
  color: var(--ink-soft);
  font-size: 1.05rem;
  max-width: 640px;
}

.site-form {
  max-width: 560px;
  margin-top: 1.5rem;
}

.form-row {
  margin-bottom: 1.3rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.form-row label {
  font-size: 0.92rem;
  letter-spacing: 0.03em;
  color: var(--ink-soft);
}

.form-row input,
.form-row textarea {
  font-family: var(--serif-body);
  font-size: 1rem;
  padding: 0.7rem 0.85rem;
  border: 1px solid var(--gold-light);
  border-radius: 3px;
  background: #fff;
  color: var(--ink);
}

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

.hidden-field { display: none; }

/* Footer */
.site-footer {
  text-align: center;
  padding: 2.5rem 1.5rem;
  font-size: 0.85rem;
  color: var(--ink-soft);
  border-top: 1px solid var(--gold-light);
}

/* Responsive */
@media (max-width: 860px) {
  .hero-full { height: 74vh; min-height: 460px; }
  .hero-full-text h1 { font-size: 2.6rem; }
  .about-content,
  .contact-layout {
    grid-template-columns: 1fr;
  }
  .about-image { order: -1; }
  .gallery-grid,
  .highlight-grid {
    grid-template-columns: 1fr 1fr;
  }
  .concert-item {
    grid-template-columns: 1fr;
    gap: 0.5rem;
  }
}

@media (max-width: 560px) {
  .site-nav { gap: 0.9rem; }
  .gallery-grid,
  .highlight-grid { grid-template-columns: 1fr; }
  .section-inner { padding: 3.5rem 1.25rem; }
}

/* Sparkles — soft, occasional, refined (not constant glitter) */
.btn {
  position: relative;
}

[data-sparkle-anchor] {
  position: relative;
}

h1[data-sparkle-anchor],
h2[data-sparkle-anchor] {
  display: inline-block;
}

.sparkle {
  position: absolute;
  display: inline-block;
  opacity: 0;
  pointer-events: none;
  transform: scale(0.3);
  z-index: 5;
}

.sparkle svg {
  width: 100%;
  height: 100%;
  display: block;
  fill: currentColor;
}

.sparkle--gold { color: var(--gold); }
.sparkle--cream { color: #fbf1d8; }

.hero-full-text .sparkle {
  filter: drop-shadow(0 0 4px rgba(255, 226, 150, 0.6));
}

@keyframes sparkle-twinkle {
  0%   { opacity: 0;    transform: scale(0.2) rotate(-8deg); }
  18%  { opacity: 1;    transform: scale(1)   rotate(4deg);  }
  55%  { opacity: 0.9;  transform: scale(0.85) rotate(-3deg); }
  100% { opacity: 0;    transform: scale(0.3) rotate(6deg);  }
}

.sparkle.playing {
  animation-name: sparkle-twinkle;
  animation-timing-function: ease-in-out;
  animation-fill-mode: forwards;
}

/* Slow light sweep across the hero photo — a subtle, one-time glint
   rather than anything constant or flashing. */
.hero-shine {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(115deg,
    transparent 42%,
    rgba(255, 250, 235, 0.28) 48%,
    rgba(255, 221, 150, 0.22) 50%,
    rgba(255, 250, 235, 0.28) 52%,
    transparent 58%);
  background-size: 320% 320%;
  background-position: -90% -90%;
  opacity: 0;
  mix-blend-mode: screen;
  animation: hero-shine-sweep 3.2s ease-in-out 1.1s 1 forwards;
}

@keyframes hero-shine-sweep {
  0%   { background-position: -90% -90%; opacity: 0; }
  12%  { opacity: 1; }
  60%  { opacity: 1; }
  100% { background-position: 90% 90%; opacity: 0; }
}

@media (prefers-reduced-motion: reduce) {
  .sparkle,
  .hero-shine {
    display: none;
  }
}
