:root {
  --ink: #282523;
  --muted: #6b625c;
  --line: #e6dfd8;
  --paper: #fbfaf7;
  --soft: #f1ece5;
  --sage: #6f8073;
  --sage-dark: #415449;
  --clay: #a66f5d;
  --white: #ffffff;
  --shadow: 0 18px 45px rgba(44, 35, 29, 0.1);
}

* {
  box-sizing: border-box;
}

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

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  min-height: 126px;
  background: rgba(251, 250, 247, 0.95);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.topbar,
.nav,
.section,
.footer-grid {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

.topbar {
  display: flex;
  justify-content: flex-end;
  gap: 20px;
  min-height: 34px;
  padding: 8px 0 8px 174px;
  color: var(--muted);
  font-size: 0.9rem;
}

.topbar a,
nav a,
.footer-links a {
  text-decoration: none;
}

.nav {
  position: relative;
  display: flex;
  align-items: center;
  gap: 24px;
  min-height: 92px;
  padding: 14px 0 14px 174px;
}

.brand {
  position: absolute;
  left: 0;
  top: -34px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.brand img {
  width: 150px;
  height: 150px;
  object-fit: contain;
}

nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  flex: 1;
  color: var(--muted);
  font-weight: 600;
}

nav a:hover,
.text-link:hover,
.footer-links a:hover {
  color: var(--sage-dark);
}

.menu-button {
  display: none;
}

.primary,
.secondary,
.book-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 10px 18px;
  border: 1px solid transparent;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 800;
  cursor: pointer;
}

.primary,
.book-button {
  color: var(--white);
  background: var(--sage-dark);
}

.secondary {
  color: var(--sage-dark);
  background: var(--white);
  border-color: var(--line);
}

.block {
  width: 100%;
}

.hero {
  min-height: 620px;
  display: grid;
  align-items: end;
  background:
    linear-gradient(90deg, rgba(35, 30, 27, 0.78), rgba(35, 30, 27, 0.38), rgba(35, 30, 27, 0.06)),
    var(--hero-image) center / cover;
}

.hero-content {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  padding: 96px 0 72px;
  color: var(--white);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--clay);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #f2cbbd;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 820px;
  margin-bottom: 20px;
  font-size: clamp(2.4rem, 6vw, 4.9rem);
  line-height: 1.02;
  letter-spacing: 0;
}

h2 {
  font-size: clamp(1.8rem, 3vw, 2.7rem);
  line-height: 1.14;
  letter-spacing: 0;
}

h3 {
  font-size: 1.14rem;
  line-height: 1.25;
}

.lead {
  max-width: 640px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.22rem;
}

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

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 0;
  margin: 32px 0 0;
  list-style: none;
}

.hero-points li {
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.12);
}

.section {
  padding: 76px 0;
}

.calm-band {
  width: 100%;
  background: var(--soft);
}

.calm-band > * {
  width: min(1120px, calc(100% - 32px));
  margin-left: auto;
  margin-right: auto;
}

.section-head {
  max-width: 720px;
  margin-bottom: 34px;
}

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

