:root {
  --bg: #fff7fb;
  --surface: #ffffff;
  --surface-alt: #fdf0f7;
  --text: #24232b;
  --muted: #656171;
  --brand: #c02f76;
  --brand-dark: #8f1f57;
  --ring: rgba(192, 47, 118, 0.2);
  --shadow: 0 10px 30px rgba(31, 27, 45, 0.08);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  font-family: "Inter", sans-serif;
  background: var(--bg);
  color: var(--text);
  scroll-behavior: smooth;
}

a {
  color: inherit;
}

.container {
  width: min(1100px, 92%);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid #f1d9e7;
}

.nav-wrap {
  min-height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  text-decoration: none;
  font-weight: 800;
  font-size: 0.95rem;
  color: var(--brand-dark);
  display: flex;
  align-items: center;
  gap: 0.55rem;
}

.brand-logo {
  width: 34px;
  height: 34px;
  object-fit: contain;
  border-radius: 0.5rem;
}

nav {
  display: flex;
  gap: 1rem;
}

nav a {
  text-decoration: none;
  color: var(--muted);
  font-weight: 600;
}

nav a:hover {
  color: var(--brand-dark);
}

.menu-btn {
  display: none;
  border: 1px solid #ecc0d7;
  background: white;
  border-radius: 0.7rem;
  padding: 0.45rem 0.8rem;
}

.hero {
  background: radial-gradient(circle at top right, #ffd9ec, #fff7fb 45%);
  padding: 4.2rem 0 3rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 2rem;
  align-items: center;
}

.eyebrow {
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--brand-dark);
  font-weight: 700;
  font-size: 0.8rem;
}

h1 {
  font-size: clamp(2rem, 5vw, 3.2rem);
  margin: 0.4rem 0 0.9rem;
}

h2 {
  margin: 0 0 1rem;
  font-size: clamp(1.5rem, 3vw, 2.2rem);
}

h3 {
  margin-top: 0;
}

.hero p {
  color: var(--muted);
  max-width: 60ch;
}

.hero-actions {
  display: flex;
  gap: 0.8rem;
  margin-top: 1.3rem;
  flex-wrap: wrap;
}

.btn {
  text-decoration: none;
  border-radius: 0.8rem;
  padding: 0.7rem 1rem;
  font-weight: 700;
  border: none;
  cursor: pointer;
}

.btn-primary {
  background: var(--brand);
  color: white;
}

.btn-primary:hover {
  background: var(--brand-dark);
}

.btn-secondary {
  border: 1px solid #e2b0ca;
  color: var(--brand-dark);
  background: white;
}

.hero-card {
  background: var(--surface);
  border: 1px solid #f3d9e8;
  box-shadow: var(--shadow);
  border-radius: 1rem;
  padding: 1.3rem;
}

.hero-image {
  width: 100%;
  max-height: 330px;
  object-fit: cover;
  border-radius: 0.75rem;
  margin-bottom: 0.7rem;
}

.hero-card a,
.inline-link {
  color: var(--brand-dark);
  text-underline-offset: 3px;
}

.section {
  padding: 4rem 0;
}

.alt {
  background: var(--surface-alt);
}

.services-grid,
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.card,
.quote {
  background: var(--surface);
  border: 1px solid #f3d9e8;
  border-radius: 0.9rem;
  padding: 1rem;
  box-shadow: var(--shadow);
}

.card {
  text-align: center;
  font-weight: 600;
}

.quote {
  margin: 0;
  font-style: italic;
  color: #49435a;
}

.quote cite {
  display: block;
  margin-top: 0.7rem;
  font-style: normal;
  font-weight: 700;
  color: var(--brand-dark);
}

.about-grid,
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.founder-image {
  width: 100%;
  max-height: 340px;
  object-fit: cover;
  object-position: top;
  border-radius: 0.8rem;
  border: 1px solid #f3d9e8;
  margin-bottom: 0.9rem;
}

.faq-list details {
  background: white;
  border: 1px solid #f3d9e8;
  border-radius: 0.8rem;
  padding: 0.95rem;
  margin-bottom: 0.8rem;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.9rem;
}

.gallery-grid img {
  width: 100%;
  height: 290px;
  object-fit: cover;
  border-radius: 0.8rem;
  border: 1px solid #f3d9e8;
  box-shadow: var(--shadow);
}

.faq-list summary {
  cursor: pointer;
  font-weight: 700;
}

.contact-form {
  background: white;
  border: 1px solid #f3d9e8;
  border-radius: 1rem;
  padding: 1rem;
  display: grid;
  gap: 0.5rem;
}

input,
textarea {
  width: 100%;
  border: 1px solid #e7cada;
  border-radius: 0.6rem;
  padding: 0.7rem;
  font: inherit;
}

input:focus,
textarea:focus {
  outline: 3px solid var(--ring);
  border-color: var(--brand);
}

.form-status {
  min-height: 1.2rem;
  margin: 0.2rem 0 0;
  color: var(--brand-dark);
  font-weight: 600;
}

.site-footer {
  border-top: 1px solid #f1d9e7;
  padding: 1.5rem 0;
  background: white;
}

.footer-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  color: var(--muted);
  font-size: 0.95rem;
}

.footer-logo {
  width: 48px;
  height: 48px;
  object-fit: contain;
  border-radius: 0.5rem;
}

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

  .menu-btn {
    display: block;
  }

  nav {
    position: absolute;
    right: 4%;
    top: 70px;
    background: white;
    border: 1px solid #f3d9e8;
    border-radius: 0.8rem;
    display: none;
    flex-direction: column;
    padding: 0.7rem;
    box-shadow: var(--shadow);
  }

  nav.open {
    display: flex;
  }
}
