:root {
  --blue: #3e5ea9;
  --pink: #e84c88;
  --ink: #111111;
  --muted: #666a73;
  --line: #e8e9ee;
  --soft: #f7f8fb;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Montserrat', Arial, sans-serif;
  color: var(--ink);
  background: #fff;
}
a { color: inherit; }
.section-shell {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
}
.site-header {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
  min-height: 110px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  text-decoration: none;
  font-weight: 800;
  font-size: clamp(1.05rem, 2vw, 1.65rem);
}
.brand img {
  width: 58px;
  height: 70px;
  object-fit: cover;
  object-position: left center;
}
.nav {
  display: flex;
  align-items: center;
  gap: clamp(24px, 4vw, 54px);
}
.nav a {
  text-decoration: none;
  font-weight: 700;
  color: var(--blue);
  font-size: 1.05rem;
}
.nav a:hover { opacity: .75; }
.menu-toggle {
  display: none;
  border: 0;
  background: transparent;
  font-size: 1.6rem;
  color: var(--blue);
}
.hero {
  min-height: 610px;
  display: grid;
  grid-template-columns: 42% 58%;
  align-items: center;
  gap: 20px;
  padding: 32px 0 70px;
}
.hero-copy { padding-left: 8px; }
.eyebrow {
  margin: 0 0 8px;
  color: var(--blue);
  font-size: clamp(2.2rem, 5vw, 4rem);
  line-height: .95;
  font-weight: 800;
  letter-spacing: .02em;
}
.hero h1 {
  margin: 0 0 38px;
  color: var(--pink);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  line-height: 1.08;
  letter-spacing: .01em;
}
.service-intro {
  max-width: 520px;
  font-size: 1rem;
  line-height: 1.65;
}
.service-intro p { margin: 0 0 10px; }

.key-factors {
  display: grid;
  gap: 18px;
  max-width: 540px;
  margin-top: 26px;
}
.key-factor {
  position: relative;
  padding-left: 22px;
}
.key-factor::before {
  content: "•";
  position: absolute;
  left: 0;
  top: -1px;
  color: var(--pink);
  font-size: 1.25rem;
  line-height: 1;
}
.key-factor h3 {
  margin: 0 0 5px;
  color: var(--blue);
  font-size: 1rem;
  line-height: 1.35;
  font-weight: 800;
}
.key-factor p {
  margin: 0;
  color: #333;
  font-size: .9rem;
  line-height: 1.55;
}
.text-link {
  display: inline-block;
  margin-top: 24px;
  color: var(--blue);
  font-weight: 700;
  text-decoration: none;
}
.hero-art-wrap {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  min-width: 0;
}
.hero-art {
  width: 100%;
  max-width: 720px;
  height: auto;
  display: block;
}
.content-section {
  padding: 90px 0;
  border-top: 1px solid var(--line);
}
.section-heading {
  display: flex;
  align-items: baseline;
  gap: 18px;
  margin-bottom: 36px;
}
.section-heading span {
  color: var(--pink);
  font-weight: 800;
  font-size: .9rem;
}
.section-heading h2,
.contact-inner h2 {
  margin: 0;
  color: var(--blue);
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1;
}
.cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}
.card {
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
}
.card h3 { margin: 0 0 14px; font-size: 1.2rem; }
.card p, .section-copy p { margin: 0; line-height: 1.75; color: #333; }
.split-section {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 60px;
  align-items: start;
}
.split-section .section-heading { margin-bottom: 0; }
.section-copy { max-width: 680px; font-size: 1.05rem; }
.contact-section {
  background: var(--soft);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.contact-inner {
  padding-top: 80px;
  padding-bottom: 80px;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  align-items: center;
  gap: 50px;
}
.eyebrow.small {
  font-size: .95rem;
  letter-spacing: .18em;
  margin-bottom: 14px;
}
.contact-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-start;
}
.contact-links a {
  font-weight: 700;
  color: var(--blue);
  text-decoration: none;
  overflow-wrap: anywhere;
}
.footer {
  padding-top: 28px;
  padding-bottom: 38px;
  color: var(--muted);
  font-size: .83rem;
}

@media (max-width: 860px) {
  .site-header { min-height: 86px; position: relative; }
  .menu-toggle { display: block; }
  .nav {
    display: none;
    position: absolute;
    right: 0;
    top: 78px;
    z-index: 20;
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
    padding: 22px;
    min-width: 190px;
    background: white;
    border: 1px solid var(--line);
    box-shadow: 0 12px 30px rgba(0,0,0,.08);
  }
  .nav.open { display: flex; }
  .hero {
    grid-template-columns: 1fr;
    padding-top: 26px;
  }
  .hero-copy { order: 1; }
  .hero-art-wrap { order: 2; }
  .hero-art { max-width: 620px; }
  .cards, .split-section, .contact-inner { grid-template-columns: 1fr; }
  .split-section { gap: 26px; }
}

@media (max-width: 560px) {
  .section-shell, .site-header { width: min(100% - 30px, 1180px); }
  .brand { gap: 10px; font-size: 1rem; }
  .brand img { width: 44px; height: 54px; }
  .hero { min-height: auto; padding-bottom: 45px; }
  .eyebrow { font-size: 2.7rem; }
  .hero h1 { font-size: 1.7rem; margin-bottom: 28px; }
  .service-intro { font-size: .93rem; }
  .content-section { padding: 62px 0; }
  .card { padding: 24px; }
  .contact-inner { padding-top: 62px; padding-bottom: 62px; }
}
