@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@700;800&family=Inter:wght@400;500;600;700&display=swap');

:root {
  --ay-bg: #fbf3e8;
  --ay-bg-soft: #fffaf3;
  --ay-brown: #7a3d20;
  --ay-brown-dark: #3e211b;
  --ay-text: #3a211d;
  --ay-muted: #7b6660;
  --ay-green: #77782b;
  --ay-line: rgba(72, 42, 32, .16);
}

body {
  margin: 0;
  color: var(--ay-text);
  background: var(--ay-bg-soft);
  font-family: Inter, sans-serif;
}





.ay-hero {
  position: relative;
  padding: 78px 24px 44px;
  background:
    radial-gradient(circle at 20% 10%, rgba(255,255,255,.9), transparent 34%),
    linear-gradient(180deg, #fbf1e3 0%, #fbf3e9 62%, #fffaf4 62%, #fffaf4 100%);
  overflow: hidden;
}

.ay-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(93, 54, 35, .035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(93, 54, 35, .028) 1px, transparent 1px);
  background-size: 38px 38px;
  opacity: .45;
  pointer-events: none;
}

.ay-hero-inner {
  max-width: 1030px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}

.ay-hero h1 {
  margin: 0;
  font-family: "Playfair Display", serif;
  font-size: clamp(36px, 4.2vw, 52px);
  line-height: 1.12;
  font-weight: 800;
  letter-spacing: -.03em;
  color: #3b211d;
}

.ay-hero > .ay-hero-inner > p {
  margin: 14px 0 28px;
  font-size: 21px;
  line-height: 1.4;
  font-weight: 500;
  color: #7c6662;
}

.ay-main-btn,
.ay-card-body a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 48px;
  padding: 0 42px;
  background: linear-gradient(180deg, #8c4a2a, #713517);
  color: #fff8ef;
  font-size: 17px;
  font-weight: 800;
  text-decoration: none;
  border-radius: 5px;
  box-shadow: 0 5px 12px rgba(63, 31, 18, .25);
}

.ay-card-grid {
  margin-top: 52px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.ay-card {
  background: rgba(255, 250, 243, .96);
  border-radius: 3px;
  overflow: hidden;
  box-shadow: 0 5px 18px rgba(65, 42, 31, .16);
  border: 1px solid rgba(80, 48, 32, .08);
}

.ay-card img {
  width: 100%;
  height: 202px;
  display: block;
  object-fit: cover;
}

.ay-card-body {
  padding: 21px 32px 23px;
}

.ay-card h2 {
  margin: 0 0 11px;
  padding-bottom: 13px;
  font-family: "Playfair Display", serif;
  font-size: 28px;
  line-height: 1.12;
  font-weight: 800;
  color: #3b211d;
  border-bottom: 1px solid rgba(92, 62, 48, .18);
}

.ay-card p {
  min-height: 50px;
  margin: 0 0 18px;
  font-size: 15px;
  line-height: 1.45;
  font-weight: 600;
  color: #806962;
}

.ay-card-body a {
  width: 100%;
  min-height: 47px;
  padding: 0 18px;
  font-size: 16px;
}

.ay-card-green h2 {
  color: var(--ay-green);
}

.ay-card-green .ay-card-body a {
  background: linear-gradient(180deg, #83843a, #62651f);
}

@media (max-width: 900px) {





  .ay-card-grid {
    grid-template-columns: 1fr;
    max-width: 420px;
    margin-left: auto;
    margin-right: auto;
  }
}