/* ===========================================================
   Molly Imogen Vocalist stylesheet
   Warm, soulful acoustic aesthetic: cream, charcoal, terracotta, gold
   =========================================================== */

:root {
  --cream: #f8f1e4;
  --cream-alt: #fbf6ea;
  --paper: #fffdf8;
  --charcoal: #241d19;
  --charcoal-soft: #4a3d34;
  --brown-muted: #7a6a5c;
  --rust: #a9522c;
  --rust-dark: #7e3c1f;
  --gold: #c69a4e;
  --gold-soft: #e6cd97;
  --line: rgba(36, 29, 25, 0.12);

  --font-display: "Fraunces", "Georgia", serif;
  --font-body: "Work Sans", "Segoe UI", sans-serif;

  --radius: 14px;
  --shadow-soft: 0 20px 40px -20px rgba(36, 29, 25, 0.35);
  --container: 1140px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--cream);
  color: var(--charcoal);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

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

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

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.15;
  margin: 0 0 0.5em;
  color: var(--charcoal);
}

h1 { font-size: clamp(2.4rem, 5vw, 4.2rem); font-weight: 500; }
h2 { font-size: clamp(1.9rem, 3.4vw, 2.6rem); }
h3 { font-size: 1.35rem; }

p { margin: 0 0 1em; color: var(--charcoal-soft); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--rust);
  font-weight: 600;
  margin-bottom: 14px;
}

.eyebrow::before {
  content: "";
  width: 26px;
  height: 1px;
  background: var(--rust);
}

.lede {
  font-size: 1.15rem;
  color: var(--charcoal-soft);
  max-width: 620px;
}

/* ---------- Buttons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: 999px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.btn-primary {
  background: var(--rust);
  color: var(--paper);
  box-shadow: 0 12px 24px -10px rgba(169, 82, 44, 0.55);
}

.btn-primary:hover {
  background: var(--rust-dark);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--charcoal);
  border-color: var(--line);
}

.btn-outline:hover {
  border-color: var(--rust);
  color: var(--rust);
  transform: translateY(-2px);
}

.btn-light {
  background: var(--paper);
  color: var(--charcoal);
}

.btn-light:hover {
  background: var(--gold-soft);
  transform: translateY(-2px);
}

/* ---------- Header / Nav ---------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(248, 241, 228, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  line-height: 1;
}

.brand-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--gold);
  flex-shrink: 0;
}

.brand-text {
  display: flex;
  flex-direction: column;
}

.brand-name {
  font-family: var(--font-display);
  font-size: 1.55rem;
  color: var(--charcoal);
  letter-spacing: 0.01em;
}

.brand-sub {
  font-size: 0.62rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--rust);
  margin-top: 5px;
  font-weight: 600;
}

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

.nav-links a {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--charcoal-soft);
  position: relative;
  padding-bottom: 4px;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--rust);
}

.nav-links a.active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -3px;
  height: 2px;
  background: var(--rust);
  border-radius: 2px;
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 18px;
}

.nav-phone {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--rust);
  white-space: nowrap;
}

.nav-phone svg {
  flex-shrink: 0;
}

.nav-mobile-only {
  display: none;
}

.nav-phone-mobile {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--rust);
}

.nav-phone-mobile svg {
  flex-shrink: 0;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--charcoal);
  border-radius: 2px;
}

/* ---------- Hero ---------- */

.hero {
  position: relative;
  overflow: hidden;
  padding: 100px 0 90px;
  background:
    radial-gradient(circle at 85% 15%, rgba(198, 154, 78, 0.28), transparent 55%),
    radial-gradient(circle at 10% 90%, rgba(169, 82, 44, 0.16), transparent 45%),
    var(--cream);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 60px;
  align-items: center;
}

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 28px 0 34px;
}

.tag {
  font-size: 0.78rem;
  padding: 7px 14px;
  border-radius: 999px;
  background: var(--paper);
  border: 1px solid var(--line);
  color: var(--charcoal-soft);
  font-weight: 500;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-art {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: 24px;
  background:
    linear-gradient(160deg, rgba(255, 253, 248, 0.15), transparent 40%),
    linear-gradient(200deg, var(--rust) 0%, var(--rust-dark) 55%, var(--charcoal) 100%);
  box-shadow: var(--shadow-soft);
  display: flex;
  align-items: flex-end;
  padding: 28px;
  overflow: hidden;
}

.hero-art::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, 0.14) 1px, transparent 1px);
  background-size: 18px 18px;
  opacity: 0.5;
}

