
:root {
  --cream: #f7f2eb;
  --sand: #d9c9b8;
  --taupe: #9b8675;
  --espresso: #3b2f2a;
  --white: #fffaf5;
  --soft: #efe4d8;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Helvetica Neue", Arial, sans-serif;
  background: var(--cream);
  color: var(--espresso);
  line-height: 1.65;
}
nav {
  position: sticky;
  top: 0;
  width: 100%;
  background: rgba(255,250,245,.94);
  backdrop-filter: blur(10px);
  padding: 16px 7%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 10;
  border-bottom: 1px solid rgba(155,134,117,.18);
}
.logo {
  font-family: Georgia, serif;
  font-size: 22px;
  letter-spacing: .08em;
  text-transform: lowercase;
  color: var(--espresso);
  text-decoration: none;
}
.nav-links a {
  color: var(--espresso);
  text-decoration: none;
  margin-left: 18px;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .12em;
}
.hero {
  min-height: 88vh;
  background:
    linear-gradient(rgba(247,242,235,.78), rgba(247,242,235,.92)),
    url('images/hero-placeholder.jpg');
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 70px 7%;
}
.hero-inner { max-width: 900px; }
.eyebrow {
  text-transform: uppercase;
  letter-spacing: .22em;
  font-size: 13px;
  color: var(--taupe);
  margin-bottom: 18px;
}
h1, h2, h3 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  line-height: 1.15;
}
h1 {
  font-size: clamp(46px, 7vw, 88px);
  margin: 0 0 18px;
}
h2 {
  font-size: clamp(34px, 5vw, 54px);
  margin: 0 0 20px;
}
h3 {
  font-size: 26px;
  margin: 0 0 12px;
}
p { margin-top: 0; }
.hero p {
  font-size: 19px;
  max-width: 690px;
  margin: 0 auto 28px;
}
.button {
  display: inline-block;
  background: var(--espresso);
  color: white;
  padding: 15px 28px;
  border-radius: 999px;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: .14em;
  font-size: 12px;
  margin: 8px;
  border: 1px solid var(--espresso);
}
.button.light {
  background: transparent;
  color: var(--espresso);
}
.button.white {
  background: white;
  color: var(--espresso);
  border-color: white;
}
section { padding: 86px 7%; }
.center { text-align: center; }
.narrow {
  max-width: 820px;
  margin: 0 auto;
}
.intro { background: var(--white); }
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  margin-top: 42px;
}
.about-band {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 54px;
  align-items: center;
  background: var(--soft);
}
.about-band img {
  width: 100%;
  border-radius: 28px;
  min-height: 470px;
  object-fit: cover;
}
.card {
  background: var(--white);
  padding: 34px;
  border-radius: 24px;
  box-shadow: 0 18px 45px rgba(59,47,42,.07);
  border: 1px solid rgba(155,134,117,.16);
}
.page-header {
  background: var(--soft);
  text-align: center;
  padding: 78px 7%;
}
.page-header p {
  max-width: 720px;
  margin: 0 auto;
  font-size: 18px;
}
.service-list { display: grid; gap: 28px; }
.service {
  background: var(--white);
  border-radius: 28px;
  padding: 36px;
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 28px;
  border: 1px solid rgba(155,134,117,.16);
  box-shadow: 0 18px 45px rgba(59,47,42,.06);
}
.service-details {
  background: var(--cream);
  border-radius: 22px;
  padding: 26px;
}
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 42px;
}
.step {
  padding: 28px;
  border-left: 1px solid var(--taupe);
}
.step span {
  display: block;
  font-size: 13px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--taupe);
  margin-bottom: 12px;
}
.faq {
  max-width: 900px;
  margin: 0 auto;
}
.faq details {
  background: var(--white);
  margin-bottom: 14px;
  border-radius: 18px;
  padding: 22px 26px;
  border: 1px solid rgba(155,134,117,.16);
}
.faq summary {
  cursor: pointer;
  font-family: Georgia, serif;
  font-size: 21px;
}
.cta {
  background: var(--espresso);
  color: white;
  text-align: center;
}
.cta .eyebrow { color: var(--sand); }
.footer {
  background: #2b211d;
  color: #eee3d8;
  padding: 34px 7%;
  text-align: center;
  font-size: 14px;
}
.footer a { color: #eee3d8; }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.gallery-item {
  background: var(--white);
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(155,134,117,.16);
}
.gallery-item img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  display: block;
}
.gallery-item p {
  padding: 18px 20px 22px;
  margin: 0;
  font-family: Georgia, serif;
  font-size: 21px;
}
.contact-box {
  background: var(--white);
  border-radius: 28px;
  padding: 42px;
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
  box-shadow: 0 18px 45px rgba(59,47,42,.07);
}
.notice {
  background: var(--soft);
  border-radius: 22px;
  padding: 22px;
  margin-top: 28px;
}
@media (max-width: 920px) {
  nav {
    position: static;
    flex-direction: column;
    gap: 12px;
  }
  .nav-links { text-align: center; }
  .nav-links a {
    margin: 0 8px;
    line-height: 2.2;
    font-size: 11px;
  }
  .grid-3, .about-band, .steps, .service, .gallery-grid {
    grid-template-columns: 1fr;
  }
  section { padding: 64px 7%; }
  .about-band img { min-height: 320px; }
}

.signature { font-family: Georgia, serif; font-size: 22px; margin-top: 18px; }
.service h3 { font-family: "Helvetica Neue", Arial, sans-serif; font-size: 18px; font-weight: 700; line-height: 1.45; }
