body {
  margin: 0;
  font-family: system-ui, sans-serif;
  line-height: 1.6;
  color: #111;
  background: #fafafa;
}

a[x-apple-data-detectors]:not(.btn),
a[href^="tel"]:not(.btn),
a[href^="sms"]:not(.btn) {
  color: inherit !important;
  text-decoration: none !important;
  font: inherit !important;
}

.container {
  max-width: 700px;
  margin: 0 auto;
  padding: 1.5rem;
  box-sizing: border-box;
}

.fine-print {
  font-size: 0.5em;
}

.header {
  position: sticky;
  top: 0;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid #ddd;
  z-index: 100;
  backdrop-filter: blur(6px);
}

.header-shell {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.brand-link {
  display: inline-block;
  text-decoration: none;
  color: #111;
  line-height: 0;
  flex-shrink: 0;
  max-width: 100%;
}

.site-logo {
  display: block;
  width: 220px;
  max-width: 100%;
  height: auto;
}

.site-nav {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.site-nav a {
  color: #1a73e8;
  text-decoration: none;
  font-size: 0.95rem;
  padding-bottom: 0.1rem;
  border-bottom: 1px solid transparent;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.site-nav a[aria-current="page"] {
  border-bottom-color: #111;
}

.menu-toggle {
  display: none;
  margin-left: auto;
  align-items: center;
  gap: 0.65rem;
  padding: 0.55rem 0.8rem;
  border: 1px solid #111;
  background: #fff;
  color: #111;
  font: inherit;
  cursor: pointer;
}

.menu-toggle__label {
  font-size: 0.95rem;
}

.menu-toggle__icon {
  position: relative;
  display: inline-block;
  width: 1rem;
  height: 2px;
  background: currentColor;
  box-shadow: 0 -5px 0 currentColor, 0 5px 0 currentColor;
}

.section {
  margin-bottom: 2.5rem;
}

.closing-note {
  text-align: center;
}

h1,
h2 {
  font-weight: 600;
}

.cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.btn {
  display: inline-block;
  padding: 0.75rem 1.25rem;
  text-decoration: none;
  border: 1px solid #111;
  background: transparent;
  color: #111;
  font: inherit;
  cursor: pointer;
}

.primary {
  background: #111;
  color: #fff;
}

.secondary {
  background: transparent;
  color: #111;
}

.form-feedback {
  display: none;
  margin-bottom: 1rem;
  padding: 0.9rem 1rem;
  border: 1px solid #d5d5d5;
  background: #fff;
}

.form-feedback.is-visible {
  display: block;
}

.form-feedback.is-success {
  border-color: #7ca47a;
  background: #f4fbf3;
}

.form-feedback.is-error {
  border-color: #c88d8d;
  background: #fff5f5;
}

.form label {
  display: block;
  margin-bottom: 0.35rem;
}

.form input,
.form textarea {
  width: 100%;
  padding: 0.65rem;
  margin-bottom: 1rem;
  border: 1px solid #ccc;
  box-sizing: border-box;
  font: inherit;
  color: inherit;
  background: #fff;
}

.form textarea {
  resize: vertical;
  min-height: 8rem;
}

.hp-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.footer {
  border-top: 1px solid #ddd;
  padding: 1rem 0;
  text-align: center;
}

.footer p,
.footer-nav {
  margin: 0.25rem 0;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.35rem 1rem;
}

.footer-service-line {
  font-size: 0.67em;
}

.footer a {
  color: #1a73e8;
  font: inherit;
  text-decoration: none;
}

@media (max-width: 900px) {
  .container {
    max-width: 100%;
  }

  .site-logo {
    width: 190px;
  }
}

@media (max-width: 720px) {
  .menu-toggle {
    display: inline-flex;
  }

  .site-nav {
    display: none;
    width: 100%;
    margin-left: 0;
    padding-top: 0.75rem;
    border-top: 1px solid #e7e7e7;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
  }

  .site-nav.is-open {
    display: flex;
  }
}

@media (max-width: 560px) {
  .container {
    padding: 1rem;
  }

  .site-logo {
    width: min(160px, 100%);
  }

  .btn {
    width: 100%;
    text-align: center;
  }
}
