:root {
  --ink: #191b1f;
  --muted: #66707a;
  --line: #dde2e8;
  --paper: #f3f6fa;
  --warm: #f2eee8;
  --panel: #ebe6df;
  --dark: #080a0d;
  --accent: #8d6f58;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, Arial, sans-serif;
  font-size: 15px;
  line-height: 1.55;
}

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

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

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

h1,
h2 {
  font-family: "Playfair Display", Georgia, serif;
  font-weight: 600;
  letter-spacing: 0;
}

h1 {
  max-width: 760px;
  margin-bottom: 12px;
  font-size: clamp(42px, 6vw, 76px);
  line-height: 0.98;
}

h2 {
  margin-bottom: 12px;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.05;
}

h3 {
  margin-bottom: 4px;
  font-size: 17px;
}

p {
  color: var(--muted);
}

.site-header {
  position: absolute;
  z-index: 10;
  top: 0;
  left: 0;
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  padding: 24px 32px;
}

.logo {
  display: inline-flex;
  flex-direction: column;
  color: var(--ink);
  text-transform: uppercase;
}

.logo span {
  font-weight: 800;
  font-size: 24px;
  line-height: 0.85;
  letter-spacing: 0;
}

.logo small {
  margin-top: 4px;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0;
}

.nav {
  display: flex;
  gap: 34px;
  font-size: 13px;
  font-weight: 600;
}

.hero {
  position: relative;
  min-height: 540px;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: #ddd7cf;
}

.hero::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(90deg, rgba(242, 246, 250, 0.78), rgba(242, 246, 250, 0.3) 48%, rgba(242, 246, 250, 0.06));
}

.hero img {
  position: absolute;
  inset: 0;
  height: 100%;
  object-fit: cover;
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(980px, calc(100% - 40px));
  padding-top: 42px;
}

.hero-content p {
  max-width: 560px;
  margin-bottom: 20px;
  color: #343a40;
  font-size: 18px;
}

.btn {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  justify-content: center;
  border: 0;
  background: #050608;
  color: #fff;
  padding: 0 18px;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
}

.btn-small {
  min-height: 34px;
  padding: 0 14px;
  font-size: 12px;
}

.section-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 540px);
  gap: clamp(32px, 6vw, 80px);
  align-items: center;
  padding: 68px 36px;
}

.copy-block {
  max-width: 560px;
}

.copy-block article {
  max-width: 520px;
  margin: 0 0 22px 18px;
  padding-left: 16px;
  border-left: 2px solid #c8ccd1;
}

.copy-block article p {
  margin-bottom: 0;
}

.rounded-img,
.project-card img {
  border-radius: 6px;
}

.wide-image img {
  height: 300px;
  object-fit: cover;
  object-position: center;
}

.values {
  padding: 92px 32px 100px;
}

.center {
  margin: 0 auto 54px;
  text-align: center;
}

.center p {
  margin-bottom: 0;
}

.value-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  max-width: 1280px;
  margin: 0 auto;
}

.value-grid div {
  min-height: 150px;
  background: var(--panel);
  padding: 34px 30px;
}

.value-grid strong {
  display: block;
  margin-bottom: 20px;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 34px;
  line-height: 1;
}

.value-grid span {
  display: block;
  color: #6a625c;
}

.testimonials {
  display: grid;
  grid-template-columns: minmax(0, 1.9fr) minmax(260px, 0.8fr);
  gap: 48px;
  align-items: center;
  background: var(--warm);
  padding: 82px 36px;
}

.reviews {
  display: grid;
  gap: 14px;
}

blockquote {
  margin: 0;
  background: rgba(255, 255, 255, 0.58);
  padding: 28px 30px;
}

blockquote p {
  margin-bottom: 18px;
  color: #2b2d31;
}

cite {
  display: block;
  color: #4c545b;
  font-style: normal;
  font-weight: 700;
}

cite span {
  display: block;
  color: var(--muted);
  font-weight: 400;
}

.compact p {
  max-width: 360px;
}

.projects {
  padding: 92px 36px;
}

.project-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

.project-card {
  overflow: hidden;
  background: #fff;
  border-radius: 6px;
}

.project-card > div {
  padding: 34px 32px;
}

.project-card img {
  height: 260px;
  object-fit: cover;
}

.project-card.split {
  display: grid;
  grid-template-rows: auto 1fr;
}

.faq {
  display: grid;
  grid-template-columns: minmax(260px, 0.8fr) minmax(360px, 1.4fr);
  gap: 60px;
  padding: 18px 36px 96px;
}

.faq-list {
  display: grid;
  gap: 0;
}

