/* ---------- Tokens ---------- */
:root {
  --wine: #2d0e1a;
  --wine-deep: #1b0810;
  --gold: #d4b06a;
  --gold-soft: #c69a4a;
  --cream: #f4f1ec;
  --cream-dark: #ebe6df;
  --ink: #2a2329;
  --ink-soft: #5b4f55;
  --blue: #2e6fe0;
  --blue-hover: #1f5bc4;

  --serif-display: "Cormorant Garamond", "EB Garamond", Garamond, serif;
  --serif-body:   "Cormorant Garamond", "EB Garamond", Garamond, serif;

  --maxw: 1080px;
}

/* ---------- Reset ---------- */
*,
*::before,
*::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
img { max-width: 100%; display: block; height: auto; }
a { color: inherit; }

body {
  font-family: var(--serif-body);
  font-size: 19px;
  line-height: 1.55;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

/* ---------- Header ---------- */
.site-header {
  background-color: var(--wine);
  background-image: url("images/header_texture.jpg");
  background-size: cover;
  background-position: center;
  position: relative;
  padding: 28px 24px 22px;
  text-align: center;
  border-bottom: 1px solid rgba(0,0,0,0.25);
}
.site-header::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(27,8,16,0.35) 0%, rgba(27,8,16,0.55) 100%);
  pointer-events: none;
}
.site-header > * { position: relative; z-index: 1; }

.brand {
  font-family: var(--serif-display);
  font-weight: 600;
  letter-spacing: 0.18em;
  color: var(--gold);
  font-size: clamp(28px, 4vw, 44px);
  margin: 0 0 8px;
  text-shadow: 0 1px 0 rgba(0,0,0,0.4);
}
.brand a { text-decoration: none; color: inherit; }

.site-nav {
  font-size: clamp(15px, 1.4vw, 17px);
  letter-spacing: 0.02em;
}
.site-nav a {
  color: #f1e6cf;
  text-decoration: none;
  padding: 4px 2px;
  border-bottom: 1px solid transparent;
  transition: color .2s ease, border-color .2s ease;
}
.site-nav a:hover,
.site-nav a[aria-current="page"] {
  color: #fff;
  border-bottom-color: var(--gold);
}
.site-nav .sep {
  color: rgba(241,230,207,0.5);
  margin: 0 8px;
}

/* ---------- Page wrapper ---------- */
main {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 24px 80px;
}

/* ---------- Intro band ---------- */
.intro {
  background: var(--cream-dark);
  padding: 28px 24px;
  text-align: center;
  font-style: italic;
  color: var(--ink-soft);
  font-size: 20px;
}
.intro p { margin: 4px 0; }

/* ---------- Category buttons (home) ---------- */
.cat-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 26px;
  margin: 56px auto 40px;
  max-width: 900px;
}
.cat {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 16/5;
  border-radius: 120px;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  text-decoration: none;
  color: #fff;
  box-shadow: 0 6px 18px rgba(45, 14, 26, 0.18);
  transition: transform .35s ease, box-shadow .35s ease;
}
.cat::before {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(45,14,26,0.25) 0%, rgba(45,14,26,0.55) 100%);
  transition: background .35s ease;
}
.cat:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(45, 14, 26, 0.28);
}
.cat:hover::before {
  background: linear-gradient(180deg, rgba(45,14,26,0.15) 0%, rgba(45,14,26,0.45) 100%);
}
.cat span {
  position: relative;
  z-index: 1;
  font-family: var(--serif-display);
  font-weight: 600;
  letter-spacing: 0.18em;
  font-size: clamp(18px, 2.2vw, 24px);
  text-transform: uppercase;
  text-shadow: 0 2px 8px rgba(0,0,0,0.55);
}
.cat-musician   { background-image: url("https://d1yei2z3i6k35z.cloudfront.net/17100462/6a1fd6f4aae4c2.03385709_WhatsApp-Image-2024-06-21-at-23.04.05.jpeg"); background-position: center 40%; }
.cat-songwriter { background-image: url("https://d1yei2z3i6k35z.cloudfront.net/17100462/69fdba35bdf661.92194263_zy00KzuTxSnyPQFwimrQ_file.jpg"); background-position: center 40%; }
.cat-composer   { background-image: url("https://d1yei2z3i6k35z.cloudfront.net/17100462/6a1fd6f4aaade4.04263138_WhatsApp-Image-2024-06-21-at-20.02.51.jpeg"); background-position: center 30%; }
.cat-producer   { background-image: url("https://d1yei2z3i6k35z.cloudfront.net/17100462/6a1fd6f49cd752.16189412_WhatsApp-Image-2024-06-21-at-20.03.08-1024x1024.jpeg"); background-position: center 45%; }
/* Make the overlay slightly darker so the text reads cleanly */
.cat::before {
  background: linear-gradient(180deg, rgba(45,14,26,0.35) 0%, rgba(45,14,26,0.65) 100%) !important;
}

