/* ==== Reset & Base ==== */
html, body {
  margin: 0;
  padding: 0;
  font-family: 'Montserrat', Arial, sans-serif;
  background: #f8f7f4;
  color: #222;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
}

a {
  color: #3c2d17;
  text-decoration: none;
  transition: color 0.15s;
}
a:hover { color: #a17c4a; }

img { max-width: 100%; display: block; border-radius: 0.5em; }

/* ==== Header ==== */
.header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #fffdf8f2;
  box-shadow: 0 1px 8px rgba(158,138,98,0.05);
  padding: 1.2em 5vw 1em 5vw;
  position: sticky;
  top: 0;
  z-index: 100;
}
.logo {
  height: 42px;
  width: auto;
  border-radius: 0.3em;
}
.header-cta {
  display: inline-block;
  background: #25d366;
  color: #fff;
  padding: 0.5em 1.25em;
  font-weight: 700;
  border-radius: 24px;
  font-size: 1.12em;
  transition: background 0.18s;
  box-shadow: 0 1px 3px rgba(158,138,98,0.09);
}
.header-cta i { margin-right: 0.6em; }
.header-cta:hover { background: #1ebe54; }

/* ==== Hero ==== */
.hero {
  background: url('heroimage.jpg') center center/cover no-repeat fixed;
  min-height: 82vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero-overlay {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(170deg, #f8f7f4b8 35%, #31210e6b 120%);
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #222;
  padding: 4vw 2vw 4vw 2vw;
  max-width: 580px;
  margin: 0 auto;
  background: rgba(255,255,255,0.45);
  border-radius: 18px;
  box-shadow: 0 4px 32px rgba(60,45,23,0.09);
  backdrop-filter: blur(3px);
}
.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: 2.45em;
  color: #5c4321;
  margin: 0 0 0.38em 0;
  font-weight: 700;
  letter-spacing: 0.01em;
}
.hero-tagline {
  font-size: 1.3em;
  color: #3c2d17;
  margin-bottom: 1.3em;
  font-family: 'Montserrat', sans-serif;
}
.hero-cta-row {
  display: flex;
  gap: 1.1em;
  justify-content: center;
}
.hero-cta {
  background: #fff;
  border: 2px solid #ad9876;
  color: #624e2c;
  border-radius: 23px;
  padding: 0.7em 1.5em;
  font-size: 1.07em;
  font-weight: 600;
  transition: background 0.18s, color 0.18s, border 0.18s;
  margin-top: 0.5em;
  display: inline-flex;
  align-items: center;
  box-shadow: 0 1px 8px rgba(60,45,23,0.05);
}
.hero-cta i { margin-right: 0.7em; font-size: 1.12em; }
.hero-cta:hover, .cta-btn:hover {
  background: #ad9876;
  color: #fff;
  border-color: #a88b5c;
}

/* ==== Trust Bar ==== */
.trust-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #faf7f3d9;
  padding: 1.1em 6vw 1.1em 6vw;
  font-size: 1.1em;
  color: #604f37;
  border-radius: 0 0 18px 18px;
  margin-bottom: 2.2em;
  box-shadow: 0 3px 18px rgba(158,138,98,0.08);
}
.trust-logos img {
  height: 38px;
  width: auto;
  display: inline-block;
  margin-left: 12px;
  border-radius: 0.7em;
  box-shadow: 0 1px 5px rgba(158,138,98,0.11);
}

/* ==== Albums ==== */
.section {
  padding: 2.5em 0 1.2em 0;
  max-width: 1040px;
  margin: 0 auto;
}
.section-title {
  text-align: left;
  font-size: 1.46em;
  font-family: 'Playfair Display', serif;
  color: #8c754b;
  margin-bottom: 1.25em;
  margin-left: 0.6em;
  letter-spacing: 0.02em;
}
.albums {
  display: flex;
  gap: 2.3vw;
  flex-wrap: wrap;
  justify-content: flex-start;
}
.album-card {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 16px rgba(60,45,23,0.07);
  padding: 0.7em 0.7em 1.2em 0.7em;
  width: 278px;
  text-align: center;
  text-decoration: none;
  color: #372e21;
  transition: transform 0.13s, box-shadow 0.18s;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.album-card:hover {
  transform: translateY(-7px) scale(1.03);
  box-shadow: 0 4px 32px rgba(158,138,98,0.19);
  color: #a88b5c;
}
.album-img {
  border-radius: 12px;
  margin-bottom: 0.8em;
  height: 188px;
  object-fit: cover;
  box-shadow: 0 2px 16px rgba(60,45,23,0.08);
  width: 100%;
  background: #f3efea;
}
.album-title {
  font-family: 'Montserrat',sans-serif;
  font-size: 1.11em;
  font-weight: 700;
  margin: 0.35em 0 0.1em 0;
  color: #755f35;
}
.album-meta {
  font-size: 0.98em;
  color: #8b7c65;
}

/* ==== Why Section ==== */
.why-section {
  background: #fffaf3d3;
  border-radius: 14px;
  box-shadow: 0 2px 14px rgba(158,138,98,0.09);
  margin: 2.8em auto 2.6em auto;
  max-width: 940px;
  padding: 1.6em 2.2em;
}
.why-list {
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(220px,1fr));
  gap: 1.5em 2em;
  margin: 1.4em 0 0 0;
  padding: 0;
  list-style: none;
}
.why-point {
  font-size: 1.09em;
  color: #664e27;
  padding-left: 0.3em;
  display: flex;
  align-items: center;
}
.why-point i {
  color: #bfa773;
  font-size: 1.16em;
  margin-right: 0.65em;
}

/* ==== Reviews Section ==== */
.reviews-section {
  background: #fffdf8e6;
  border-radius: 18px;
  margin: 2.8em auto 2.5em auto;
  max-width: 940px;
  box-shadow: 0 2px 12px rgba(60,45,23,0.09);
  padding: 2.2em 2em;
}
.reviews-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.3em;
  color: #a38a5c;
  margin-bottom: 1.4em;
  text-align: left;
  letter-spacing: 0.01em;
}
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px,1fr));
  gap: 2.4em 2.1em;
}
.review-card {
  background: #fffdfa;
  border-radius: 13px;
  box-shadow: 0 2px 8px rgba(158,138,98,0.11);
  padding: 1.2em 1.1em 1em 1.1em;
  font-size: 1em;
  color: #5a482c;
  display: flex;
  flex-direction: column;
  min-height: 168px;
  justify-content: flex-start;
}
.stars {
  color: #f1b93b;
  font-size: 1.16em;
  margin-bottom: 0.3em;
}
.review-text {
  font-size: 1.03em;
  color: #634a21;
  font-style: italic;
  margin-bottom: 0.9em;
  line-height: 1.38em;
}
.reviewer {
  color: #95825b;
  font-size: 0.99em;
}

