:root {
  --sky: #dff3ff;
  --grass: #d6efc2;
  --leaf: #34623f;
  --leaf-dark: #1f3e28;
  --sun: #ffd76a;
  --soil: #8b5e3c;
  --cream: #fff9ef;
  --card: rgba(255, 249, 239, 0.82);
  --shadow: 0 20px 50px rgba(31, 62, 40, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Outfit", sans-serif;
  color: var(--leaf-dark);
  background:
    radial-gradient(circle at top left, rgba(255, 215, 106, 0.75), transparent 22rem),
    radial-gradient(circle at bottom right, rgba(214, 239, 194, 0.9), transparent 26rem),
    linear-gradient(180deg, #bfe7ff 0%, #eff9ff 36%, #f5f2df 100%);
}

.page-shell {
  min-height: 100vh;
}

.hero,
.section {
  width: min(1100px, calc(100% - 2rem));
  margin: 0 auto;
}

.hero {
  padding: 1.25rem 0 2rem;
}

.topbar {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
  padding: 1rem 1.25rem;
  border-radius: 999px;
  background: rgba(255, 249, 239, 0.72);
  backdrop-filter: blur(14px);
  box-shadow: var(--shadow);
}

.brand {
  font-weight: 800;
  letter-spacing: 0.02em;
}

.nav-phone,
.contact-number,
.contact-email {
  color: var(--leaf-dark);
  text-decoration: none;
  font-weight: 700;
}

.hero-content {
  display: grid;
  grid-template-columns: 1.35fr 0.9fr;
  gap: 2rem;
  align-items: center;
  padding: 3.5rem 0 2rem;
}

.eyebrow,
.card-badge,
.pin {
  font-family: "Patrick Hand", cursive;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.eyebrow {
  margin: 0 0 0.5rem;
  color: var(--soil);
  font-size: 1.1rem;
}

h1,
h2,
h3,
.contact-number {
  margin: 0;
}

h1 {
  font-size: clamp(2.7rem, 6vw, 5.3rem);
  line-height: 0.94;
  max-width: 11ch;
}

.intro,
.note,
.service p,
.contact-copy,
.flyer-copy,
.flyer-note p,
.mini-contact,
.steps {
  font-size: 1.05rem;
  line-height: 1.6;
}

.intro {
  max-width: 52ch;
  margin: 1rem 0 0;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 1.5rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.95rem 1.35rem;
  border-radius: 999px;
  font-weight: 700;
  text-decoration: none;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  background: var(--leaf);
  color: white;
  box-shadow: 0 12px 24px rgba(52, 98, 63, 0.28);
}

.button-secondary {
  background: rgba(255, 249, 239, 0.86);
  color: var(--leaf-dark);
  border: 2px solid rgba(52, 98, 63, 0.14);
}

.note {
  margin-top: 1rem;
  color: rgba(31, 62, 40, 0.78);
}

.hero-card,
.service,
.contact-card,
.flyer-card,
.flyer-note {
  background: var(--card);
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 28px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
}

.hero-card {
  padding: 1.75rem;
  position: relative;
  overflow: hidden;
}

.hero-card::after {
  content: "";
  position: absolute;
  inset: auto -2rem -2rem auto;
  width: 9rem;
  height: 9rem;
  border-radius: 50%;
  background: rgba(255, 215, 106, 0.65);
}

.card-badge {
  display: inline-block;
  padding: 0.35rem 0.75rem;
  margin-bottom: 0.9rem;
  border-radius: 999px;
  background: rgba(214, 239, 194, 0.95);
  color: var(--leaf);
}

.service-list {
  padding-left: 1.1rem;
  line-height: 1.9;
  font-weight: 600;
}

.section {
  padding: 2rem 0 4rem;
}

.section-heading {
  margin-bottom: 1.5rem;
}

.section-heading h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  max-width: 14ch;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.service,
.contact-card,
.flyer-card,
.flyer-note {
  padding: 1.5rem;
}

.service h3 {
  margin-bottom: 0.75rem;
  font-size: 1.4rem;
}

.contact-card {
  max-width: 38rem;
}

.contact-label,
.flyer-title {
  margin: 0 0 0.4rem;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--soil);
}

.contact-number {
  display: inline-block;
  font-size: clamp(2rem, 5vw, 3.5rem);
  margin-bottom: 0.75rem;
}

.email-label {
  margin-top: 1.25rem;
}

.contact-email {
  display: inline-block;
  font-size: clamp(1.1rem, 3vw, 1.5rem);
  word-break: break-word;
}

@media (max-width: 820px) {
  .topbar,
  .hero-content,
  .service-grid {
    grid-template-columns: 1fr;
  }

  .topbar,
  .hero-actions {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }

  .hero {
    padding-top: 0.75rem;
  }

  .hero-content {
    display: grid;
    padding-top: 2rem;
  }

  h1 {
    max-width: 12ch;
  }
}
