* {
  box-sizing: border-box;
}

:root {
  --bg: #fbfaf7;
  --surface: #ffffff;
  --surface-2: #f4efe7;
  --surface-3: #f8f5ef;
  --text: #24211f;
  --muted: #6e6861;
  --line: #e8dfd3;
  --accent: #9a6a3a;
  --accent-dark: #74491f;
  --footer: #f2ece4;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.6;
  background: var(--bg);
}

a {
  color: inherit;
  text-decoration: none;
}

p {
  margin-top: 0;
}

h1,
h2,
h3 {
  margin-top: 0;
  line-height: 1.15;
}

h1 {
  margin-bottom: 20px;
  font-size: clamp(36px, 5.6vw, 62px);
  letter-spacing: -0.035em;
}

h2 {
  margin-bottom: 16px;
  font-size: clamp(25px, 3.5vw, 36px);
  letter-spacing: -0.03em;
}

h3 {
  margin-bottom: 10px;
  font-size: 21px;
}

.container {
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto;
}

.narrow {
  width: min(850px, calc(100% - 40px));
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(10px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
  gap: 24px;
}

.logo {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.01em;
  white-space: nowrap;
}

.nav {
  display: flex;
  align-items: center;
  gap: 16px;
  color: var(--muted);
  font-size: 15px;
}

.nav a {
  padding: 7px 10px;
  border-radius: 999px;
  border-bottom: 0;
}

.nav a:hover,
.nav a.is-active {
  color: var(--accent);
  background: #f7efe6;
}

.menu-toggle {
  display: none;
  padding: 9px 14px;
  border: 1px solid var(--line);
  border-radius: 4px;
  color: var(--text);
  font: inherit;
  background: var(--surface);
}

.hero {
  padding: 86px 0 78px;
  background:
    radial-gradient(circle at top left, rgba(154, 106, 58, 0.16), transparent 34%),
    linear-gradient(135deg, #fffaf2, #f7efe6),
    var(--surface-2);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(300px, 0.75fr);
  gap: 52px;
  align-items: center;
}

.lead {
  max-width: 720px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.75;
}

.eyebrow,
.section-label {
  margin: 0 0 12px;
  color: var(--accent);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 24px;
  border: 1px solid var(--accent);
  border-radius: 999px;
  color: #ffffff;
  font: inherit;
  font-weight: 700;
  background: var(--accent);
  cursor: pointer;
}

.button:hover {
  background: var(--accent-dark);
}

.button-light {
  color: var(--accent);
  background: #ffffff;
}

.button-light:hover {
  color: #ffffff;
  background: var(--accent);
}

.info-panel,
.card,
.project-card,
.contact-card,
.contact-form {
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--surface);
  box-shadow: 0 16px 40px rgba(72, 53, 35, 0.06);
}

.info-panel {
  padding: 32px;
}

.facts {
  display: grid;
  gap: 18px;
  margin: 0;
}

.facts div {
  padding: 16px 0 0;
  border-top: 1px solid var(--line);
}

.facts dt {
  color: var(--muted);
  font-size: 14px;
}

.facts dd {
  margin: 4px 0 0;
  font-weight: 700;
}

.section {
  padding: 72px 0;
}

.section-muted {
  background: var(--surface-3);
}

.section-head {
  margin-bottom: 28px;
}

.split,
.contact-layout {
  display: grid;
  grid-template-columns: minmax(240px, 0.8fr) minmax(0, 1.2fr);
  gap: 48px;
  align-items: start;
}

.text-block {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.75;
}

.text-link {
  color: var(--accent);
  font-weight: 700;
}

.cards {
  display: grid;
  gap: 24px;
}

.cards-2 {
  grid-template-columns: repeat(2, 1fr);
}

.cards-3 {
  grid-template-columns: repeat(3, 1fr);
}

.card,
.project-card {
  display: block;
  padding: 28px;
  height: 100%;
}

.card span,
.service-row span,
.process span {
  display: inline-block;
  margin-bottom: 14px;
  color: var(--accent);
  font-weight: 700;
}

.card p,
.project-card p,
.project-card li,
.service-row p,
.process p,
.timeline p,
.contact-card p {
  color: var(--muted);
  line-height: 1.7;
}

.card-link {
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.card-link:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 55px rgba(53, 42, 32, 0.13);
}

.page-hero {
  padding: 70px 0;
  background:
    radial-gradient(circle at top right, rgba(154, 106, 58, 0.12), transparent 32%),
    var(--surface-2);
}

.service-list {
  display: grid;
  gap: 18px;
}

.service-row {
  display: grid;
  grid-template-columns: minmax(220px, 0.8fr) minmax(0, 1.2fr);
  gap: 28px;
  align-items: start;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--surface);
}

