:root {
  --ax-bg: #f3efe6;
  --ax-fg: #18211d;
  --ax-accent: #1e725a;
  --ax-muted: #6f7a71;
  --ax-surface: #fffdfa;
  --ax-shell: 1180px;
  --ax-radius: 24px;
  --ax-border: rgba(24, 33, 29, 0.08);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at top left, rgba(30, 114, 90, 0.16), transparent 34%),
    linear-gradient(180deg, #fbf8f2 0%, var(--ax-bg) 100%);
  color: var(--ax-fg);
  font: 400 16px/1.6 "Georgia", "Times New Roman", serif;
}

a {
  color: inherit;
  text-decoration: none;
}

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

.ax-shell {
  width: min(100% - 32px, var(--ax-shell));
  margin: 0 auto;
}

.ax-site-header,
.ax-site-footer {
  padding: 18px 0;
}

.ax-site-header__inner,
.ax-site-footer__inner {
  display: flex;
  gap: 24px;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.ax-site-header__brand {
  display: grid;
  gap: 2px;
}

.ax-site-header__eyebrow {
  font: 600 11px/1.2 Arial, sans-serif;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ax-muted);
}

.ax-site-header__title {
  font-size: 1.05rem;
}

.ax-site-header__nav {
  display: flex;
  gap: 18px;
  font: 600 14px/1.2 Arial, sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.ax-site-header__phone {
  padding: 10px 16px;
  border-radius: 999px;
  background: var(--ax-accent);
  color: #fff;
  font: 600 14px/1.2 Arial, sans-serif;
}

.ax-section {
  padding: 40px 0;
}

.ax-section--hero {
  padding: 64px 0 36px;
}

.ax-section__header {
  display: grid;
  gap: 8px;
  margin-bottom: 24px;
}

.ax-section__kicker {
  margin: 0;
  font: 600 12px/1.2 Arial, sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--ax-accent);
}

.ax-section__title {
  margin: 0;
  max-width: 14ch;
  font-size: clamp(2.3rem, 5vw, 4.8rem);
  line-height: 0.98;
}

.ax-section__lead {
  max-width: 42rem;
  margin: 0;
  color: var(--ax-muted);
  font-size: 1.05rem;
}

.ax-grid {
  display: grid;
  gap: 20px;
}

.ax-grid--cards,
.ax-price-index {
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.ax-card,
.ax-price-index__item {
  height: 100%;
  padding: 24px;
  border: 1px solid var(--ax-border);
  border-radius: var(--ax-radius);
  background: color-mix(in srgb, var(--ax-surface) 92%, white 8%);
  box-shadow: 0 16px 40px rgba(24, 33, 29, 0.04);
}

.ax-card__link {
  display: grid;
  gap: 10px;
  height: 100%;
}

.ax-card__title,
.ax-price-index__item h2 {
  margin: 0;
  font-size: 1.4rem;
}

.ax-card__excerpt {
  margin: 0;
  color: var(--ax-muted);
}

.ax-card__meta {
  margin: auto 0 0;
  font: 600 13px/1.3 Arial, sans-serif;
  color: var(--ax-accent);
}

.ax-price-table {
  display: grid;
  gap: 12px;
}

.ax-price-table__row {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid var(--ax-border);
}

.ax-price-table__row:last-child {
  border-bottom: 0;
}

@media (max-width: 768px) {
  .ax-section--hero {
    padding-top: 42px;
  }

  .ax-site-header__inner,
  .ax-site-footer__inner,
  .ax-site-header__nav,
  .ax-price-table__row {
    align-items: flex-start;
    flex-direction: column;
  }
}
