@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');

:root {
  --cream: #f7f3ec;
  --cream-2: #efe7dc;
  --black: #171717;
  --charcoal: #242424;
  --muted: #6e6a64;
  --line: #e3ded6;
  --white: #ffffff;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: Inter, Arial, sans-serif;
  color: var(--black);
  background: var(--cream);
  letter-spacing: 0.01em;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  height: 86px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 7vw;
  background: rgba(247, 243, 236, 0.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}

.brand img {
  width: 132px;
  height: auto;
  mix-blend-mode: multiply;
}

.nav {
  display: flex;
  gap: clamp(24px, 4vw, 56px);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.nav a { position: relative; padding: 10px 0; }

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 2px;
  width: 0;
  height: 2px;
  background: var(--black);
  transition: width .2s ease;
}

.nav a:hover::after { width: 100%; }

.section { padding: 78px 7vw; }

.container {
  max-width: 1180px;
  margin: 0 auto;
}

.hero {
  min-height: 560px;
  display: grid;
  place-items: center;
  text-align: center;
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(circle at center, rgba(255,255,255,0.78), rgba(247,243,236,0.65) 48%, rgba(239,231,220,0.35));
}

.hero-inner {
  width: min(780px, 100%);
  display: grid;
  justify-items: center;
}

.hero-logo {
  width: min(430px, 84vw);
  mix-blend-mode: multiply;
  margin-bottom: 34px;
}

.eyebrow {
  margin: 0;
  font-size: clamp(1rem, 2vw, 1.42rem);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.32em;
}

.service-line {
  margin: 18px 0 30px;
  color: var(--charcoal);
  font-size: clamp(0.95rem, 1.7vw, 1.1rem);
}

.service-line span { margin: 0 18px; }

.button {
  display: inline-flex;
  align-items: center;
  gap: 20px;
  border: 0;
  background: var(--black);
  color: var(--white);
  padding: 16px 34px;
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  cursor: pointer;
  transition: transform .2s ease, opacity .2s ease;
}

.button:hover {
  transform: translateY(-2px);
  opacity: 0.92;
}

h2 {
  margin: 0;
  text-align: center;
  font-size: 1.25rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
}

.section-line {
  width: 42px;
  height: 2px;
  background: #c8b99f;
  margin: 16px auto 56px;
}

.section-line.left { margin-left: 0; margin-bottom: 32px; }

.services { background: var(--white); }

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

.service-card {
  padding: 0 46px;
  text-align: center;
  border-right: 1px solid var(--line);
}

.service-card:last-child { border-right: 0; }

.icon-circle {
  width: 116px;
  height: 116px;
  margin: 0 auto 28px;
  border-radius: 999px;
  background: var(--cream-2);
  display: grid;
  place-items: center;
}

.icon-circle svg {
  width: 60px;
  height: 60px;
  fill: none;
  stroke: var(--black);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-card h3 {
  margin: 0 0 14px;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.service-card p {
  margin: 0;
  color: var(--charcoal);
  line-height: 1.75;
  font-size: 0.95rem;
}

.why {
  padding: 34px 7vw;
  background: linear-gradient(90deg, var(--cream), var(--cream-2), var(--cream));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  text-align: center;
}

.why-grid div {
  padding: 18px 14px;
  border-right: 1px solid #d4cabc;
  min-height: 76px;
  display: grid;
  place-items: center;
}

.why-grid div:last-child { border-right: 0; }

.why-grid strong {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.about { background: var(--white); }

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}

.logo-panel {
  min-height: 250px;
  display: grid;
  place-items: center;
  background: var(--cream);
}

.logo-panel img {
  width: 220px;
  mix-blend-mode: multiply;
}

.about h2 { text-align: left; }

.about p {
  max-width: 520px;
  color: var(--charcoal);
  line-height: 1.8;
}

.contact { background: var(--white); border-top: 1px solid var(--line); }

.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.4fr;
  gap: 64px;
  align-items: start;
}

.contact-info {
  display: grid;
  gap: 22px;
  font-size: 0.96rem;
}

.contact-info a,
.contact-info span {
  padding-left: 44px;
  position: relative;
}

.contact-info a::before,
.contact-info span::before {
  content: "";
  position: absolute;
  left: 0;
  top: -4px;
  width: 28px;
  height: 28px;
  background: var(--black);
}

.contact-form {
  display: grid;
  gap: 14px;
}

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

input, textarea {
  width: 100%;
  border: 1px solid #cfcac2;
  background: var(--white);
  padding: 15px 16px;
  font: inherit;
  outline: none;
}

input:focus, textarea:focus {
  border-color: var(--black);
}

textarea { resize: vertical; }

.contact-form .button {
  width: fit-content;
  margin-top: 2px;
}

footer {
  min-height: 64px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 28px;
  padding: 24px 7vw;
  background: var(--black);
  color: var(--white);
  font-size: 0.8rem;
}

footer span:not(:last-child)::after {
  content: "|";
  margin-left: 28px;
  color: #777;
}

@media (max-width: 860px) {
  .site-header {
    height: auto;
    padding: 22px 6vw;
    flex-direction: column;
    gap: 18px;
  }

  .nav {
    width: 100%;
    justify-content: space-between;
    gap: 12px;
    font-size: 0.68rem;
  }

  .section { padding: 62px 6vw; }

  .hero { min-height: 500px; }

  .hero-logo { width: min(320px, 86vw); }

  .eyebrow { letter-spacing: 0.18em; }

  .service-line span { margin: 0 8px; }

  .service-grid,
  .about-grid,
  .contact-grid,
  .form-row,
  .why-grid {
    grid-template-columns: 1fr;
  }

  .service-card {
    border-right: 0;
    border-bottom: 1px solid var(--line);
    padding: 42px 0;
  }

  .service-card:first-child { padding-top: 0; }
  .service-card:last-child { border-bottom: 0; padding-bottom: 0; }

  .why-grid div {
    border-right: 0;
    border-bottom: 1px solid #d4cabc;
  }

  .why-grid div:last-child { border-bottom: 0; }

  footer {
    flex-direction: column;
    gap: 8px;
  }

  footer span::after { display: none; }
}