.hero-art-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
}

.hero-art::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(36, 29, 25, 0) 45%, rgba(36, 29, 25, 0.78) 100%);
}

.hero-art-caption {
  position: relative;
  z-index: 1;
  color: var(--paper);
  font-family: var(--font-display);
  font-size: 1.1rem;
}

.hero-art-caption span {
  display: block;
  font-family: var(--font-body);
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  opacity: 0.75;
  margin-bottom: 6px;
}

/* ---------- Sections ---------- */

section {
  padding: 90px 0;
}

.section-alt {
  background: var(--cream-alt);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

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

.section-dark h2,
.section-dark h3,
.section-dark p {
  color: var(--cream);
}

.section-dark .eyebrow {
  color: var(--gold-soft);
}

.section-dark .eyebrow::before {
  background: var(--gold-soft);
}

.section-head {
  max-width: 640px;
  margin-bottom: 48px;
}

.section-head.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

/* ---------- Repertoire ticker ---------- */

.ticker-wrap {
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--paper);
  padding: 22px 0;
}

.ticker {
  display: flex;
  gap: 48px;
  white-space: nowrap;
  animation: scroll 26s linear infinite;
  width: max-content;
}

/* ---------- Video ---------- */

.video-frame {
  max-width: 820px;
  margin: 0 auto;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  background: var(--charcoal);
}

.video-frame video {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 848 / 448;
}

.ticker span {
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--brown-muted);
  letter-spacing: 0.02em;
}

.ticker span::after {
  content: "•";
  margin-left: 48px;
  color: var(--gold);
}

@keyframes scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ---------- Cards / Grids ---------- */

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

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

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

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.gallery-grid figcaption {
  margin-top: 10px;
  font-size: 0.85rem;
  color: var(--brown-muted);
  text-align: center;
}

/* ---------- Venue / track record ---------- */

.venue-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
}

.venue-chip {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px 22px;
  text-align: center;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

a.venue-chip:hover {
  transform: translateY(-3px);
  border-color: var(--rust);
  box-shadow: var(--shadow-soft);
}

.venue-chip .venue-pin {
  font-size: 1.3rem;
  margin-bottom: 10px;
}

.venue-chip .venue-name {
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: var(--charcoal);
}

.venue-chip .venue-loc {
  display: block;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--rust);
  margin-top: 6px;
}

.section-dark .venue-chip {
  background: rgba(248, 241, 228, 0.06);
  border-color: rgba(248, 241, 228, 0.16);
}

.section-dark .venue-chip .venue-name {
  color: var(--cream);
}

.card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px;
}

.card .icon-badge {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: linear-gradient(160deg, var(--gold-soft), var(--gold));
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 1.3rem;
}

/* ---------- Placeholder photo blocks (no real photography yet) ---------- */

.photo-placeholder {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: var(--ratio, 4/5);
  background: linear-gradient(150deg, var(--gold-soft) 0%, var(--rust) 55%, var(--charcoal) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--paper);
  text-align: center;
}

.photo-placeholder::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, 0.16) 1px, transparent 1px);
  background-size: 16px 16px;
}

.photo-placeholder .ph-label {
  position: relative;
  font-family: var(--font-display);
  font-size: 0.95rem;
  padding: 0 16px;
  opacity: 0.9;
}

.photo-placeholder .ph-icon {
  position: relative;
  font-size: 1.8rem;
}

.photo-placeholder .ph-stack {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

/* ---------- Real photography ---------- */

.photo-frame {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: var(--ratio, 4/5);
  box-shadow: var(--shadow-soft);
}

.photo-frame img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: var(--focus, center);
}

.gallery-grid figure .photo-frame {
  box-shadow: none;
  border: 1px solid var(--line);
}

/* ---------- Testimonials ---------- */

.quote-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 34px;
}

.quote-card p {
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--charcoal);
  font-style: italic;
}

.quote-name {
  font-weight: 600;
  color: var(--rust);
  font-size: 0.9rem;
}

/* ---------- Events table ---------- */

.gig-list {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--paper);
}

.gig-row {
  display: grid;
  grid-template-columns: 130px 1fr auto;
  gap: 18px;
  align-items: center;
  padding: 22px 28px;
  border-bottom: 1px solid var(--line);
}

.gig-row:last-child {
  border-bottom: none;
}

.gig-date {
  font-family: var(--font-display);
  color: var(--rust);
  font-size: 1.05rem;
}

.gig-date small {
  display: block;
  font-family: var(--font-body);
  color: var(--brown-muted);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-top: 2px;
}

