:root {
  color-scheme: light;
  --bg: #fffaf5;
  --surface: #ffffff;
  --ink: #232323;
  --muted: #68625d;
  --line: #eadfd5;
  --primary: #e85d4f;
  --primary-dark: #b83d33;
  --accent: #2e8b7c;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

a {
  color: inherit;
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  font-weight: 800;
  text-decoration: none;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  color: #fff;
  background: var(--primary);
  border-radius: 8px;
  font-weight: 900;
}

.nav {
  display: flex;
  gap: clamp(12px, 3vw, 28px);
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.nav a {
  text-decoration: none;
}

.hero {
  min-height: 74vh;
  display: flex;
  align-items: center;
  padding: clamp(64px, 10vw, 118px) clamp(20px, 5vw, 72px);
  background:
    linear-gradient(120deg, rgba(255, 250, 245, 0.92), rgba(255, 250, 245, 0.62)),
    url("data:image/svg+xml,%3Csvg width='1400' height='900' viewBox='0 0 1400 900' xmlns='http://www.w3.org/2000/svg'%3E%3Crect width='1400' height='900' fill='%23f8d9c6'/%3E%3Cpath d='M0 650c165-67 298-63 400 12s251 92 448 51 381-3 552 114v73H0z' fill='%23ffffff' fill-opacity='.76'/%3E%3Cpath d='M970 212c74-45 151-32 208 35s65 143 24 228-112 122-215 111-165-59-187-144-3-184 170-230z' fill='%23e85d4f' fill-opacity='.15'/%3E%3Cpath d='M140 240c92-84 201-103 327-57s195 122 207 229-38 192-150 254-228 68-346 17S5 546 14 428s50-111 126-188z' fill='%232e8b7c' fill-opacity='.13'/%3E%3C/svg%3E");
  background-size: cover;
  background-position: center;
}

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

.eyebrow {
  margin: 0 0 10px;
  color: var(--accent);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

h1 {
  margin-bottom: 20px;
  font-size: clamp(38px, 7vw, 72px);
  line-height: 1.08;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.2;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 8px;
  font-size: 19px;
}

.lead {
  max-width: 620px;
  color: #504943;
  font-size: clamp(17px, 2.5vw, 21px);
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 10px 18px;
  border-radius: 8px;
  font-weight: 800;
  text-decoration: none;
}

.button.primary {
  color: #fff;
  background: var(--primary);
}

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

.section {
  padding: clamp(56px, 9vw, 96px) clamp(20px, 5vw, 72px);
}

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

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

.feature {
  min-height: 190px;
  padding: 22px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.feature p,
.copy,
.contact p {
  color: var(--muted);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(28px, 6vw, 80px);
  background: #fff;
  border-block: 1px solid var(--line);
}

.copy p:last-child,
.contact p:last-child {
  margin-bottom: 0;
}

.contact {
  max-width: 820px;
}

.mail-link {
  display: inline-flex;
  margin-top: 6px;
  color: var(--primary-dark);
  font-size: 20px;
  font-weight: 900;
  text-decoration: none;
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 24px clamp(20px, 5vw, 72px);
  color: var(--muted);
  border-top: 1px solid var(--line);
  font-size: 14px;
}

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

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

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

@media (max-width: 560px) {
  .nav {
    width: 100%;
    justify-content: space-between;
  }

  .hero {
    min-height: 68vh;
  }

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

  .footer {
    flex-direction: column;
  }
}
