:root {
  --ink: #221a16;
  --muted: #74645d;
  --soft: #f5eee8;
  --card: #fffaf6;
  --line: rgba(76, 51, 37, 0.14);
  --accent: #b66b42;
  --accent-dark: #8d4c2f;
  --sage: #697766;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(18px, 5vw, 64px);
  background: rgba(251, 247, 242, 0.9);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.brand {
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: 0;
}

.brand span {
  color: var(--accent);
}

.nav {
  display: flex;
  align-items: center;
  gap: 22px;
  color: var(--muted);
  font-size: 0.94rem;
  font-weight: 650;
}

.nav a:hover,
.site-footer a:hover {
  color: var(--accent-dark);
}

.header-cta,
.button,
.contact-form button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  border: 0;
  border-radius: 8px;
  padding: 0 18px;
  font: inherit;
  font-weight: 750;
  cursor: pointer;
}

.header-cta,
.button.primary,
.contact-form button {
  background: var(--accent);
  color: white;
}

.button.secondary {
  background: white;
  color: var(--ink);
  border: 1px solid var(--line);
}

.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
}

.menu-button span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  background: var(--ink);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1.05fr);
  gap: clamp(28px, 6vw, 72px);
  align-items: center;
  max-width: 1180px;
  min-height: calc(100svh - 83px);
  margin: 0 auto;
  padding: clamp(42px, 7vw, 86px) clamp(18px, 5vw, 32px);
}

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

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

h1 {
  max-width: 780px;
  margin-bottom: 24px;
  font-size: clamp(3rem, 7vw, 6.9rem);
  line-height: 0.94;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2rem, 4vw, 3.6rem);
  line-height: 1;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.25rem;
}

.hero-copy p:not(.eyebrow),
.split-section p,
.contact-section p {
  max-width: 620px;
  color: var(--muted);
  font-size: 1.05rem;
}

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

.hero-media {
  position: relative;
  min-height: 540px;
  overflow: hidden;
  border-radius: 8px;
  border: 1px solid var(--line);
  background: var(--soft);
}

.hero-media img {
  height: 100%;
  min-height: 540px;
  object-fit: cover;
}

.hero-card {
  position: absolute;
  right: 18px;
  bottom: 18px;
  display: grid;
  gap: 2px;
  width: min(230px, calc(100% - 36px));
  padding: 18px;
  border-radius: 8px;
  background: rgba(255, 250, 246, 0.94);
  border: 1px solid var(--line);
  box-shadow: 0 18px 42px rgba(42, 28, 20, 0.18);
}

.hero-card span {
  color: var(--muted);
  font-size: 0.92rem;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 clamp(18px, 5vw, 32px) 54px;
  gap: 14px;
}

.trust-strip div,
.service-grid article,
.price-list,
.contact-form {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--card);
}

.trust-strip div {
  padding: 20px;
}

.trust-strip strong,
.trust-strip span {
  display: block;
}

.trust-strip span {
  color: var(--muted);
  font-size: 0.92rem;
}

.section {
  max-width: 1180px;
  margin: 0 auto;
  padding: 72px clamp(18px, 5vw, 32px);
}

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

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

.service-grid article {
  padding: 26px;
}

.service-grid span {
  display: inline-block;
  margin-bottom: 42px;
  color: var(--sage);
  font-weight: 850;
}

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

.split-section,
.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  gap: clamp(24px, 5vw, 58px);
  align-items: start;
}

.price-list {
  padding: 8px;
}

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

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

.price-list span {
  color: var(--muted);
}

.price-list strong {
  white-space: nowrap;
  font-size: 1.2rem;
}

.gallery {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 1fr;
  gap: 16px;
}

.gallery img {
  height: 390px;
  border-radius: 8px;
  border: 1px solid var(--line);
  object-fit: cover;
}

.gallery img:nth-child(2) {
  margin-top: 46px;
}

.contact-section {
  margin-bottom: 40px;
  border-top: 1px solid var(--line);
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: 24px;
}

.contact-form label {
  display: grid;
  gap: 7px;
  color: var(--ink);
  font-size: 0.9rem;
  font-weight: 750;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 13px 14px;
  background: white;
  color: var(--ink);
  font: inherit;
}

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

.site-footer p {
  margin: 0;
}

.site-footer a {
  font-weight: 750;
}

@media (max-width: 860px) {
  .site-header {
    gap: 14px;
  }

  .nav,
  .header-cta {
    display: none;
  }

  .menu-button {
    display: block;
  }

  .nav.is-open {
    position: absolute;
    top: 73px;
    left: 18px;
    right: 18px;
    display: grid;
    gap: 0;
    padding: 8px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--card);
    box-shadow: 0 18px 42px rgba(42, 28, 20, 0.14);
  }

  .nav.is-open a {
    padding: 12px;
  }

  .hero,
  .split-section,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-top: 38px;
  }

  .hero-media,
  .hero-media img {
    min-height: 380px;
  }

  .trust-strip,
  .service-grid,
  .gallery {
    grid-template-columns: 1fr;
  }

  .gallery img,
  .gallery img:nth-child(2) {
    height: 280px;
    margin-top: 0;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 520px) {
  h1 {
    font-size: 3rem;
  }

  .price-list div {
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
  }
}
