:root {
  --ink: #1a1b1f;
  --muted: #5c6068;
  --rule: #eeeeee;
  --paper: #ffffff;
  --soft: #f7f8f9;
  --brand: #22252b;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Montserrat, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.7;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: 30px 50px;
  background: var(--paper);
}

.brand {
  flex: 0 0 auto;
}

.brand img {
  width: 200px;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  margin-left: auto;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.site-nav a {
  opacity: 0.72;
  text-decoration: none;
  transition: opacity 180ms ease;
}

.site-nav a:hover {
  opacity: 1;
}

.site-nav .active {
  opacity: 1;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 12px 25px;
  color: #fff;
  background: var(--brand);
  border: 1px solid var(--brand);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  line-height: 1.2;
  text-decoration: none;
  text-transform: uppercase;
  transition: background 180ms ease, color 180ms ease, border-color 180ms ease;
}

.button:hover {
  color: var(--brand);
  background: transparent;
}

.button-small {
  min-height: 40px;
  padding: 10px 22px;
}

.button-light {
  color: var(--ink);
  background: #fff;
  border-color: #fff;
}

.button-light:hover {
  color: #fff;
  background: transparent;
}

.hero {
  display: flex;
  justify-content: center;
  padding: 20px 24px 0;
  background: var(--paper);
}

.hero img {
  width: min(500px, 100%);
}

.content-section {
  padding: 0 24px 40px;
}

.container {
  width: min(1140px, 100%);
  margin: 0 auto;
}

.divider {
  width: 100%;
  height: 1px;
  margin: 80px 0;
  background: var(--rule);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  align-items: center;
  gap: 56px;
  margin-bottom: 80px;
}

.split-reverse {
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
}

.split-copy {
  max-width: 520px;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
}

h1,
h2 {
  margin: 0 0 20px;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  line-height: 1.15;
}

.split-copy p {
  margin: 0 0 30px;
  color: var(--muted);
}

.service-list {
  margin: 0 0 30px;
  padding: 0;
  color: var(--muted);
  list-style: none;
}

.service-list li::before {
  content: "•";
  margin-right: 8px;
  color: var(--ink);
  font-weight: 700;
}

.split-image {
  width: 100%;
  min-height: 420px;
  object-fit: cover;
  background: var(--soft);
}

.cta {
  padding: 0 24px;
}

.cta-panel {
  display: flex;
  min-height: 420px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: min(1140px, 100%);
  margin: 0 auto;
  padding: 80px 50px 90px;
  color: #fff;
  text-align: center;
  background:
    linear-gradient(rgba(0, 0, 0, 0.58), rgba(0, 0, 0, 0.58)),
    url("assets/images/66382377a3042435a78de5ab__C8A1783-2.jpg")
      center / cover;
}

.cta-panel h2 {
  max-width: 820px;
  margin-bottom: 20px;
  font-size: clamp(2rem, 4vw, 3rem);
}

blockquote {
  max-width: 790px;
  margin: 0 0 35px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 18px;
  line-height: 1.8;
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
  align-items: center;
  justify-content: center;
  padding: 70px 24px;
  color: rgba(26, 27, 31, 0.5);
  font-size: 12px;
}

.site-footer p {
  margin: 0;
}

.site-footer a {
  color: inherit;
  text-decoration: none;
}

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

.page-heading {
  width: min(900px, calc(100% - 48px));
  margin: 70px auto 55px;
  text-align: center;
}

.page-heading h1,
.page-heading h2 {
  margin-bottom: 0;
}

.page-heading-tight {
  margin-top: 25px;
  margin-bottom: 45px;
}

.subpage-hero {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 150px;
  margin: 0 24px;
  color: #fff;
  text-align: center;
  background:
    linear-gradient(rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.55)),
    url("assets/images/663825942dbc956063068663__C8A1786.jpg")
      center / cover;
}

.subpage-hero h1 {
  margin: 0;
  font-size: clamp(2.4rem, 6vw, 4rem);
}

.card-section {
  padding: 0 24px 80px;
}

.service-feature-image {
  width: min(780px, calc(100% - 48px));
  margin: -15px auto 80px;
}

.service-feature-image img {
  width: 100%;
  max-height: 560px;
  object-fit: cover;
  object-position: center 58%;
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 60px 80px;
  text-align: center;
}

