:root {
  --ink: #231f20;
  --muted: #625d61;
  --pink: #d7a6c8;
  --pink-strong: #b7619d;
  --teal: #2e8aa0;
  --mint: #e8f3ef;
  --paper: #ffffff;
  --soft: #f8f6f7;
  --line: #e3dcdf;
  --shadow: 0 18px 45px rgba(35, 31, 32, 0.10);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

a {
  color: inherit;
}

a:focus-visible,
button:focus-visible {
  outline: 3px solid var(--teal);
  outline-offset: 4px;
}

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

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

.brand img {
  width: 58px;
  height: auto;
  flex: 0 0 auto;
}

.brand span {
  font-size: 1rem;
  white-space: nowrap;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(12px, 2vw, 28px);
  font-size: 0.94rem;
  font-weight: 700;
}

.site-nav a {
  color: var(--muted);
  text-decoration: none;
}

.site-nav a:hover {
  color: var(--ink);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(240px, 0.68fr);
  align-items: center;
  gap: clamp(32px, 7vw, 96px);
  min-height: calc(100svh - 78px);
  padding: clamp(44px, 8vw, 92px) clamp(18px, 6vw, 84px);
  background:
    linear-gradient(90deg, rgba(232, 243, 239, 0.9), rgba(255, 255, 255, 0.92) 48%, rgba(215, 166, 200, 0.24)),
    var(--paper);
}

.hero-copy {
  max-width: 760px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--teal);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  margin: 0;
  max-width: 12ch;
  font-size: clamp(3.75rem, 11vw, 7.8rem);
  line-height: 0.92;
}

.hero-lede {
  max-width: 670px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: clamp(1.18rem, 2vw, 1.55rem);
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  max-width: 100%;
  padding: 13px 18px;
  border: 2px solid var(--ink);
  border-radius: 8px;
  font-weight: 800;
  text-align: center;
  text-decoration: none;
}

.button.primary {
  color: var(--paper);
  background: var(--ink);
  box-shadow: 7px 7px 0 var(--pink);
}

.button.secondary {
  color: var(--ink);
  background: var(--paper);
}

.hero-mark {
  display: grid;
  place-items: center;
  min-width: 0;
}

.hero-mark img {
  width: min(100%, 520px);
  height: auto;
  padding: clamp(18px, 4vw, 34px);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.intro-band {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 13px;
  padding: 18px;
  color: var(--paper);
  background: var(--ink);
  font-weight: 800;
  text-align: center;
}

.intro-band a {
  color: var(--paper);
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}

.intro-band span {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--pink);
}

.section,
.area-section,
.contact-section {
  padding: clamp(52px, 8vw, 92px) clamp(18px, 6vw, 84px);
}

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

h2 {
  margin: 0;
  font-size: clamp(2rem, 4.8vw, 4.3rem);
  line-height: 1;
}

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

.service-card {
  min-height: 210px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
}

.service-card:nth-child(2n) {
  background: var(--soft);
}

.service-card h3 {
  margin: 0 0 12px;
  font-size: 1.22rem;
  line-height: 1.15;
}

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

.area-section {
  background: var(--mint);
}

.area-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.area-list li {
  display: grid;
  min-height: 76px;
  place-items: center;
  padding: 16px;
  border: 2px solid var(--ink);
  border-radius: 8px;
  background: var(--paper);
  color: var(--ink);
  font-weight: 900;
  text-align: center;
  box-shadow: 5px 5px 0 var(--teal);
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.7fr);
  gap: clamp(28px, 7vw, 84px);
  align-items: start;
}

.contact-copy p:not(.eyebrow) {
  max-width: 640px;
  color: var(--muted);
  font-size: 1.08rem;
}

.contact-actions {
  display: grid;
  gap: 12px;
}

.contact-link {
  display: grid;
  gap: 4px;
  min-width: 0;
  padding: 18px;
  border: 1px solid var(--line);
  border-left: 8px solid var(--pink);
  border-radius: 8px;
  color: var(--ink);
  background: var(--paper);
  text-decoration: none;
  box-shadow: 0 10px 22px rgba(35, 31, 32, 0.06);
}

.contact-link:hover {
  border-left-color: var(--teal);
}

.contact-link span {
  color: var(--teal);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.contact-link strong {
  overflow-wrap: anywhere;
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 16px;
  padding: 26px clamp(18px, 6vw, 84px);
  color: var(--paper);
  background: var(--ink);
}

.site-footer p {
  margin: 0;
}

.site-footer a {
  color: var(--paper);
  font-weight: 800;
  text-underline-offset: 4px;
}

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

  .site-nav {
    width: 100%;
    justify-content: space-between;
  }

  .hero,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-mark {
    justify-content: start;
  }

  .hero-mark img {
    max-width: 360px;
  }

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

@media (max-width: 520px) {
  .brand span {
    white-space: normal;
  }

  .site-nav {
    font-size: 0.88rem;
  }

  h1 {
    font-size: 3.45rem;
  }

  .button,
  .hero-actions {
    width: 100%;
  }

  .service-grid,
  .area-list {
    grid-template-columns: 1fr;
  }

  .service-card {
    min-height: 0;
  }

  .intro-band {
    align-items: stretch;
    flex-direction: column;
  }

  .intro-band span {
    display: none;
  }
}