/* ==== CTA ==== */
.cta-section {
  background: #faf4ea;
  border-radius: 14px;
  box-shadow: 0 2px 14px rgba(158,138,98,0.09);
  margin: 2.6em auto 2.7em auto;
  max-width: 760px;
  text-align: center;
  padding: 2.4em 2em;
}
.cta-btn-row {
  display: flex;
  justify-content: center;
  gap: 1.6em;
  margin-top: 1.25em;
}
.cta-btn {
  background: #25d366;
  color: #fff;
  font-weight: 700;
  font-size: 1.13em;
  border-radius: 23px;
  padding: 0.7em 1.5em;
  text-decoration: none;
  border: none;
  display: inline-flex;
  align-items: center;
  box-shadow: 0 1px 8px rgba(60,45,23,0.05);
  transition: background 0.18s, color 0.18s;
}
.cta-btn i { margin-right: 0.7em; font-size: 1.15em; }
.cta-btn:hover { background: #1ebe54; color: #fff; }

/* ==== Footer ==== */
.footer {
  background: #fffaf3;
  color: #7e6a49;
  text-align: center;
  padding: 2.1em 1em 1.4em 1em;
  border-radius: 24px 24px 0 0;
  margin: 2em auto 0 auto;
  max-width: 600px;
  box-shadow: 0 -2px 14px rgba(158,138,98,0.11);
  font-size: 1.11em;
  position: relative;
}
.footer-heart {
  color: #e23b3b;
  font-size: 1.12em;
  margin: 0 0.18em;
}
.footer-social {
  margin-top: 0.8em;
}
.footer-social a {
  display: inline-block;
  color: #25d366;
  font-size: 1.38em;
  margin: 0 0.55em;
  transition: color 0.15s;
}
.footer-social a:hover { color: #a17c4a; }

@media (max-width: 768px) {
  .hero-title { font-size: 1.7em; }
  .hero-content { padding: 7vw 2vw; }
  .albums { gap: 4vw; }
  .album-card { width: 100%; max-width: 410px; }
  .trust-bar { flex-direction: column; gap: 1em; padding: 1.1em 3vw;}
  .trust-logos img { height: 28px; margin-left: 7px;}
  .section { padding: 2em 0 0.6em 0; }
  .cta-section, .reviews-section, .why-section, .footer { padding: 1.5em 0.5em;}
  .why-list { grid-template-columns: 1fr; gap: 1em 0;}
}
@media (max-width: 480px) {
  .hero-content { padding: 10vw 2vw; }
  .trust-bar { font-size: 0.98em; }
  .footer { font-size: 0.99em; padding: 1.1em 0.4em;}
  .cta-btn-row { flex-direction: column; gap: 0.7em;}
}