/* ---------- CTA button ---------- */
.cta-wrap { text-align: center; margin: 0 0 56px; }
.cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--blue);
  color: #fff;
  text-decoration: none;
  padding: 12px 28px;
  border-radius: 999px;
  font-family: var(--serif-display);
  font-size: 18px;
  letter-spacing: 0.04em;
  box-shadow: 0 6px 14px rgba(46, 111, 224, 0.3);
  transition: background .2s ease, transform .2s ease;
}
.cta:hover { background: var(--blue-hover); transform: translateY(-1px); }
.cta .arrow { transition: transform .2s ease; }
.cta:hover .arrow { transform: translateX(4px); }

/* ---------- Photo gallery ---------- */
.gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin: 0 auto 48px;
}
.gallery img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  filter: saturate(0.95);
}

/* ---------- Social row ---------- */
.socials {
  text-align: center;
  margin: 24px 0 40px;
}
.socials a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--wine);
  color: var(--gold);
  margin: 0 6px;
  transition: background .2s ease, transform .2s ease;
  text-decoration: none;
}
.socials a:hover { background: var(--wine-deep); transform: translateY(-2px); }
.socials svg { width: 20px; height: 20px; fill: currentColor; }

/* ---------- Inner page content ---------- */
.page-title {
  font-family: var(--serif-display);
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-align: center;
  color: var(--wine);
  margin: 56px 0 18px;
  font-size: clamp(28px, 3.5vw, 38px);
}
.page-intro {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 40px;
  font-style: italic;
  color: var(--ink-soft);
  font-size: 20px;
}

.embeds {
  display: grid;
  gap: 22px;
  max-width: 760px;
  margin: 0 auto;
}
.embeds iframe {
  border: 0;
  width: 100%;
  display: block;
}
.embed-video {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  border-radius: 10px;
  overflow: hidden;
  background: #000;
}
.embed-video iframe {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
}

.composer-photo {
  display: block;
  max-width: 420px;
  width: 100%;
  margin: 0 auto 36px;
  border-radius: 6px;
  box-shadow: 0 10px 30px rgba(45,14,26,0.18);
}

/* ---------- Contact ---------- */
.contact-card {
  max-width: 560px;
  margin: 0 auto;
  background: #fff;
  border: 1px solid var(--cream-dark);
  border-radius: 14px;
  padding: 40px 36px;
  text-align: center;
  box-shadow: 0 12px 32px rgba(45,14,26,0.08);
}
.contact-card .label {
  display: block;
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-soft);
  margin-bottom: 6px;
}
.contact-card .value {
  font-family: var(--serif-display);
  font-size: 24px;
  margin-bottom: 28px;
  word-break: break-word;
}
.contact-card .value a { color: var(--wine); text-decoration: none; border-bottom: 1px solid var(--gold); }
.contact-card .value a:hover { color: var(--ink); }
.whatsapp-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #25D366;
  color: #fff;
  text-decoration: none;
  padding: 12px 24px;
  border-radius: 999px;
  font-family: var(--serif-display);
  font-size: 18px;
  margin-top: 8px;
  box-shadow: 0 6px 14px rgba(37, 211, 102, 0.3);
  transition: background .2s ease, transform .2s ease;
}
.whatsapp-btn:hover { background: #1fb957; transform: translateY(-1px); }
.whatsapp-btn svg { width: 20px; height: 20px; fill: currentColor; }

/* ---------- Footer ---------- */
.site-footer {
  border-top: 1px solid var(--cream-dark);
  padding: 22px 24px;
  text-align: center;
  font-style: italic;
  font-size: 15px;
  color: var(--ink-soft);
  background: var(--cream);
}

/* ---------- Responsive ---------- */
@media (max-width: 720px) {
  .cat-grid { grid-template-columns: 1fr; gap: 18px; }
  .cat { aspect-ratio: 16/6; border-radius: 80px; }
  .gallery { grid-template-columns: 1fr 1fr; }
  .gallery img { height: 220px; }
  .site-nav { line-height: 2.1; }
  .site-nav .sep { display: none; }
  .site-nav a { margin: 0 8px; }
  body { font-size: 18px; }
}

@media (max-width: 460px) {
  .gallery { grid-template-columns: 1fr; }
  .gallery img { height: 280px; }
  .contact-card { padding: 32px 24px; }
}
