:root {
  --pink: #f2a7d2;
  --purple: #9e84e8;
  --green: #8dcf8f;
  --yellow: #f4d56a;
  --text: #2f2a2d;
  --muted: #6f676b;
  --border: #ece7eb;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  color: var(--text);
  background: #ffffff;
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

.hero {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  max-width: 1100px;
  margin: 0 auto;
  padding: 4.5rem 1.5rem 3rem;
}

.hero-content {
  flex: 1 1 500px;
  text-align: center;
}

h1,
h2,
h3 {
  line-height: 1.2;
  margin-top: 0;
}

.site-title {
  font-family: "Brush Script MT", "Segoe Script", "Lucida Handwriting", cursive;
  font-size: clamp(2.7rem, 5vw, 4rem);
  margin-bottom: 1rem;
  text-align: center;
  letter-spacing: 0.03em;
}

h1 {
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  margin-bottom: 1rem;
}

h2 {
  font-size: clamp(1.6rem, 2.3vw, 2.2rem);
  margin-bottom: 0.75rem;
}

.lead {
  font-size: 1.08rem;
  color: var(--muted);
  max-width: 650px;
  margin: 0 auto 1rem;
  text-align: center;
}

.button {
  display: inline-block;
  margin-top: 1rem;
  padding: 0.9rem 1.2rem;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  transition: transform 0.2s ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button.primary {
  background: linear-gradient(135deg, var(--purple), var(--pink));
  color: white;
}

.button.secondary {
  background: linear-gradient(135deg, var(--green), var(--yellow));
  color: #3f2f34;
}

.about,
.gallery,
.contact {
  max-width: 1100px;
  margin: 0 auto;
  padding: 2rem 1.5rem 3rem;
}

.section-intro {
  margin-bottom: 1.5rem;
}

.pillars {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.pillars article,
.card {
  padding: 1.25rem;
  border-radius: 20px;
  background: white;
  border: 1px solid var(--border);
}

.pillars h3,
.card h3 {
  margin-bottom: 0.4rem;
}

.cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.card.pink {
  border-left: 4px solid var(--pink);
}

.card.purple {
  border-left: 4px solid var(--purple);
}

.card.green {
  border-left: 4px solid var(--green);
}

.card.yellow {
  border-left: 4px solid var(--yellow);
}

.contact {
  text-align: center;
  margin-bottom: 3rem;
}

.contact-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem 1rem;
}

.contact-card {
  width: 100%;
  max-width: 600px;
  padding: 2rem;
  border: 1px solid var(--border);
  border-radius: 24px;
  background: #ffffff;
}

.contact-card form {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin: 1.2rem 0;
}

.contact-card label {
  font-weight: 600;
  color: #6c9f6e;
}

.contact-card input,
.contact-card textarea {
  width: 100%;
  padding: 0.8rem 0.95rem;
  border: 1px solid var(--border);
  border-radius: 10px;
  font: inherit;
  color: #6c9f6e;
}

.contact-card input::placeholder,
.contact-card textarea::placeholder {
  color: #f2a7d2;
  opacity: 1;
}

.contact-card button {
  margin-top: 0.5rem;
  padding: 0.9rem 1.2rem;
  border: none;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--purple), var(--pink));
  color: white;
  font-weight: 700;
  cursor: pointer;
}

@media (max-width: 800px) {
  .pillars,
  .cards {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .hero {
    padding-top: 3rem;
  }

  .hero-card {
    flex-basis: 100%;
  }
}