.info-card img {
  width: 50px;
  margin: 0 auto 24px;
}

.info-card h2 {
  margin-bottom: 12px;
  font-size: 20px;
  line-height: 1.4;
}

.info-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.8;
}

.info-card a {
  color: var(--ink);
  font-weight: 500;
}

.profile-split {
  align-items: start;
}

.profile-image {
  min-height: 520px;
  object-position: center top;
}

.contact-section {
  padding: 90px 24px 80px;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 2.4fr) minmax(240px, 1fr);
  gap: 80px;
  align-items: start;
}

.contact-form {
  border: 1px solid var(--rule);
  padding: 45px 50px 50px;
}

.contact-form p {
  margin: 0 0 35px;
  color: var(--muted);
}

.contact-form label {
  display: block;
  margin: 0 0 8px;
  font-size: 13px;
  font-weight: 600;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  margin: 0 0 22px;
  padding: 14px 16px;
  border: 1px solid #e4e4e4;
  border-radius: 0;
  color: var(--ink);
  font: inherit;
}

.contact-form textarea {
  min-height: 190px;
  resize: vertical;
}

.contact-details {
  display: grid;
  gap: 28px;
}

.form-note {
  margin-top: 18px;
  margin-bottom: 0;
  font-size: 13px;
}

.contact-details p {
  margin: 0;
  color: var(--muted);
}

.contact-details .eyebrow {
  margin-bottom: 8px;
  color: var(--ink);
}

.contact-details a {
  color: var(--muted);
  text-decoration: none;
}

.contact-details a:hover {
  color: var(--ink);
}

.contact-map-link {
  display: block;
  margin-top: 18px;
  transition: opacity 180ms ease;
}

.contact-map-link:hover {
  opacity: 0.82;
}

.contact-map-link img {
  width: 100%;
}

.map-section {
  display: flex;
  justify-content: center;
  padding: 0 24px;
}

.map-section img {
  width: min(500px, 100%);
}

.privacy-section {
  padding: 80px 24px 30px;
}

.privacy-content {
  width: min(820px, 100%);
  margin: 0 auto;
}

.privacy-content h2 {
  margin-top: 38px;
  margin-bottom: 12px;
  font-size: 24px;
  line-height: 1.35;
}

.privacy-content p {
  margin: 0 0 18px;
  color: var(--muted);
}

.privacy-content a {
  color: var(--ink);
  font-weight: 500;
}

.last-updated {
  font-size: 13px;
}

@media (max-width: 900px) {
  .site-header {
    flex-wrap: wrap;
    padding: 24px 30px;
  }

  .site-nav {
    order: 3;
    width: 100%;
    justify-content: flex-start;
    overflow-x: auto;
  }

  .split,
  .split-reverse {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .split-copy {
    max-width: none;
    margin: 0 auto;
  }

  .split .split-image {
    order: -1;
  }

  .split-reverse .split-image {
    order: -1;
  }

  .info-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 50px 44px;
    width: min(760px, 100%);
    margin: 0 auto;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 50px;
    text-align: center;
  }

  .contact-details {
    order: -1;
  }

  .contact-form {
    text-align: left;
  }
}

@media (max-width: 640px) {
  body {
    font-size: 15px;
  }

  .site-header {
    justify-content: center;
    padding: 22px 20px;
    text-align: center;
  }

  .brand img {
    width: 180px;
  }

  .site-nav {
    justify-content: center;
    gap: 18px;
    font-size: 11px;
  }

  .button-small {
    order: 4;
    width: min(260px, 100%);
    margin-top: -4px;
    min-height: 44px;
  }

  .divider {
    margin: 50px 0;
  }

  .split {
    margin-bottom: 60px;
  }

  .split-image {
    min-height: 300px;
  }

  .cta {
    padding: 15px;
  }

  .cta-panel {
    min-height: 380px;
    padding: 60px 20px 70px;
  }

  .page-heading {
    margin-top: 55px;
    margin-bottom: 45px;
  }

  .subpage-hero {
    margin: 0 15px;
  }

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

  .contact-section {
    padding-top: 55px;
  }

  .contact-form {
    padding: 30px;
  }
}