.service-card,
.contact-panel,
.contact-form,
.contact-aside,
.price-list {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.service-card {
  padding: 24px;
}

.card-kicker {
  display: block;
  margin-bottom: 10px;
  color: var(--clay);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.service-card p,
.page-title p,
.section-head p,
.prose p,
.contact-panel p,
.contact-aside p {
  color: var(--muted);
}

.service-card a,
.text-link {
  color: var(--sage-dark);
  font-weight: 800;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.blog-grid.compact {
  grid-template-columns: 1fr;
}

.blog-card p {
  margin-bottom: 18px;
}

.blog-card {
  overflow: hidden;
}

.blog-card-image {
  display: block;
  margin: -24px -24px 20px;
}

.blog-card-image img,
.article-image img {
  display: block;
  width: 100%;
  height: auto;
}

.blog-card-image img {
  aspect-ratio: 1.91 / 1;
  object-fit: cover;
}

.article-image {
  width: min(1120px, calc(100% - 32px));
  margin: 42px auto 0;
}

.article-image img {
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.split,
.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.78fr);
  gap: 32px;
  align-items: start;
}

.page-title {
  position: relative;
  width: 100%;
  margin: 0;
  padding: 92px 0 58px;
  overflow: hidden;
  background:
    radial-gradient(circle at 18% 18%, rgba(255, 255, 255, 0.72), transparent 28%),
    radial-gradient(circle at 82% 12%, rgba(166, 111, 93, 0.22), transparent 30%),
    linear-gradient(135deg, #f7f1ea 0%, #e8eee8 48%, #f4dfd6 100%);
  border-bottom: 1px solid rgba(111, 128, 115, 0.18);
}

.page-title::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 78px;
  background: linear-gradient(180deg, rgba(251, 250, 247, 0), var(--paper));
  pointer-events: none;
}

.page-title > * {
  position: relative;
  z-index: 1;
  width: min(1120px, calc(100% - 32px));
  margin-left: auto;
  margin-right: auto;
}

.page-title h1 {
  color: var(--ink);
}

.page-title p {
  max-width: 720px;
  font-size: 1.13rem;
}

.prose {
  max-width: 760px;
  font-size: 1.08rem;
}

.article-body section + section {
  margin-top: 34px;
}

.article-body h2 {
  font-size: clamp(1.35rem, 2vw, 1.8rem);
}

.narrow {
  max-width: 900px;
}

.price-list {
  overflow: hidden;
}

.price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 22px;
  border-bottom: 1px solid var(--line);
}

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

.price-row span {
  display: block;
  color: var(--muted);
  font-size: 0.92rem;
}

.price-row b {
  color: var(--sage-dark);
  white-space: nowrap;
}

.contact-panel,
.contact-aside {
  padding: 28px;
}

.contact-form {
  padding: 28px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

label {
  display: grid;
  gap: 7px;
  margin-bottom: 14px;
  font-weight: 700;
}

input,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 12px 13px;
  color: var(--ink);
  background: #fffdfa;
  font: inherit;
}

textarea {
  resize: vertical;
}

.check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--muted);
  font-weight: 500;
}

.check input {
  width: auto;
  margin-top: 6px;
}

.hp {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-alert {
  margin-bottom: 18px;
  padding: 12px 14px;
  border-radius: 8px;
  font-weight: 700;
}

.form-alert.success {
  color: #244734;
  background: #e4f1e9;
}

.form-alert.error {
  color: #743228;
  background: #f6e3df;
}

.map iframe {
  display: block;
  width: 100%;
  height: 360px;
  border: 0;
}

.site-footer {
  position: relative;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(36, 42, 37, 0.95), rgba(36, 42, 37, 0.82)),
    var(--footer-image) center / cover;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 1fr;
  gap: 36px;
  padding: 54px 0;
}

.footer-grid h2 {
  font-size: 1.1rem;
}

.footer-grid p,
.footer-grid a {
  color: rgba(255, 255, 255, 0.78);
}

.footer-links {
  display: grid;
  gap: 8px;
}

@media (max-width: 860px) {
  .site-header {
    min-height: 0;
  }

  .topbar {
    justify-content: flex-start;
    flex-wrap: wrap;
    padding-left: 0;
  }

  .nav {
    flex-wrap: wrap;
    min-height: 0;
    padding-left: 0;
  }

  .brand {
    position: static;
  }

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

  .menu-button {
    display: inline-flex;
    margin-left: auto;
    min-height: 40px;
    padding: 8px 12px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--white);
    font-weight: 800;
  }

  nav {
    display: none;
    flex-basis: 100%;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    padding: 8px 0;
  }

  nav.open {
    display: flex;
  }

  .book-button {
    width: 100%;
  }

  .hero {
    min-height: 680px;
  }

  .service-grid,
  .blog-grid,
  .split,
  .contact-layout,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .topbar,
  .nav,
  .section,
  .footer-grid,
  .hero-content {
    width: min(100% - 24px, 1120px);
  }

  .page-title > * {
    width: min(100% - 24px, 1120px);
  }

  .hero-content {
    padding-bottom: 42px;
  }

  .section {
    padding: 54px 0;
  }

  .page-title {
    padding-top: 54px;
  }
}
