:root {
  --cream: #fff8f3;
  --warm-white: #fffdf9;
  --blush: #f7dce1;
  --rose: #b45e6d;
  --rose-dark: #7c3e49;
  --ink: #342b2c;
  --muted: #6f6061;
  --gold: #d6a84d;
  --line: #ead8cf;
  --shadow: 0 18px 45px rgba(96, 56, 61, 0.13);
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "Inter", "Segoe UI", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(255, 253, 249, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(12px);
}

.nav {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.logo {
  font-family: var(--serif);
  font-size: 1.55rem;
  font-weight: 700;
  text-decoration: none;
  color: var(--rose-dark);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-links a {
  text-decoration: none;
  color: var(--muted);
  font-weight: 700;
  padding: 10px 13px;
  border-radius: 999px;
}

.nav-links a:hover,
.nav-links a[aria-current="page"] {
  color: var(--rose-dark);
  background: var(--blush);
}

.section,
.hero {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

.hero {
  padding: 72px 0 58px;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(300px, 0.98fr);
  gap: 44px;
  align-items: center;
}

.hero-text {
  position: relative;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--rose);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  font-family: var(--serif);
  line-height: 1.04;
  margin: 0;
  color: var(--ink);
}

h1 {
  font-size: clamp(3rem, 5vw, 5.25rem);
  max-width: 790px;
}

h2 {
  font-size: clamp(2.1rem, 3vw, 3.25rem);
}

h3 {
  font-size: 1.55rem;
}

p {
  margin: 0;
  color: var(--muted);
}

.lead {
  font-size: 1.14rem;
  max-width: 650px;
  margin-top: 20px;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 21px;
  border-radius: 999px;
  border: 1px solid transparent;
  text-decoration: none;
  font-weight: 800;
}

.button.primary {
  background: var(--rose);
  color: white;
  box-shadow: 0 12px 28px rgba(180, 94, 109, 0.24);
}

.button.secondary {
  background: var(--warm-white);
  color: var(--rose-dark);
  border-color: var(--line);
}

.hero-art,
.image-card {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid rgba(255, 255, 255, 0.7);
  background: var(--warm-white);
}

.hero-art img,
.image-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.hero-art.contain-photo {
  background: linear-gradient(135deg, #fffdf9, #f7dce1);
}

.hero-art.contain-photo img {
  aspect-ratio: 4 / 3;
  object-fit: contain;
  padding: 14px;
}

.music-note {
  position: absolute;
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  right: 22px;
  bottom: 22px;
  border-radius: 50%;
  background: var(--warm-white);
  color: var(--gold);
  font-size: 2rem;
  box-shadow: 0 12px 25px rgba(52, 43, 44, 0.13);
}

.service-note {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-top: 22px;
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 253, 249, 0.88);
  color: var(--rose-dark);
  font-weight: 800;
  box-shadow: 0 8px 22px rgba(96, 56, 61, 0.08);
}

.section {
  padding: 54px 0;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 26px;
}

.section-heading p {
  margin-top: 12px;
  font-size: 1.05rem;
}

.grid {
  display: grid;
  gap: 18px;
}

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

.grid.three {
  grid-template-columns: repeat(3, 1fr);
}

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

.card {
  background: rgba(255, 253, 249, 0.88);
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 24px;
  box-shadow: 0 10px 25px rgba(96, 56, 61, 0.07);
}

.badge-card {
  min-height: 142px;
}

.icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  margin-bottom: 16px;
  border-radius: 14px;
  background: #f7e5e8;
  color: var(--rose-dark);
  font-size: 0.86rem;
  font-weight: 900;
}

.about {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 38px;
  align-items: center;
}

.benefit-list {
  display: grid;
  gap: 14px;
  margin-top: 22px;
}

.benefit {
  display: flex;
  gap: 13px;
  align-items: flex-start;
}

.check {
  flex: 0 0 28px;
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #f2dfb0;
  color: #7f5b12;
  font-weight: 900;
}

.soft-band {
  width: 100%;
  background: linear-gradient(180deg, rgba(247, 220, 225, 0.55), rgba(255, 248, 243, 0));
}

.quote {
  font-family: var(--serif);
  font-size: 1.45rem;
  line-height: 1.25;
  color: var(--ink);
}

.featured-testimonial {
  max-width: 920px;
  margin: 0 auto;
  padding: 34px;
}

.featured-testimonial .quote {
  font-size: clamp(1.55rem, 2.4vw, 2.2rem);
}

.author {
  margin-top: 16px;
  font-weight: 800;
  color: var(--rose-dark);
}

.cta-band {
  text-align: center;
  padding: 58px 24px;
  border-radius: 28px;
  background: var(--rose-dark);
  color: white;
  overflow: hidden;
  position: relative;
}

.cta-band h2,
.cta-band p {
  color: white;
}

.cta-band p {
  margin: 14px auto 0;
  max-width: 620px;
  opacity: 0.9;
}

.faq {
  display: grid;
  gap: 14px;
}

details {
  background: var(--warm-white);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 18px 20px;
}

summary {
  cursor: pointer;
  font-weight: 800;
  color: var(--rose-dark);
}

details p {
  margin-top: 10px;
}

.contact-layout {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 34px;
  align-items: start;
}

form {
  display: grid;
  gap: 16px;
}

.field {
  display: grid;
  gap: 7px;
}

label {
  font-weight: 800;
  color: var(--ink);
}

input,
select,
textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 12px 14px;
  color: var(--ink);
  background: white;
  font: inherit;
}

textarea {
  min-height: 130px;
  resize: vertical;
}

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

.contact-detail {
  display: grid;
  gap: 18px;
}

.contact-detail a {
  color: var(--rose-dark);
  font-weight: 800;
}

.photo-strip {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr 1fr;
  gap: 18px;
  align-items: stretch;
}

.photo-strip img {
  width: 100%;
  height: 100%;
  min-height: 260px;
  object-fit: cover;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  box-shadow: var(--shadow);
}

.photo-strip img:nth-child(2) {
  margin-top: 38px;
}

.site-footer {
  margin-top: 48px;
  background: #3d3031;
  color: white;
}

.footer-inner {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  padding: 34px 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 18px;
}

.footer-inner p,
.footer-inner a {
  color: rgba(255, 255, 255, 0.84);
}

.footer-brand {
  font-family: var(--serif);
  font-size: 1.45rem;
  color: white;
}

@media (max-width: 900px) {
  .hero,
  .about,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .grid.four,
  .grid.three {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .hero {
    padding-top: 48px;
  }
}

@media (max-width: 640px) {
  .nav {
    min-height: auto;
    padding: 16px 0;
    align-items: flex-start;
    flex-direction: column;
  }

  .nav-links {
    width: 100%;
    justify-content: space-between;
    gap: 4px;
  }

  .nav-links a {
    padding: 8px 9px;
    font-size: 0.94rem;
  }

  h1 {
    font-size: 2.72rem;
  }

  .grid.four,
  .grid.three,
  .grid.two,
  .photo-strip,
  .form-row {
    grid-template-columns: 1fr;
  }

  .photo-strip img,
  .photo-strip img:nth-child(2) {
    margin-top: 0;
    min-height: 220px;
  }

  .hero-art.contain-photo img {
    padding: 10px;
  }

  .section {
    padding: 42px 0;
  }

  .card {
    padding: 20px;
  }

  .actions,
  .button {
    width: 100%;
  }
}
