:root {
  color-scheme: light;
  --ink: #1f2a25;
  --muted: #66756d;
  --paper: #f6f7f1;
  --surface: #fffef9;
  --line: #dde4d8;
  --sage: #6f8f78;
  --sage-dark: #3f6650;
  --mint: #dfeee5;
  --sand: #d8bd8c;
  --shadow: 0 20px 55px rgba(31, 42, 37, 0.13);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
}

a {
  color: inherit;
}

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

.site-header {
  position: sticky;
  z-index: 20;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 16px clamp(18px, 5vw, 70px);
  background: rgba(246, 247, 241, 0.9);
  border-bottom: 1px solid rgba(221, 228, 216, 0.78);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  text-decoration: none;
}

.brand-mark {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--sage-dark);
  color: #fff;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 700;
}

.brand strong,
.brand small {
  display: block;
}

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

.brand small {
  color: var(--muted);
  font-size: 0.78rem;
}

.nav {
  display: flex;
  gap: clamp(14px, 3vw, 30px);
  color: var(--muted);
  font-size: 0.94rem;
}

.nav a {
  text-decoration: none;
}

.nav a:hover {
  color: var(--sage-dark);
}

.hero {
  min-height: calc(100svh - 77px);
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(340px, 1.08fr);
  align-items: center;
  gap: clamp(32px, 6vw, 86px);
  padding: clamp(42px, 7vw, 88px) clamp(18px, 5vw, 70px);
}

.hero-copy {
  max-width: 640px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--sage-dark);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.04;
}

h1,
h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 700;
}

h1 {
  max-width: 11ch;
  font-size: clamp(3.1rem, 8vw, 6.8rem);
}

h2 {
  max-width: 13ch;
  font-size: clamp(2.2rem, 5vw, 4.2rem);
}

h3 {
  font-size: 1.16rem;
}

.hero-copy p:not(.eyebrow),
.intro p,
.price-copy p,
.contact p {
  max-width: 58ch;
  color: var(--muted);
  font-size: clamp(1rem, 2vw, 1.18rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--sage-dark);
  border-radius: 6px;
  padding: 12px 18px;
  font-weight: 850;
  text-decoration: none;
}

.button.primary {
  background: var(--sage-dark);
  color: #fff;
}

.button.secondary {
  background: rgba(255, 255, 255, 0.76);
}

.hero-visual {
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--surface);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.hero-visual::before {
  content: "";
  display: block;
  height: 28px;
  background:
    radial-gradient(circle at 18px 50%, #e38f86 0 4px, transparent 5px),
    radial-gradient(circle at 34px 50%, #ddc078 0 4px, transparent 5px),
    radial-gradient(circle at 50px 50%, #7eb28d 0 4px, transparent 5px),
    linear-gradient(90deg, #fff, #eff5ed);
  border-bottom: 1px solid var(--line);
}

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

.quick-info {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border-block: 1px solid var(--line);
}

.quick-info div {
  min-height: 128px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 24px clamp(18px, 5vw, 70px);
  background: var(--surface);
}

.quick-info strong {
  font-family: Georgia, "Times New Roman", serif;
  color: var(--sage-dark);
  font-size: clamp(1.8rem, 4vw, 3rem);
  line-height: 1;
}

.quick-info span {
  margin-top: 8px;
  color: var(--muted);
}

.section {
  padding: clamp(64px, 9vw, 118px) clamp(18px, 5vw, 70px);
}

.intro,
.prices,
.contact {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(300px, 1.1fr);
  gap: clamp(32px, 6vw, 90px);
  align-items: start;
}

.section-head {
  margin-bottom: 24px;
}

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

.service-grid article {
  min-height: 250px;
  display: flex;
  flex-direction: column;
  justify-content: end;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  padding: clamp(20px, 3vw, 30px);
  box-shadow: 0 12px 34px rgba(31, 42, 37, 0.07);
}

.service-grid span {
  margin-bottom: auto;
  color: var(--sand);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2.4rem;
}

.service-grid p {
  color: var(--muted);
}

.prices {
  background: var(--sage-dark);
  color: #fff;
}

.prices .eyebrow,
.prices h2 {
  color: #fff;
}

.price-copy p {
  color: #dce7df;
}

.price-list {
  display: grid;
  gap: 1px;
  background: rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.price-list div {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 22px;
  background: #4b735c;
}

.price-list strong {
  white-space: nowrap;
  color: #f3dfa6;
}

.contact-box {
  display: grid;
  gap: 8px;
  margin: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  padding: clamp(22px, 4vw, 34px);
  box-shadow: var(--shadow);
  font-style: normal;
}

.contact-box strong {
  font-size: 1.25rem;
}

.contact-box a:not(.button) {
  color: var(--sage-dark);
  text-decoration: none;
}

.contact-box .button {
  margin-top: 14px;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 34px clamp(18px, 5vw, 70px) 46px;
  color: var(--muted);
  border-top: 1px solid var(--line);
}

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

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

  .hero {
    min-height: 0;
  }

  .quick-info,
  .service-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .nav {
    width: 100%;
    justify-content: space-between;
  }

  .price-list div,
  .site-footer {
    flex-direction: column;
  }
}
