@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600;700&family=Playfair+Display:wght@500;600&display=swap');

:root {
  --purple: #5b4564;
  --purple-dark: #3e3045;
  --purple-light: #eee8f0;
  --gray: #45474b;
  --light: #f8f6f8;
  --white: #ffffff;
  --text: #29282b;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: "DM Sans", Arial, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
}

.container {
  width: min(1120px, calc(100% - 40px));
  margin: auto;
}

.header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255,255,255,.94);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid #eee;
}

.nav {
  min-height: 86px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.brand img {
  width: 170px;
  display: block;
}

nav {
  display: flex;
  gap: 30px;
}

nav a {
  color: var(--gray);
  text-decoration: none;
  font-weight: 600;
  font-size: .95rem;
}

nav a:hover { color: var(--purple); }

.hero {
  background:
    radial-gradient(circle at 85% 25%, #eee7ef 0, transparent 34%),
    linear-gradient(135deg, #fff 0%, #f7f3f8 100%);
  padding: 90px 0 100px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  align-items: center;
  gap: 70px;
}

.eyebrow {
  color: var(--purple);
  letter-spacing: .18em;
  font-size: .76rem;
  font-weight: 700;
  margin: 0 0 12px;
}

h1, h2 {
  font-family: "Playfair Display", Georgia, serif;
  line-height: 1.08;
  margin: 0;
  font-weight: 600;
}

h1 { font-size: clamp(3rem, 7vw, 5.5rem); }
h1 span { color: var(--purple); }

.lead {
  max-width: 600px;
  font-size: 1.15rem;
  color: #626166;
  margin: 26px 0 34px;
}

.buttons { display: flex; gap: 14px; flex-wrap: wrap; }

.btn {
  display: inline-block;
  padding: 13px 24px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: 700;
  transition: .2s;
}

.btn.primary {
  color: white;
  background: var(--purple);
}

.btn.primary:hover { background: var(--purple-dark); transform: translateY(-1px); }

.btn.secondary {
  color: var(--purple);
  border: 1px solid #cfc5d2;
  background: white;
}

.btn.secondary:hover { background: var(--purple-light); }

.hero-card {
  min-height: 390px;
  border-radius: 18px;
  background: var(--gray);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 45px;
  box-shadow: 0 25px 70px rgba(58,45,64,.18);
}

.hero-card img {
  width: min(290px, 100%);
  background: white;
  padding: 12px;
}

.hero-card p {
  color: white;
  text-align: center;
  margin: 22px 0 0;
  opacity: .9;
}

.section { padding: 100px 0; }

.section-title {
  max-width: 720px;
  margin-bottom: 48px;
}

h2 { font-size: clamp(2.3rem, 5vw, 3.7rem); }

.section-title > p:last-child,
.contact-intro {
  color: #6a686d;
  margin-top: 18px;
}

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

.service {
  border: 1px solid #e7e3e8;
  border-radius: 12px;
  padding: 30px 25px;
  background: #fff;
  transition: .2s;
}

.service:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(60,50,65,.09);
}

.icon {
  color: var(--purple);
  font-size: 1.6rem;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--purple-light);
  display: grid;
  place-items: center;
  margin-bottom: 22px;
}

.service h3 { margin: 0 0 8px; font-size: 1.15rem; }
.service p { margin: 0; color: #737177; font-size: .94rem; }

.about {
  padding: 95px 0;
  background: var(--gray);
  color: white;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
}

.about .eyebrow { color: #d9cce0; }
.about p:not(.eyebrow) { color: #e1dfe2; }
.about h2 { margin-top: 10px; }

.cta {
  padding: 85px 0;
  text-align: center;
  background: var(--purple);
  color: white;
}

.cta .eyebrow { color: #dfd2e2; }
.cta h2 { max-width: 750px; margin: 0 auto 30px; }

.btn.light {
  color: var(--purple-dark);
  background: white;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.contact-box {
  display: grid;
  gap: 0;
  border-top: 1px solid #ddd;
}

.contact-box div {
  padding: 22px 0;
  border-bottom: 1px solid #ddd;
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

.contact-box span { color: #777; }
.contact-box strong { text-align: right; }

footer {
  background: #28272a;
  color: #aaa;
  padding: 28px 0;
}

.footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.footer img {
  width: 135px;
  background: white;
  padding: 5px;
}

.footer p { margin: 0; font-size: .85rem; }

@media (max-width: 850px) {
  .hero-grid, .about-grid, .contact-grid { grid-template-columns: 1fr; gap: 45px; }
  .services { grid-template-columns: repeat(2, 1fr); }
  .hero { padding-top: 60px; }
  .hero-card { min-height: 300px; }
}

@media (max-width: 560px) {
  .container { width: min(100% - 28px, 1120px); }
  .nav { min-height: 72px; }
  .brand img { width: 135px; }
  nav { gap: 13px; }
  nav a { font-size: .82rem; }
  .hero { padding: 55px 0 65px; }
  .services { grid-template-columns: 1fr; }
  .section { padding: 70px 0; }
  .footer { flex-direction: column; align-items: flex-start; }
}


.hero-card a { color: white; text-decoration: none; }
.hero-card .hero-contact { font-weight: 700; letter-spacing: .02em; }
.contact-box a { color: inherit; text-decoration: none; }
.contact-box a:hover { color: var(--purple); }
