:root {
  --bg: #fff9fa;
  --rose-50: #f9eef1;
  --rose-100: #f3d9df;
  --rose-300: #d79aa7;
  --rose-500: #a85669;
  --ink: #2e2426;
  --muted: #745f64;
  --line: rgba(168, 86, 105, 0.18);
  --white: #ffffff;
  --shadow: 0 24px 70px rgba(104, 67, 74, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(20px, 5vw, 72px);
  background: rgba(255, 249, 250, 0.82);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: max-content;
}

.brand-mark {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border-radius: 50%;
  background: var(--ink);
  color: var(--white);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 22px;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 15px;
  letter-spacing: 0;
}

.brand small {
  color: var(--muted);
  font-size: 12px;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(18px, 3vw, 36px);
  color: var(--muted);
  font-size: 14px;
}

.nav-links a,
.header-action,
.button {
  transition: transform 160ms ease, color 160ms ease, background 160ms ease, border-color 160ms ease;
}

.nav-links a:hover,
.header-action:hover {
  color: var(--ink);
}

.header-action {
  padding: 10px 17px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.62);
  color: var(--ink);
  font-size: 14px;
  font-weight: 650;
}

.hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  align-items: center;
  padding: 128px clamp(20px, 5vw, 72px) 56px;
  overflow: hidden;
}

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

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(255, 249, 250, 0.97) 0%, rgba(255, 249, 250, 0.87) 34%, rgba(255, 249, 250, 0.32) 66%, rgba(255, 249, 250, 0.1) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 650px;
}

.place,
.section-label {
  margin: 0 0 18px;
  color: var(--rose-500);
  font-size: 13px;
  font-weight: 760;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

h1,
h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  letter-spacing: 0;
}

h1 {
  max-width: 680px;
  margin-bottom: 24px;
  font-size: clamp(48px, 8vw, 92px);
  line-height: 0.94;
}

.hero-copy {
  max-width: 570px;
  margin-bottom: 32px;
  color: var(--muted);
  font-size: clamp(18px, 2vw, 21px);
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 14px 22px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 750;
}

.button:hover,
.header-action:hover {
  transform: translateY(-1px);
}

.button.primary {
  background: var(--ink);
  color: var(--white);
  box-shadow: 0 14px 32px rgba(46, 36, 38, 0.18);
}

.button.secondary {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.68);
  color: var(--ink);
}

.intro,
.services-section,
.contact {
  padding: clamp(72px, 10vw, 128px) clamp(20px, 5vw, 72px);
}

.intro {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(280px, 0.7fr);
  gap: clamp(32px, 8vw, 108px);
  align-items: end;
  background: var(--white);
}

.intro h2,
.section-heading h2,
.contact h2 {
  margin-bottom: 0;
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1.02;
}

.intro > p,
.contact-copy p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 18px;
}

.services-section {
  background: linear-gradient(180deg, var(--rose-50), var(--bg));
}

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

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.service-card {
  min-height: 260px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.76);
  box-shadow: var(--shadow);
}

.service-number {
  color: var(--rose-500);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 42px;
}

.service-card h3 {
  margin-bottom: 12px;
  font-size: 23px;
  line-height: 1.14;
}

.service-card p {
  margin-bottom: 0;
  color: var(--muted);
}

.proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--ink);
  color: var(--white);
}

.proof-item {
  display: grid;
  min-height: 190px;
  align-content: center;
  gap: 6px;
  padding: 38px clamp(20px, 5vw, 72px);
  border-right: 1px solid rgba(255, 255, 255, 0.14);
}

.proof-item:last-child {
  border-right: 0;
}

.proof-item strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(42px, 6vw, 72px);
  font-weight: 500;
  line-height: 1;
}

.proof-item span {
  color: rgba(255, 255, 255, 0.74);
}

.contact {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(300px, 0.6fr);
  gap: clamp(28px, 7vw, 92px);
  align-items: start;
  background: var(--white);
}

.contact h2 {
  margin-bottom: 22px;
}

.contact-panel {
  display: grid;
  gap: 12px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--rose-50);
}

.contact-panel a {
  display: flex;
  min-height: 58px;
  align-items: center;
  padding: 16px 18px;
  border-radius: 7px;
  background: var(--white);
  color: var(--ink);
  font-weight: 720;
  box-shadow: 0 8px 24px rgba(104, 67, 74, 0.08);
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 28px clamp(20px, 5vw, 72px);
  color: var(--muted);
  font-size: 14px;
}

@media (max-width: 920px) {
  .site-header {
    align-items: flex-start;
  }

  .nav-links {
    display: none;
  }

  .hero {
    min-height: 860px;
    align-items: start;
  }

  .hero::after {
    background: linear-gradient(180deg, rgba(255, 249, 250, 0.98) 0%, rgba(255, 249, 250, 0.9) 44%, rgba(255, 249, 250, 0.35) 100%);
  }

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

  .intro,
  .contact,
  .proof {
    grid-template-columns: 1fr;
  }

  .services-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .proof-item {
    min-height: 150px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  }

  .proof-item:last-child {
    border-bottom: 0;
  }
}

@media (max-width: 620px) {
  .site-header {
    padding: 14px 16px;
  }

  .brand-mark {
    width: 36px;
    height: 36px;
  }

  .header-action {
    padding: 9px 13px;
  }

  .hero {
    min-height: 820px;
    padding: 110px 16px 42px;
  }

  h1 {
    font-size: clamp(42px, 14vw, 58px);
  }

  .hero-copy {
    font-size: 17px;
  }

  .button {
    width: 100%;
  }

  .intro,
  .services-section,
  .contact {
    padding: 68px 16px;
  }

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

  .service-card {
    min-height: 220px;
  }

  .site-footer {
    flex-direction: column;
    padding: 24px 16px;
  }
}
