:root {
  --bg-cream: #fff7ef;
  --bg-gradient: linear-gradient(120deg, #fff9f1 0%, #ffeede 45%, #f4f9f4 100%);
  --text-main: #2f2a26;
  --text-muted: #5c534e;
  --accent: #ff6f61;
  --accent-dark: #e35346;
  --card-bg: #ffffff;
  --card-border: #f1e3d6;
  --shadow: 0 12px 28px rgba(63, 45, 31, 0.08);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "DM Sans", sans-serif;
  color: var(--text-main);
  background: var(--bg-gradient);
  min-height: 100vh;
  line-height: 1.5;
}

.site-header {
  max-width: 1100px;
  margin: 0 auto;
  padding: 1.2rem 1.2rem 0.8rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

.logo-circle {
  width: 2.1rem;
  height: 2.1rem;
  border-radius: 50%;
  background: linear-gradient(140deg, #ffb68f, #ff7f73);
  color: #fff;
  display: grid;
  place-items: center;
  font-weight: 700;
}

.logo h1 {
  font-family: "Playfair Display", serif;
  font-size: 1.35rem;
  letter-spacing: 0.3px;
}

.menu-button {
  border: 1px solid #e2c9b6;
  border-radius: 12px;
  background: #fff;
  width: 44px;
  height: 40px;
  display: grid;
  align-content: center;
  gap: 5px;
  padding: 0 10px;
  cursor: pointer;
}

.menu-button span {
  display: block;
  height: 2px;
  background: #7a6859;
  border-radius: 10px;
}

.content {
  max-width: 1100px;
  margin: 0 auto;
  padding: 1.3rem 1.2rem 2.5rem;
}

.intro {
  text-align: center;
  margin: 1.4rem auto 2rem;
  max-width: 700px;
}

.intro h2 {
  font-family: "Playfair Display", serif;
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  line-height: 1.15;
  margin-bottom: 0.7rem;
}

.intro p {
  color: var(--text-muted);
  font-size: 1.03rem;
}

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

.card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 20px;
  padding: 1rem;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  animation: floatIn 0.7s ease both;
}

.card:nth-child(2) {
  animation-delay: 0.12s;
}

.card:nth-child(3) {
  animation-delay: 0.24s;
}

.card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 14px;
  margin-bottom: 0.9rem;
}

.card h3 {
  font-size: 1.18rem;
  margin-bottom: 0.5rem;
}

.card p {
  color: var(--text-muted);
  margin-bottom: 1rem;
  flex-grow: 1;
}

.card-button {
  align-self: flex-start;
  border: none;
  background: var(--accent);
  color: #fff;
  font-weight: 700;
  font-family: inherit;
  font-size: 0.95rem;
  border-radius: 999px;
  padding: 0.6rem 1rem;
  transition: background 0.25s ease, transform 0.25s ease;
  cursor: pointer;
}

.card-button:hover {
  background: var(--accent-dark);
  transform: translateY(-2px);
}

@keyframes floatIn {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 900px) {
  .cards {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 640px) {
  .site-header {
    padding-top: 1rem;
  }

  .logo h1 {
    font-size: 1.1rem;
  }

  .cards {
    grid-template-columns: 1fr;
  }

  .card img {
    height: 200px;
  }
}