.gig-venue strong {
  display: block;
  font-size: 1.02rem;
}

.gig-venue span {
  color: var(--brown-muted);
  font-size: 0.88rem;
}

/* ---------- Forms ---------- */

.form-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 40px;
  box-shadow: var(--shadow-soft);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.field {
  margin-bottom: 20px;
}

.field label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--charcoal);
}

.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 13px 16px;
  border-radius: 10px;
  border: 1px solid var(--line);
  background: var(--cream-alt);
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--charcoal);
}

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

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--rust);
  background: var(--paper);
}

.form-note {
  font-size: 0.85rem;
  color: var(--brown-muted);
  margin-top: 14px;
}

/* ---------- Contact strip ---------- */

.contact-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.contact-item {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.contact-item .label {
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-soft);
}

.contact-item .value {
  font-family: var(--font-display);
  font-size: 1.2rem;
}

/* ---------- CTA band ---------- */

.cta-band {
  background: linear-gradient(120deg, var(--rust) 0%, var(--rust-dark) 100%);
  color: var(--paper);
  border-radius: 24px;
  padding: 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

.cta-band h2,
.cta-band p {
  color: var(--paper);
}

.cta-band p {
  opacity: 0.9;
  margin: 0;
}

/* ---------- Footer ---------- */

.site-footer {
  background: var(--charcoal);
  color: var(--cream);
  padding: 64px 0 28px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(248, 241, 228, 0.14);
}

.footer-grid h4 {
  color: var(--gold-soft);
  font-size: 0.8rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.footer-grid p,
.footer-grid a {
  color: rgba(248, 241, 228, 0.78);
  font-size: 0.92rem;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a:hover {
  color: var(--gold-soft);
}

.social-row {
  display: flex;
  gap: 14px;
  margin-top: 8px;
}

.social-row a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(248, 241, 228, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
}

.social-row a:hover {
  background: var(--rust);
  border-color: var(--rust);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
  font-size: 0.82rem;
  color: rgba(248, 241, 228, 0.55);
  flex-wrap: wrap;
  gap: 12px;
}

/* ---------- Page hero (inner pages) ---------- */

.page-hero {
  padding: 70px 0 60px;
  background:
    radial-gradient(circle at 90% 10%, rgba(198, 154, 78, 0.25), transparent 50%),
    var(--cream);
  border-bottom: 1px solid var(--line);
}

.breadcrumb {
  font-size: 0.82rem;
  color: var(--brown-muted);
  margin-bottom: 18px;
}

.breadcrumb a {
  color: var(--rust);
}

/* ---------- Utility ---------- */

.mt-lg { margin-top: 48px; }
.text-center { text-align: center; }

/* ---------- Responsive ---------- */

@media (max-width: 900px) {
  .site-header .container {
    padding: 0 16px;
  }

  section {
    padding: 56px 0;
  }

  .section-head {
    margin-bottom: 32px;
  }

  .hero-grid {
    gap: 36px;
  }

  .nav-links,
  .nav-cta .btn-outline,
  .nav-phone {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }

  body.nav-open .nav-links {
    display: flex;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    background: var(--cream);
    padding: 24px;
    border-bottom: 1px solid var(--line);
    gap: 20px;
    max-height: 80vh;
    overflow-y: auto;
  }

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

  .nav-links a.btn {
    padding: 14px 28px;
  }

  body.nav-open .nav-mobile-only {
    display: flex;
    justify-content: center;
    width: 100%;
  }

  body.nav-open .nav-mobile-only.nav-mobile-divider {
    margin-top: 4px;
    padding-top: 20px;
    border-top: 1px solid var(--line);
  }

  .hero {
    padding: 32px 0 48px;
  }

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

  .hero-art {
    aspect-ratio: 16/10;
  }

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

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

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

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

  .form-row {
    grid-template-columns: 1fr;
  }

  .contact-strip {
    grid-template-columns: 1fr;
  }

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

  .cta-band {
    flex-direction: column;
    align-items: flex-start;
    padding: 36px;
  }

  .gig-row {
    grid-template-columns: 1fr;
    gap: 8px;
  }
}

@media (max-width: 560px) {
  section {
    padding: 44px 0;
  }

  .section-head {
    margin-bottom: 28px;
  }

  .hero-grid {
    gap: 28px;
  }

  .hero {
    padding: 16px 0 36px;
  }

  .page-hero {
    padding: 20px 0 28px;
  }

  .form-card {
    padding: 26px;
  }

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

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