* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: #f5efe6;
  color: #1f1c18;
  line-height: 1.6;
}

a {
  color: inherit;
}

.header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 7vw;
  background: rgba(245, 239, 230, 0.88);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(31, 28, 24, 0.08);
}

.brand {
  font-weight: 800;
  font-size: 1.15rem;
  text-decoration: none;
  letter-spacing: -0.04em;
}

.nav {
  display: flex;
  gap: 24px;
}

.nav a {
  text-decoration: none;
  opacity: 0.7;
  font-size: 0.95rem;
}

.nav a:hover {
  opacity: 1;
}

.hero {
  min-height: 88vh;
  display: flex;
  align-items: center;
  padding: 8vw 7vw;
  background:
    radial-gradient(circle at 15% 18%, rgba(220, 167, 94, 0.38), transparent 28%),
    radial-gradient(circle at 78% 22%, rgba(120, 145, 165, 0.35), transparent 30%),
    linear-gradient(135deg, #f5efe6, #e7d9c8);
}

.hero-inner {
  max-width: 1050px;
}

.label {
  margin: 0 0 16px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.75rem;
  color: #8b6240;
  font-weight: 800;
}

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

h1 {
  max-width: 1100px;
  font-size: clamp(3.2rem, 8vw, 7.5rem);
  line-height: 0.92;
  letter-spacing: -0.08em;
  margin-bottom: 24px;
}

h2 {
  font-size: clamp(2.1rem, 5vw, 4.2rem);
  line-height: 1;
  letter-spacing: -0.06em;
  margin-bottom: 28px;
}

h3 {
  font-size: 1.35rem;
  letter-spacing: -0.035em;
}

.intro {
  max-width: 680px;
  font-size: 1.2rem;
  color: #57504a;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.btn {
  display: inline-block;
  padding: 14px 22px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 800;
}

.btn.dark {
  background: #1f1c18;
  color: #fff;
}

.btn.light {
  border: 1px solid rgba(31, 28, 24, 0.25);
}

.section {
  padding: 88px 7vw;
}

.about {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 70px;
  align-items: start;
}

.text p {
  font-size: 1.08rem;
  color: #57504a;
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 34px;
}

.card {
  padding: 20px;
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.52);
  border: 1px solid rgba(31, 28, 24, 0.08);
  box-shadow: 0 22px 60px rgba(31, 28, 24, 0.06);
}

.image {
  height: 275px;
  border-radius: 24px;
  margin-bottom: 22px;
}

.sky {
  background: linear-gradient(135deg, #526b83, #c89f73, #f0dec4);
}

.flower {
  background: linear-gradient(135deg, #596341, #ce9b93, #f1e3d6);
}

.portrait {
  background: linear-gradient(135deg, #2a2722, #865c43, #e2bd97);
}

.services {
  background: #ebe0d1;
}

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

.service-grid div {
  background: #f7f1e9;
  border-radius: 26px;
  padding: 30px;
}

.statement {
  padding: 110px 7vw;
  background: #1f1c18;
  color: #f5efe6;
  text-align: center;
}

.statement p {
  max-width: 900px;
  margin: 0 auto;
  font-size: clamp(2rem, 5vw, 4.5rem);
  line-height: 1.02;
  letter-spacing: -0.06em;
}

.contact {
  text-align: center;
}

.contact h2 {
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}

footer {
  padding: 28px 7vw;
  text-align: center;
  color: #6b6258;
}

@media (max-width: 850px) {
  .header {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
  }

  .nav {
    flex-wrap: wrap;
    gap: 14px;
  }

  .about,
  .cards,
  .service-grid {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 64px 6vw;
  }

  .image {
    height: 220px;
  }
}