.service-row h2 {
  margin-bottom: 0;
  font-size: clamp(24px, 3vw, 34px);
}

.timeline,
.process {
  display: grid;
  gap: 22px;
}

.timeline-item {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  gap: 18px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--surface);
}

.timeline-item span,
.process span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  color: #ffffff;
  background: var(--accent);
}

.process {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.process article {
  position: relative;
  flex: 1 1 260px;
  max-width: 360px;
  min-height: 220px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--surface);
  box-shadow: 0 14px 34px rgba(72, 53, 35, 0.055);
}

.process h2 {
  margin-bottom: 12px;
  font-size: clamp(23px, 2.4vw, 30px);
}

.project-meta {
  margin-bottom: 16px;
  color: var(--accent);
  font-size: 14px;
  font-weight: 700;
}

.project-card ul {
  margin: 18px 0 0;
  padding-left: 20px;
}

.cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 36px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: var(--surface);
  box-shadow: 0 14px 34px rgba(72, 53, 35, 0.055);
}

.cta p {
  margin-bottom: 0;
  color: var(--muted);
}

.contact-card,
.contact-form {
  padding: 32px;
}

.contact-list p {
  margin-bottom: 8px;
}

.map-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 220px;
  margin-top: 24px;
  border: 1px dashed #cbbba7;
  border-radius: 14px;
  color: var(--muted);
  background: var(--surface-3);
}

.contact-form {
  display: grid;
  gap: 16px;
}

.contact-form label {
  display: grid;
  gap: 6px;
  color: var(--text);
  font-weight: 700;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid #d4cabe;
  border-radius: 10px;
  color: var(--text);
  font: inherit;
  background: #ffffff;
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  border-color: var(--accent);
  outline: none;
  box-shadow: 0 0 0 3px rgba(122, 76, 32, 0.14);
}

.form-message {
  min-height: 24px;
  margin: 0;
  color: #2d6a35;
  font-weight: 700;
}

.site-footer {
  padding: 42px 0;
  color: var(--text);
  background: var(--footer);
  border-top: 1px solid var(--line);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr;
  gap: 28px;
}

.footer-grid p {
  margin: 8px 0 0;
  color: var(--muted);
}

.footer-grid a {
  display: block;
  margin-top: 8px;
  color: var(--muted);
}

.footer-grid a:hover {
  color: var(--accent);
}

@media (max-width: 980px) {
  .hero-grid,
  .split,
  .contact-layout,
  .service-row,
  .cards-2,
  .cards-3,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .process {
    justify-content: flex-start;
  }
}

@media (max-width: 760px) {
  h1 {
    font-size: 38px;
  }

  .header-inner {
    min-height: auto;
    padding: 16px 0;
    flex-wrap: wrap;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .nav {
    display: none;
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
    padding-top: 12px;
  }

  .nav.is-open {
    display: flex;
  }

  .hero,
  .page-hero {
    padding: 50px 0;
  }

  .section {
    padding: 48px 0;
  }

  .cta {
    align-items: flex-start;
    flex-direction: column;
  }

  .process {
    display: grid;
    grid-template-columns: 1fr;
  }

  .process article {
    max-width: none;
    min-height: auto;
  }
}
