:root {
  --ink: #111111;
  --muted: #5f5f5f;
  --line: #e5bdcc;
  --brand: #009490;
  --accent: #951546;
  --plum: #3a2043;
  --soft: #faedf2;
  --white: #ffffff;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.45;
  background: var(--white);
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; }

.topbar {
  display: flex;
  justify-content: space-between;
  gap: 28px;
  padding: 9px max(24px, calc((100vw - 1180px) / 2 + 24px));
  color: var(--white);
  background: linear-gradient(135deg, var(--accent) 0 58%, var(--plum) 58% 100%);
  font-size: 13px;
  font-weight: 700;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1180px;
  margin: 0 auto;
  padding: 22px 22px;
  min-height: 84px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  color: var(--brand);
}

.brand img { width: 72px; height: auto; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
}

.nav-links a:not(.button) {
  padding: 12px 16px;
  border-bottom: 2px solid transparent;
}

.nav-links a:not(.button):hover,
.nav-links a[aria-current="page"] {
  color: var(--accent);
  border-bottom-color: var(--accent);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 22px;
  border-radius: 999px;
  color: var(--white);
  background: var(--accent);
  font-weight: 700;
  text-transform: uppercase;
  border: 2px solid transparent;
}

.button.secondary { background: var(--brand); }
.button.white { background: var(--white); color: var(--accent); }
.button.small { min-height: 38px; padding: 0 16px; }

.hero {
  min-height: 430px;
  display: grid;
  align-items: center;
  background:
    linear-gradient(rgba(0, 0, 0, .58), rgba(0, 0, 0, .58)),
    url("/assets/hero.jpg") center / cover no-repeat;
  color: var(--white);
  text-align: center;
}

.hero-inner, .section-inner {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

.hero h1 {
  max-width: 830px;
  margin: 10px auto 14px;
  font-size: clamp(40px, 5.6vw, 66px);
  line-height: 1.04;
  letter-spacing: 0;
  text-transform: uppercase;
}

.eyebrow {
  color: var(--accent);
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
}

.hero p {
  max-width: 760px;
  margin: 0 auto 20px;
  font-size: 17px;
  color: var(--white);
}

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

.hero-contact {
  display: flex;
  justify-content: center;
  gap: 18px;
  margin-top: 18px;
  font-size: 13px;
  font-weight: 700;
}

.hero-contact a {
  display: inline-flex;
  min-width: 210px;
  justify-content: center;
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .9);
  color: var(--ink);
}

.section { padding: 72px 0; }
.section.alt { background: var(--soft); }
.section.tight { padding: 46px 0; }

.split {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 44px;
  align-items: center;
}

.image-stack img {
  width: 100%;
  border-radius: 6px;
  display: block;
}

.about-visual {
  position: relative;
  min-height: 380px;
}

.about-visual .main-photo {
  width: 72%;
  min-height: 330px;
  object-fit: cover;
  border-radius: 8px;
  margin-left: 42px;
}

.about-visual .small-photo {
  position: absolute;
  top: 36px;
  right: 26px;
  width: 36%;
  border: 10px solid var(--white);
  border-radius: 8px;
  box-shadow: 0 14px 34px rgba(0, 0, 0, .18);
}

.experience-badge {
  position: absolute;
  left: 8px;
  bottom: 22px;
  width: 150px;
  min-height: 130px;
  display: grid;
  place-items: center;
  padding: 18px;
  border-radius: 8px;
  background: var(--accent);
  color: var(--white);
  text-align: center;
  font-weight: 800;
}

.experience-badge strong {
  display: block;
  font-size: 30px;
  line-height: 1;
}

h1, h2, h3 { margin: 0; line-height: 1.15; letter-spacing: 0; }
h2 { margin-top: 8px; font-size: clamp(30px, 3.6vw, 44px); text-transform: uppercase; }
h2 .accent { color: var(--accent); }
h3 { font-size: 21px; }
p { color: var(--muted); }

.grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 28px;
}

.card {
  background: var(--white);
  border: 1px solid #f2d9e3;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0, 0, 0, .05);
}

.card img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  display: block;
}

.card-body { padding: 22px; }

.check-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  padding: 0;
  margin: 24px 0;
  list-style: none;
}

.check-list li {
  padding: 16px 18px;
  border: 1px solid var(--line);
  border-left: 5px solid var(--accent);
  border-radius: 8px;
  background: var(--white);
  font-weight: 700;
}

