:root {
  --sky: #cfe8fb;
  --sky-deep: #9ad7f2;
  --grass: #6fbe45;
  --leaf: #2f8c55;
  --moss: #eef8db;
  --sun: #ffd85a;
  --coral: #ff7b8c;
  --berry: #c34880;
  --ink: #21405f;
  --soft: #fffaf0;
  --white: #ffffff;
  --shadow: 0 22px 55px rgba(40, 95, 68, 0.18);
  --shadow-deep: 0 28px 80px rgba(33, 64, 95, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background:
    radial-gradient(circle at 12% 16%, rgba(255, 216, 90, 0.2), transparent 22rem),
    linear-gradient(180deg, #f8fdff 0%, #fffaf0 42%, #f1f8e8 100%);
  font-family: "Nunito", Arial, sans-serif;
  font-size: 18px;
  line-height: 1.6;
}

.floating-leaves {
  position: fixed;
  inset: 0;
  z-index: 10;
  overflow: hidden;
  pointer-events: none;
}

.floating-leaves span {
  position: absolute;
  top: -36px;
  width: 18px;
  height: 28px;
  border-radius: 80% 12% 80% 18%;
  background: linear-gradient(135deg, #91cc62, #4fae4a);
  opacity: 0.42;
  animation: leaf-drift 18s linear infinite;
}

.floating-leaves span::after {
  content: "";
  position: absolute;
  top: 3px;
  left: 8px;
  width: 1px;
  height: 22px;
  background: rgba(47, 100, 54, 0.45);
  transform: rotate(18deg);
}

.floating-leaves span:nth-child(1) {
  left: 8%;
  animation-delay: -3s;
  animation-duration: 21s;
}

.floating-leaves span:nth-child(2) {
  left: 24%;
  width: 14px;
  height: 22px;
  background: linear-gradient(135deg, #ffd56a, #f2a23a);
  animation-delay: -11s;
  animation-duration: 24s;
}

.floating-leaves span:nth-child(3) {
  left: 43%;
  background: linear-gradient(135deg, #ff9cae, #c34880);
  animation-delay: -6s;
  animation-duration: 19s;
}

.floating-leaves span:nth-child(4) {
  left: 62%;
  width: 13px;
  height: 21px;
  background: linear-gradient(135deg, #d6a15f, #b56f36);
  animation-delay: -15s;
  animation-duration: 26s;
}

.floating-leaves span:nth-child(5) {
  left: 78%;
  background: linear-gradient(135deg, #8edcff, #5ebee8);
  animation-delay: -9s;
  animation-duration: 22s;
}

.floating-leaves span:nth-child(6) {
  left: 92%;
  width: 15px;
  height: 24px;
  background: linear-gradient(135deg, #ffb9a5, #ff7b8c);
  animation-delay: -1s;
  animation-duration: 20s;
}

@keyframes leaf-drift {
  0% {
    transform: translate3d(0, -6vh, 0) rotate(0deg);
  }
  35% {
    transform: translate3d(-44px, 38vh, 0) rotate(160deg);
  }
  70% {
    transform: translate3d(38px, 78vh, 0) rotate(310deg);
  }
  100% {
    transform: translate3d(-18px, 108vh, 0) rotate(460deg);
  }
}

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

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px clamp(18px, 4vw, 56px);
  background: rgba(255, 255, 255, 0.82);
  border-bottom: 1px solid rgba(47, 140, 85, 0.13);
  backdrop-filter: blur(18px);
  box-shadow: 0 10px 34px rgba(33, 64, 95, 0.06);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: "Baloo 2", cursive;
  text-decoration: none;
}

.brand-text {
  display: grid;
  gap: 1px;
}

.brand-text strong {
  font-size: 1.35rem;
  line-height: 1;
}

.brand-text small {
  color: var(--berry);
  font-family: "Nunito", Arial, sans-serif;
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  line-height: 1.1;
  text-transform: uppercase;
}

.brand img {
  width: 58px;
  height: 58px;
  border: 3px solid var(--white);
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 8px 20px rgba(33, 64, 95, 0.14);
}

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

.site-nav a {
  position: relative;
  padding: 8px 14px;
  border-radius: 999px;
  font-weight: 800;
  text-decoration: none;
}

.site-nav a:hover {
  background: var(--moss);
}

.site-nav a::after {
  content: "";
  position: absolute;
  right: 18px;
  bottom: 3px;
  left: 18px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, #ff7b8c, #ffd85a, #6fbe45, #5ebee8);
  opacity: 0;
  transform: scaleX(0.35);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.site-nav a:hover::after {
  opacity: 1;
  transform: scaleX(1);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 10px;
  border: 0;
  border-radius: 50%;
  background: var(--moss);
}

.nav-toggle span {
  display: block;
  height: 3px;
  margin: 5px 0;
  border-radius: 999px;
  background: var(--leaf);
}

.hero {
  position: relative;
  min-height: calc(100vh - 82px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 480px);
  align-items: center;
  gap: clamp(28px, 5vw, 76px);
  padding: clamp(44px, 8vw, 112px) clamp(18px, 5vw, 72px) 168px;
  overflow: hidden;
  background:
    radial-gradient(circle at 18% 21%, rgba(255, 255, 255, 0.82), transparent 8rem),
    radial-gradient(circle at 78% 22%, rgba(255, 255, 255, 0.84), transparent 14rem),
    linear-gradient(180deg, rgba(207, 232, 251, 0.98), rgba(255, 250, 240, 0.9));
}

.hero-content::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: -28px;
  left: -28px;
  width: 112px;
  height: 112px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 50%, #fff 0 6px, transparent 7px),
    conic-gradient(#ff7b8c 0 20%, transparent 20% 32%, #ffd85a 32% 52%, transparent 52% 64%, #6fbe45 64% 84%, transparent 84%);
  opacity: 0.16;
}

.hero::after {
  content: "";
  position: absolute;
  right: calc(50% - 50vw);
  bottom: -126px;
  left: calc(50% - 50vw);
  height: 304px;
  background: url("assets/images/hero-meadow.svg") center bottom / 100% 100% no-repeat;
  opacity: 0.72;
  pointer-events: none;
}

.hero::before {
  content: "";
  position: absolute;
  right: -4vw;
  bottom: 30px;
  width: 470px;
  height: 180px;
  background:
    radial-gradient(circle at 14% 72%, #ff8fa4 0 7px, transparent 8px),
    radial-gradient(circle at 22% 64%, #ffd85a 0 6px, transparent 7px),
    radial-gradient(circle at 36% 70%, #8edcff 0 7px, transparent 8px),
    radial-gradient(circle at 80% 44%, #7fd268 0 45px, transparent 46px),
    radial-gradient(circle at 69% 58%, #7fd268 0 34px, transparent 35px),
    linear-gradient(90deg, transparent 0 70%, #af7847 70% 73%, transparent 73%);
  opacity: 0.75;
  pointer-events: none;
}

.hero-content,
.hero-card {
  position: relative;
  z-index: 2;
}

.sky-shapes {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--berry);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Baloo 2", cursive;
  line-height: 1.05;
}

h1 {
  max-width: 780px;
  font-size: clamp(3rem, 6vw, 5.9rem);
  color: #17385a;
}

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

h3 {
  font-size: 1.55rem;
}

.hero-copy {
  max-width: 670px;
  margin: 22px 0 0;
  font-size: clamp(1.1rem, 2vw, 1.45rem);
  font-weight: 700;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 12px 22px;
  border: 2px solid transparent;
  border-radius: 999px;
  font-weight: 900;
  text-decoration: none;
  box-shadow: 0 12px 28px rgba(33, 64, 95, 0.12);
  transition: transform 0.18s ease, box-shadow 0.18s ease, filter 0.18s ease;
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 34px rgba(33, 64, 95, 0.18);
  filter: saturate(1.05);
}

.button.primary {
  background: var(--berry);
  color: var(--white);
}

.button.secondary {
  background: var(--white);
  border-color: rgba(47, 140, 85, 0.25);
  color: var(--leaf);
}

.hero-card {
  padding: 14px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: var(--shadow);
  transform: rotate(2deg);
}

.hero-card img {
  aspect-ratio: 1;
  width: 100%;
  border-radius: 20px;
  object-fit: cover;
}

.cloud,
.butterfly,
.sun {
  position: absolute;
  z-index: 1;
  pointer-events: none;
}

.sun {
  top: 90px;
  right: clamp(88px, 14vw, 230px);
  width: 112px;
  height: 112px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 36% 34%, #fff8b8 0 13%, transparent 14%),
    radial-gradient(circle, #ffd85a 0 58%, #ffb84d 59% 100%);
  box-shadow: 0 0 0 18px rgba(255, 216, 90, 0.16), 0 0 70px rgba(255, 191, 75, 0.46);
  animation: sun-glow 5.5s ease-in-out infinite;
}

.sun::before {
  content: "";
  position: absolute;
  inset: -28px;
  border-radius: 50%;
  background: repeating-conic-gradient(from 8deg, rgba(255, 184, 77, 0.46) 0 8deg, transparent 8deg 20deg);
  mask: radial-gradient(circle, transparent 0 54%, #000 55% 68%, transparent 69%);
}

@keyframes sun-glow {
  0%,
  100% {
    transform: scale(1) rotate(0deg);
    box-shadow: 0 0 0 18px rgba(255, 216, 90, 0.16), 0 0 70px rgba(255, 191, 75, 0.46);
  }
  50% {
    transform: scale(1.04) rotate(4deg);
    box-shadow: 0 0 0 24px rgba(255, 216, 90, 0.12), 0 0 90px rgba(255, 191, 75, 0.55);
  }
}

.cloud {
  width: 140px;
  height: 52px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.76);
  box-shadow: 38px 4px 0 8px rgba(255, 255, 255, 0.76), 78px -10px 0 18px rgba(255, 255, 255, 0.76);
}

.cloud-one {
  top: 18%;
  right: 18%;
}

.cloud-two {
  bottom: 25%;
  left: 9%;
  transform: scale(0.72);
}

.butterfly {
  width: 18px;
  height: 18px;
  border-radius: 80% 20% 80% 20%;
  background: var(--coral);
  box-shadow: 18px 0 0 #f5b445;
  transform: rotate(24deg);
}

.butterfly-one {
  top: 22%;
  left: 53%;
}

.butterfly-two {
  right: 11%;
  bottom: 32%;
  transform: rotate(-18deg) scale(0.85);
}

.quick-info {
  position: relative;
  z-index: 4;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  width: min(1180px, calc(100% - 36px));
  margin: -118px auto 0;
  padding-bottom: 46px;
}

.quick-info::before {
  content: "";
  position: absolute;
  z-index: -1;
  right: calc(50% - 50vw);
  left: calc(50% - 50vw);
  top: -156px;
  height: 392px;
  background: url("assets/images/hero-meadow.svg") center top / 100% 100% no-repeat;
  pointer-events: none;
}

.quick-info::after {
  content: "";
  position: absolute;
  z-index: -2;
  right: calc(50% - 50vw);
  bottom: -76px;
  left: calc(50% - 50vw);
  height: 240px;
  background:
    radial-gradient(92% 72% at 24% 0%, rgba(80, 175, 61, 0.78) 0 46%, rgba(80, 175, 61, 0) 68%),
    radial-gradient(94% 70% at 72% 0%, rgba(111, 197, 79, 0.72) 0 48%, rgba(111, 197, 79, 0) 69%),
    linear-gradient(180deg, rgba(82, 176, 62, 0.48), rgba(119, 202, 86, 0.32) 44%, rgba(244, 251, 239, 0) 100%);
  pointer-events: none;
}

.quick-info article,
.offer-card,
.note,
.location-card,
.contact-form,
.testimonial-card,
.legal-grid article {
  border: 1px solid rgba(47, 140, 85, 0.15);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow);
}

.quick-info article {
  position: relative;
  display: grid;
  grid-template-columns: 50px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  min-height: 94px;
  overflow: hidden;
  padding: 18px;
}

.quick-info article::after {
  content: "";
  position: absolute;
  right: -18px;
  bottom: -26px;
  width: 84px;
  height: 84px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.75) 0 7px, transparent 8px),
    conic-gradient(rgba(255, 123, 140, 0.18) 0 25%, rgba(255, 216, 90, 0.18) 25% 50%, rgba(111, 190, 69, 0.18) 50% 75%, rgba(94, 190, 232, 0.18) 75%);
}

.quick-icon {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  color: #2f8c55;
  background: #e2f6d6;
  box-shadow: inset 0 0 0 3px rgba(255, 255, 255, 0.75), 0 10px 20px rgba(47, 140, 85, 0.14);
}

.quick-icon svg {
  width: 29px;
  height: 29px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.quick-icon-age {
  color: #c24d84;
  background: #ffe3ed;
}

.quick-icon-group {
  color: #2d8fc4;
  background: #ddf5ff;
}

.quick-icon-place {
  color: #c88712;
  background: #fff1bd;
}

.quick-icon-location {
  color: #4b9b3c;
  background: #e4f7cf;
}

.quick-info article > div {
  position: relative;
  z-index: 1;
}

.quick-label {
  display: block;
  color: var(--berry);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.quick-info strong {
  display: block;
  margin-top: 4px;
  font-size: 1.05rem;
}

.section {
  padding: clamp(72px, 9vw, 126px) clamp(18px, 5vw, 72px);
}

.intro-section,
.rooms-section,
.testimonials-section,
.legal-section {
  position: relative;
}

.intro-section::after,
.rooms-section::after,
.testimonials-section::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -1px;
  left: 0;
  height: 48px;
  background:
    radial-gradient(80% 48px at 15% 100%, rgba(111, 190, 69, 0.12) 0 66%, transparent 67%),
    radial-gradient(70% 48px at 70% 100%, rgba(94, 190, 232, 0.1) 0 64%, transparent 65%);
  pointer-events: none;
}

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

.section-heading.centered {
  margin-inline: auto;
  text-align: center;
}

.intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 390px);
  gap: clamp(24px, 5vw, 72px);
  align-items: start;
  width: min(1180px, 100%);
  margin: 34px auto 0;
}

.intro-text {
  font-size: 1.18rem;
}

.note {
  padding: 28px;
  background:
    radial-gradient(circle at top right, rgba(255, 216, 90, 0.32), transparent 11rem),
    var(--white);
}

.note strong {
  font-family: "Baloo 2", cursive;
  font-size: 1.55rem;
}

.offer-band {
  background:
    radial-gradient(circle at 10% 20%, rgba(255, 123, 140, 0.12), transparent 22rem),
    linear-gradient(180deg, #f0f9ff, #f8ffe9);
}

.offer-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  width: min(1180px, 100%);
  margin: 40px auto 0;
}

.offer-card {
  position: relative;
  overflow: hidden;
  padding: 24px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.offer-card::after {
  content: "";
  position: absolute;
  top: -34px;
  right: -34px;
  width: 112px;
  height: 112px;
  border-radius: 50%;
  background: rgba(255, 216, 90, 0.18);
}

.offer-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-deep);
}

.icon {
  display: grid;
  width: 54px;
  height: 54px;
  margin-bottom: 18px;
  place-items: center;
  border-radius: 50%;
  background: #fff3bf;
  color: var(--berry);
  font-size: 1.55rem;
  font-weight: 900;
}

.rooms-section {
  background: var(--soft);
}

.meadow-section {
  position: relative;
  min-height: 520px;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 560px);
  align-items: center;
  gap: clamp(28px, 6vw, 80px);
  padding: clamp(68px, 8vw, 118px) clamp(18px, 5vw, 72px);
  overflow: hidden;
  background:
    radial-gradient(circle at 86% 14%, rgba(255, 216, 90, 0.72) 0 3.5rem, rgba(255, 216, 90, 0.2) 3.6rem 6rem, transparent 6.1rem),
    radial-gradient(circle at 16% 18%, rgba(255, 255, 255, 0.94), transparent 9rem),
    radial-gradient(circle at 78% 20%, rgba(255, 255, 255, 0.72), transparent 12rem),
    linear-gradient(180deg, #d8f1ff 0 52%, #c5ec9a 53% 66%, #85cc5f 67% 100%);
  background-size: 100% 100%, 115% 115%, 125% 125%, 100% 100%;
  animation: meadow-sky-breathe 11s ease-in-out infinite;
}

.meadow-section::before,
.meadow-section::after {
  content: "";
  position: absolute;
  right: -8vw;
  left: -8vw;
  pointer-events: none;
}

.meadow-section::before {
  bottom: 0;
  height: 260px;
  background:
    radial-gradient(circle at 10% 68%, #ff86a1 0 7px, transparent 8px),
    radial-gradient(circle at 16% 58%, #fff 0 6px, transparent 7px),
    radial-gradient(circle at 31% 72%, #ffd85a 0 6px, transparent 7px),
    radial-gradient(circle at 72% 54%, #fff 0 7px, transparent 8px),
    radial-gradient(circle at 86% 67%, #ff86a1 0 6px, transparent 7px),
    radial-gradient(120% 82% at 18% 100%, #4fae3e 0 54%, transparent 55%),
    radial-gradient(112% 76% at 72% 100%, #5fbd46 0 55%, transparent 56%),
    linear-gradient(180deg, transparent 0 18%, #75c654 19% 100%);
  animation: meadow-front-roll 13s ease-in-out infinite alternate;
}

.meadow-section::after {
  bottom: 120px;
  height: 180px;
  opacity: 0.82;
  background:
    radial-gradient(80% 90% at 18% 100%, #b7e583 0 58%, transparent 59%),
    radial-gradient(72% 86% at 56% 100%, #a6dd74 0 58%, transparent 59%),
    radial-gradient(62% 80% at 88% 100%, #bce98b 0 58%, transparent 59%);
  animation: meadow-back-roll 16s ease-in-out infinite alternate;
}

@keyframes meadow-sky-breathe {
  0%,
  100% {
    background-position: 0 0, 0 0, 0 0, 0 0;
  }
  50% {
    background-position: 0 0, 18px -10px, -22px 8px, 0 0;
  }
}

@keyframes meadow-front-roll {
  0% {
    transform: translateX(-18px);
  }
  100% {
    transform: translateX(18px);
  }
}

@keyframes meadow-back-roll {
  0% {
    transform: translateX(22px) translateY(0);
  }
  100% {
    transform: translateX(-20px) translateY(8px);
  }
}

.meadow-copy {
  position: relative;
  z-index: 2;
  max-width: 620px;
  padding: 28px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: var(--shadow);
  backdrop-filter: blur(10px);
}

.meadow-copy p:last-child {
  margin-bottom: 0;
  font-size: 1.16rem;
  font-weight: 700;
}

.meadow-scene,
.meadow-rainbow,
.meadow-tree,
.child,
.flower {
  position: absolute;
}

.meadow-scene {
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.meadow-rainbow {
  left: clamp(24px, 8vw, 140px);
  bottom: 142px;
  width: 250px;
  height: 135px;
  background: url("assets/images/rainbow-arc.svg") center bottom / contain no-repeat;
  filter: drop-shadow(0 12px 18px rgba(33, 64, 95, 0.08));
  animation: meadow-float 8s ease-in-out infinite;
}

.meadow-tree {
  bottom: 98px;
  width: 104px;
  height: 128px;
  border-radius: 48% 52% 43% 57%;
  background: #79c95f;
  z-index: 2;
}

.meadow-tree::after {
  content: "";
  position: absolute;
  bottom: -62px;
  left: 45px;
  width: 16px;
  height: 72px;
  border-radius: 999px;
  background: #ad7348;
}

.meadow-tree-one {
  left: 36%;
}

.meadow-tree-two {
  right: 7%;
  bottom: 128px;
  transform: scale(0.78);
}

.child {
  bottom: 80px;
  width: 30px;
  height: 48px;
  border-radius: 999px 999px 8px 8px;
  background: #ff8ea5;
  z-index: 3;
  animation: child-bob 3.8s ease-in-out infinite;
}

.child::before {
  content: "";
  position: absolute;
  top: -24px;
  left: 4px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #ffd5a6;
  box-shadow: 0 -5px 0 #784a38;
}

.child-one {
  left: 52%;
}

.child-two {
  left: 58%;
  background: #5bbfe2;
  transform: scale(0.9);
  animation-delay: -1.1s;
}

@keyframes meadow-float {
  0%,
  100% {
    translate: 0 0;
  }
  50% {
    translate: 0 -8px;
  }
}

@keyframes child-bob {
  0%,
  100% {
    translate: 0 0;
  }
  50% {
    translate: 0 -5px;
  }
}

.flower {
  bottom: 76px;
  width: 12px;
  height: 42px;
  border-radius: 999px;
  background: #2f8c55;
  z-index: 3;
}

.flower::before {
  content: "";
  position: absolute;
  top: -9px;
  left: -8px;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background:
    radial-gradient(circle, #ffd85a 0 5px, transparent 6px),
    conic-gradient(#ff7b8c 0 20%, #fff 20% 32%, #ff7b8c 32% 52%, #fff 52% 64%, #ff7b8c 64% 84%, #fff 84%);
}

.flower-one {
  left: 11%;
}

.flower-two {
  left: 19%;
  transform: scale(0.8);
}

.flower-three {
  right: 22%;
  transform: scale(1.1);
}

.gallery {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  width: min(1220px, 100%);
  margin: 38px auto 0;
}

.gallery figure {
  position: relative;
  min-height: 290px;
  margin: 0;
  padding: 7px;
  overflow: hidden;
  border-radius: 8px;
  background: #fff;
  border: 4px solid var(--frame-color, #8bcf75);
  box-shadow: 0 18px 42px rgba(40, 77, 67, 0.18);
}

.gallery figure:nth-child(1) {
  --frame-color: #79c95f;
}

.gallery figure:nth-child(2) {
  --frame-color: #64c7ea;
}

.gallery figure:nth-child(3) {
  --frame-color: #ff9aad;
}

.gallery figure:nth-child(4) {
  --frame-color: #ffd85a;
}

.gallery figure:nth-child(5) {
  --frame-color: #bd8ce0;
}

.gallery figure:nth-child(6) {
  --frame-color: #ffb35f;
}

.gallery-large {
  grid-column: span 2;
  grid-row: span 2;
}

.gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 4px;
  transition: transform 0.4s ease;
}

.gallery figure::before {
  content: "";
  position: absolute;
  inset: 12px;
  z-index: 1;
  border: 3px solid rgba(255, 255, 255, 0.7);
  border-radius: 5px;
  pointer-events: none;
}

.gallery figure:hover img {
  transform: scale(1.04);
}

.gallery figcaption {
  position: absolute;
  z-index: 2;
  right: 12px;
  bottom: 12px;
  left: 12px;
  padding: 10px 12px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.88);
  font-weight: 900;
}

.locations-section {
  background:
    linear-gradient(180deg, rgba(255, 250, 240, 0.1), rgba(207, 232, 251, 0.45)),
    var(--moss);
}

.location-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  width: min(1060px, 100%);
  margin: 38px auto 0;
}

.location-card {
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.location-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-deep);
}

.location-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.location-card div {
  padding: 22px;
}

.testimonials-section {
  background:
    radial-gradient(circle at 82% 12%, rgba(255, 216, 90, 0.22), transparent 18rem),
    #fffaf0;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  width: min(1120px, 100%);
  margin: 38px auto 0;
}

.testimonial-card {
  padding: 26px;
}

.testimonial-card span {
  color: #f4ad28;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.testimonial-card p {
  font-size: 1.08rem;
  font-weight: 800;
}

.testimonial-card strong {
  color: var(--berry);
  font-size: 0.92rem;
}

.contact-section {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(320px, 520px);
  gap: clamp(26px, 5vw, 68px);
  align-items: center;
  padding: clamp(76px, 10vw, 130px) clamp(18px, 5vw, 72px);
  color: var(--white);
  background:
    radial-gradient(circle at 82% 20%, rgba(255, 216, 90, 0.34), transparent 18rem),
    radial-gradient(circle at 13% 72%, rgba(255, 123, 140, 0.2), transparent 15rem),
    linear-gradient(135deg, #2f8c55, #1f6f83);
}

.contact-flowers {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.contact-flower {
  position: absolute;
  display: block;
  width: 14px;
  height: 70px;
  border-radius: 999px;
  background: rgba(225, 246, 206, 0.86);
  transform-origin: bottom center;
}

.contact-flower::before {
  content: "";
  position: absolute;
  top: -18px;
  left: -17px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 50%, #ffd85a 0 7px, transparent 8px),
    conic-gradient(#ff8fa4 0 18%, #fff8d8 18% 31%, #ff8fa4 31% 49%, #fff8d8 49% 62%, #ff8fa4 62% 80%, #fff8d8 80%);
  filter: drop-shadow(0 10px 16px rgba(22, 69, 58, 0.15));
}

.contact-flower::after {
  content: "";
  position: absolute;
  top: 28px;
  left: 10px;
  width: 28px;
  height: 16px;
  border-radius: 80% 20% 80% 20%;
  background: rgba(174, 224, 132, 0.85);
  transform: rotate(-24deg);
}

.contact-flower-one {
  left: clamp(24px, 8vw, 130px);
  bottom: 34px;
}

.contact-flower-two {
  left: clamp(180px, 21vw, 310px);
  bottom: 74px;
  transform: scale(0.72) rotate(-6deg);
}

.contact-flower-two::before {
  background:
    radial-gradient(circle at 50% 50%, #fff8d8 0 7px, transparent 8px),
    conic-gradient(#8edcff 0 18%, #fff 18% 31%, #8edcff 31% 49%, #fff 49% 62%, #8edcff 62% 80%, #fff 80%);
}

.contact-flower-three {
  right: clamp(26px, 9vw, 136px);
  bottom: 44px;
  transform: scale(0.82) rotate(5deg);
}

.contact-flower-three::before {
  background:
    radial-gradient(circle at 50% 50%, #ffd85a 0 7px, transparent 8px),
    conic-gradient(#fff 0 18%, #ffb7c7 18% 31%, #fff 31% 49%, #ffb7c7 49% 62%, #fff 62% 80%, #ffb7c7 80%);
}

.contact-flower-four {
  right: clamp(190px, 22vw, 330px);
  bottom: 86px;
  transform: scale(0.62) rotate(-8deg);
}

.contact-content {
  position: relative;
  z-index: 1;
  max-width: 760px;
}

.contact-content .eyebrow {
  color: #ffe58a;
}

.contact-content p {
  font-size: 1.18rem;
}

.button.facebook {
  background: #2e66b1;
  color: var(--white);
}

.contact-form {
  display: grid;
  position: relative;
  z-index: 1;
  gap: 16px;
  padding: 26px;
  color: var(--ink);
}

.contact-form label:not(.checkbox-row) {
  display: block;
  margin-bottom: 6px;
  font-size: 0.88rem;
  font-weight: 900;
  text-transform: uppercase;
  color: var(--berry);
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 2px solid rgba(47, 140, 85, 0.16);
  border-radius: 8px;
  padding: 13px 14px;
  color: var(--ink);
  background: #fff;
  font: inherit;
  outline: none;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--leaf);
  box-shadow: 0 0 0 4px rgba(111, 190, 69, 0.18);
}

.checkbox-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-weight: 800;
  line-height: 1.35;
}

.checkbox-row input {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  margin-top: 2px;
  accent-color: var(--berry);
}

.form-status {
  min-height: 1.4em;
  margin: 0;
  color: var(--leaf);
  font-weight: 900;
}

.legal-section {
  position: relative;
  padding: clamp(66px, 8vw, 112px) clamp(18px, 5vw, 72px);
  padding-bottom: 34px;
  background: #f4fbef;
}

.legal-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  width: min(1160px, 100%);
  margin: 0 auto;
}

.legal-grid article {
  padding: 28px;
}

.legal-grid h2 {
  font-size: clamp(2rem, 3vw, 3rem);
}

.legal-grid a {
  font-weight: 900;
  color: var(--berry);
}

.legal-garden {
  width: min(1160px, 100%);
  min-height: 96px;
  margin: 8px auto -26px;
  position: relative;
}

.legal-rainbow,
.legal-flower {
  position: absolute;
  display: block;
}

.legal-rainbow {
  right: clamp(30px, 10vw, 160px);
  bottom: -10px;
  width: 210px;
  height: 112px;
  background: url("assets/images/rainbow-arc.svg") center bottom / contain no-repeat;
  opacity: 0.58;
}

.legal-flower {
  bottom: -26px;
  width: 10px;
  height: 44px;
  border-radius: 999px;
  background: #2f8c55;
}

.legal-flower::before {
  content: "";
  position: absolute;
  top: -10px;
  left: -10px;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background:
    radial-gradient(circle, #ffd85a 0 5px, transparent 6px),
    conic-gradient(#ff7b8c 0 20%, #fff 20% 32%, #ff7b8c 32% 52%, #fff 52% 64%, #ff7b8c 64% 84%, #fff 84%);
}

.legal-flower-one {
  right: clamp(250px, 27vw, 390px);
}

.legal-flower-two {
  right: clamp(42px, 7vw, 96px);
  transform: scale(0.82);
}

.legal-flower-three {
  right: clamp(150px, 17vw, 240px);
  transform: scale(0.7);
}

.site-footer {
  position: relative;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 24px clamp(18px, 5vw, 72px);
  background: #17385a;
  color: var(--white);
  font-weight: 800;
}

.site-footer a {
  text-decoration: none;
}

.cookie-banner {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 50;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  width: min(760px, calc(100% - 36px));
  padding: 20px;
  border: 1px solid rgba(47, 140, 85, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 28px 70px rgba(33, 64, 95, 0.22);
}

.cookie-banner[hidden] {
  display: none;
}

.cookie-banner strong {
  display: block;
  margin-bottom: 6px;
  font-family: "Baloo 2", cursive;
  font-size: 1.45rem;
}

.cookie-banner p {
  margin: 0 0 12px;
}

.cookie-actions {
  display: grid;
  gap: 10px;
  align-content: center;
}

@media (max-width: 980px) {
  .hero,
  .intro-grid,
  .contact-section,
  .meadow-section {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-card {
    max-width: 440px;
    justify-self: center;
  }

  .quick-info,
  .offer-grid,
  .testimonial-grid,
  .legal-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .meadow-copy {
    max-width: none;
  }
}

@media (max-width: 720px) {
  body {
    font-size: 16px;
  }

  .nav-toggle {
    display: block;
  }

  .brand {
    gap: 9px;
  }

  .brand img {
    width: 50px;
    height: 50px;
  }

  .brand-text strong {
    font-size: 1.18rem;
  }

  .brand-text small {
    max-width: 170px;
    font-size: 0.56rem;
  }

  .sun {
    top: 98px;
    right: 22px;
    width: 74px;
    height: 74px;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 8px);
    right: 18px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    width: min(260px, calc(100vw - 36px));
    padding: 12px;
    border-radius: 8px;
    background: var(--white);
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: flex;
  }

  .hero {
    padding-top: 44px;
  }

  .hero-actions,
  .contact-links {
    align-items: stretch;
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .quick-info,
  .offer-grid,
  .gallery,
  .location-grid,
  .testimonial-grid,
  .legal-grid {
    grid-template-columns: 1fr;
  }

  .quick-info {
    margin-top: -62px;
  }

  .quick-info::before {
    top: -128px;
    bottom: -34px;
    height: auto;
    background:
      url("assets/images/hero-meadow.svg") center top / 100% 255px no-repeat,
      linear-gradient(180deg, rgba(111, 190, 69, 0) 0 136px, #86d265 222px, #58b540 100%);
  }

  .quick-info::after {
    bottom: -92px;
    height: 150px;
    background: linear-gradient(180deg, rgba(88, 181, 64, 0.86), rgba(244, 251, 239, 0));
  }

  .gallery-large {
    grid-column: auto;
    grid-row: auto;
  }

  .gallery figure {
    min-height: 250px;
  }

  .meadow-section {
    min-height: 620px;
    align-items: start;
  }

  .meadow-copy {
    padding: 22px;
  }

  .meadow-rainbow {
    left: 20px;
    bottom: 90px;
    transform: scale(0.72);
    transform-origin: bottom left;
  }

  .meadow-tree-one {
    left: 56%;
    bottom: 108px;
    transform: scale(0.78);
  }

  .meadow-tree-two {
    display: none;
  }

  .child-one {
    left: 42%;
  }

  .child-two {
    left: 52%;
  }

  .cookie-banner {
    right: 12px;
    bottom: 12px;
    grid-template-columns: 1fr;
    width: calc(100% - 24px);
  }

  .cookie-actions {
    grid-template-columns: 1fr;
  }
}