details {
  border-bottom: 1px solid var(--line);
  padding: 20px 0;
}

summary {
  position: relative;
  padding-right: 34px;
  font-weight: 700;
  cursor: pointer;
  list-style: none;
}

summary::-webkit-details-marker {
  display: none;
}

summary::after {
  position: absolute;
  right: 0;
  content: "+";
  font-weight: 500;
}

details[open] summary::after {
  content: "-";
}

details p {
  max-width: 680px;
  margin: 14px 0 0;
}

.contact-image img {
  height: 260px;
  object-fit: cover;
  object-position: center 55%;
}

.contact {
  display: grid;
  grid-template-columns: 1.15fr 0.9fr;
  background: #e9eef4;
}

.contact-info,
.contact-form {
  padding: 64px 36px;
}

.contact-info {
  background: #f3f6fa;
}

.map {
  position: relative;
  height: 220px;
  margin: 28px 0 26px;
  overflow: hidden;
  border: 1px solid #ccd6df;
  background:
    linear-gradient(30deg, transparent 46%, rgba(54, 130, 84, 0.35) 47%, transparent 49%),
    linear-gradient(120deg, transparent 46%, rgba(69, 130, 170, 0.35) 47%, transparent 49%),
    linear-gradient(#d8ecdc 0 0);
}

.map::before,
.map::after {
  position: absolute;
  content: "";
  border-radius: 999px;
}

.map::before {
  width: 34px;
  height: 34px;
  top: 78px;
  left: 56%;
  background: #da3d2f;
  transform: translate(-50%, -50%);
}

.map::after {
  width: 14px;
  height: 14px;
  top: 78px;
  left: 56%;
  background: white;
  transform: translate(-50%, -50%);
}

.map span {
  position: absolute;
  top: 118px;
  left: 50%;
  transform: translateX(-50%);
  background: white;
  padding: 6px 10px;
  font-weight: 700;
}

dl {
  margin: 0;
}

dt {
  margin-top: 12px;
  font-weight: 800;
}

dd {
  margin: 0;
  color: var(--muted);
}

.contact-form {
  display: grid;
  gap: 12px;
  align-content: start;
}

.contact-form label span {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid #d9e0e8;
  background: #fff;
  color: var(--ink);
  padding: 13px 14px;
  font: inherit;
}

textarea {
  min-height: 230px;
  resize: vertical;
}

.contact-form .btn {
  justify-self: end;
}

.footer {
  background: var(--dark);
  color: #fff;
  padding: 140px 36px 28px;
}

.footer h2 {
  max-width: 660px;
  margin-bottom: 14px;
  font-size: clamp(30px, 4vw, 46px);
}

.footer p,
.footer a,
.logo-light {
  color: #d7dbe0;
}

.footer-bottom {
  display: grid;
  grid-template-columns: 1fr 140px 140px 140px;
  gap: 34px;
  align-items: start;
  margin-top: 150px;
  padding-bottom: 84px;
  border-bottom: 1px solid #2e343a;
}

.footer nav {
  display: grid;
  gap: 12px;
}

.copyright {
  margin: 24px 0 0;
  font-size: 12px;
}

@media (max-width: 900px) {
  .site-header {
    position: absolute;
    align-items: flex-start;
    padding: 20px;
  }

  .nav {
    max-width: 210px;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 10px 18px;
  }

  .hero {
    min-height: 620px;
    place-items: end start;
    padding-bottom: 58px;
  }

  .hero::after {
    background: linear-gradient(0deg, rgba(242, 246, 250, 0.9), rgba(242, 246, 250, 0.34));
  }

  .hero-content {
    padding-top: 120px;
  }

  .section-grid,
  .testimonials,
  .project-grid,
  .faq,
  .contact,
  .footer-bottom {
    grid-template-columns: 1fr;
  }

  .value-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer-bottom {
    margin-top: 80px;
  }
}

@media (max-width: 560px) {
  body {
    font-size: 14px;
  }

  .site-header,
  .section-grid,
  .values,
  .testimonials,
  .projects,
  .faq,
  .contact-info,
  .contact-form,
  .footer {
    padding-left: 18px;
    padding-right: 18px;
  }

  .logo span {
    font-size: 20px;
  }

  .nav {
    font-size: 12px;
  }

  h1 {
    font-size: 42px;
  }

  h2 {
    font-size: 32px;
  }

  .value-grid {
    grid-template-columns: 1fr;
  }

  .project-card > div,
  blockquote {
    padding: 24px 20px;
  }

  .wide-image img,
  .contact-image img {
    height: 220px;
  }
}