.center { display: block; text-align: center; }
h2.center { margin-left: auto; margin-right: auto; }

.timeline {
  list-style: none;
  padding: 0;
  margin: 40px auto 0;
  max-width: 640px;
  position: relative;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 21px;
  top: 8px;
  bottom: 8px;
  width: 2px;
  background: var(--accent);
  opacity: .35;
}

.timeline li {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 18px;
  align-items: start;
  margin-bottom: 26px;
}

.timeline li:last-child { margin-bottom: 0; }

.timeline-dot {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--white);
  display: grid;
  place-items: center;
  font-weight: 800;
  z-index: 1;
}

.timeline li > div {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 14px 18px;
  background: var(--white);
}

.about-badges {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin: 22px 0;
}

.about-badge {
  border: 1px solid var(--accent);
  border-radius: 8px;
  padding: 16px;
  color: var(--ink);
  font-weight: 800;
}

.area-hero {
  padding: 78px 0 52px;
  color: var(--white);
  background: linear-gradient(135deg, var(--accent), var(--plum));
}

.area-hero h1 { max-width: 900px; font-size: clamp(34px, 5vw, 56px); }
.area-hero p { max-width: 760px; color: #d9e4ea; font-size: 18px; }

.content-block {
  max-width: 920px;
  margin: 0 auto;
}

.content-block h2 { margin-top: 34px; font-size: 30px; }
.content-block h3 { margin-top: 24px; }

.quote-band {
  margin: 34px 0;
  padding: 26px;
  border-radius: 6px;
  background: var(--accent);
  color: var(--white);
}

.quote-band p { color: var(--white); margin: 0 0 10px; }

.contact-grid {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 40px;
  align-items: start;
}

form {
  display: grid;
  gap: 14px;
  padding: 24px;
  border: 1px solid var(--accent);
  border-radius: 12px;
}
.trap-field { position: absolute; left: -10000px; width: 1px; height: 1px; opacity: 0; }
#formStatus { min-height: 1.4em; margin: 8px 0 0; }

input, textarea {
  width: 100%;
  border: 1px solid var(--accent);
  border-radius: 999px;
  padding: 14px;
  font: inherit;
}

textarea { min-height: 120px; resize: vertical; border-radius: 12px; }

.service-area-band {
  background: var(--accent);
  color: var(--white);
}

.service-area-band p,
.service-area-band .eyebrow,
.service-area-band h2 {
  color: var(--white);
}

.area-list {
  display: grid;
  gap: 14px;
  font-weight: 800;
}

.area-list a {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
}

.reviews-band {
  min-height: 310px;
  background: var(--soft);
  text-align: center;
}

.reviews-band h2 {
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
  font-size: clamp(24px, 3vw, 32px);
  text-transform: none;
}

.footer {
  padding: 52px 0 0;
  color: var(--ink);
  background: var(--soft);
}

.footer-grid {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 32px;
}

.footer h2 { font-size: 16px; margin-bottom: 14px; }
.footer a, .footer p { display: block; color: var(--ink); margin: 8px 0; }
.footer-logo { width: 118px; background: var(--white); border-radius: 6px; padding: 6px; }
.copyright {
  width: 100%;
  margin: 34px auto 0;
  padding: 12px 20px;
  color: var(--white);
  background: var(--accent);
  text-align: center;
  font-size: 12px;
}

@media (max-width: 820px) {
  .topbar, .nav, .nav-links { flex-direction: column; }
  .topbar {
    width: 100%;
    align-items: center;
    padding: 8px 16px;
    text-align: center;
    overflow-wrap: anywhere;
  }
  .nav-links { gap: 12px; margin-top: 14px; }
  .nav-links a:not(.button) { padding: 6px 10px; }
  .section-inner, .hero-inner, .footer-grid, .copyright { width: min(100% - 32px, 1120px); }
  .hero { min-height: 470px; }
  .hero-contact { flex-direction: column; align-items: center; }
  .hero-contact a { min-width: 0; width: 100%; max-width: 280px; }
  .split, .grid, .check-list, .about-badges, .contact-grid, .footer-grid {
    grid-template-columns: 1fr;
  }
  .grid { gap: 18px; }
  .about-visual .main-photo { width: 82%; margin-left: 0; }
  .about-visual .small-photo { right: 0; }
  form { padding: 18px; }
}
