:root {
  --gold: #d99700;
  --gold-dark: #c78b00;
  --ink: #050505;
  --muted: #4b5563;
  --pale: #eef8ff;
  --paper: #ffffff;
  --button: #263136;
  --max-width: 1130px;
}

* {
  box-sizing: border-box;
}

body {
  background: var(--pale);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  margin: 0;
}

a {
  color: inherit;
  text-decoration: none;
}

.site-header {
  background: var(--gold);
  color: #ffffff;
  position: sticky;
  top: 0;
  z-index: 20;
}

.nav-wrap {
  align-items: center;
  display: flex;
  gap: 48px;
  justify-content: center;
  margin: 0 auto;
  max-width: var(--max-width);
  min-height: 134px;
  padding: 38px 24px 28px;
}

.nav-links {
  display: flex;
  flex-wrap: nowrap;
  gap: 56px;
  white-space: nowrap;
}

.nav-links a {
  font-size: 22px;
  font-weight: 700;
}

.nav-links a:hover,
.nav-links a.active {
  text-decoration: underline;
  text-underline-offset: 5px;
}

.call-button {
  background: #f3f4f6;
  border: 1px solid #d1d5db;
  color: #374151;
  display: inline-flex;
  font-size: 20px;
  font-weight: 800;
  justify-content: center;
  min-width: 260px;
  padding: 18px 24px;
}

.hero-image {
  background-image: url("assets/cincinnati-oil.png");
  background-position: center;
  background-size: cover;
  height: 400px;
  width: 100%;
}

.content-band {
  background: var(--pale);
  min-height: 430px;
  padding: 74px 24px 88px;
}

.content {
  margin: 0 auto;
  max-width: var(--max-width);
}

.center-title {
  font-size: 34px;
  margin: 0 0 84px;
  text-align: center;
}

.copy {
  font-size: 20px;
  line-height: 1.55;
  margin: 0 auto;
  max-width: 1120px;
}

.copy p {
  margin: 0 0 34px;
}

.team-title {
  font-size: 34px;
  margin: 0 0 30px;
  text-align: center;
}

.team-copy {
  font-size: 20px;
  line-height: 1.55;
  margin: 0 auto;
  max-width: 1130px;
}

.team-copy h2 {
  font-size: 34px;
  margin: 0 0 28px;
}

.services-band {
  background: #ffffff;
  padding: 72px 24px 78px;
}

.services-grid {
  align-items: center;
  display: grid;
  gap: 80px;
  grid-template-columns: minmax(300px, 440px) minmax(360px, 520px);
  justify-content: center;
  margin: 0 auto;
  max-width: var(--max-width);
}

.services-copy h1 {
  font-size: 32px;
  margin: 0 0 28px;
}

.services-list {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 18px;
  line-height: 1.45;
  list-style: none;
  margin: 0;
  padding: 0;
}

.tax-visual {
  align-items: center;
  aspect-ratio: 1.27 / 1;
  background:
    linear-gradient(rgba(255,255,255,0.48), rgba(255,255,255,0.48)),
    url("assets/contact-background.jpeg");
  background-position: center;
  background-size: cover;
  border-radius: 76px 0 76px 0;
  color: rgba(0, 0, 0, 0.72);
  display: flex;
  font-size: 56px;
  font-weight: 900;
  justify-content: center;
  letter-spacing: 2px;
  min-height: 300px;
  text-transform: uppercase;
}

.contact-hero {
  background:
    linear-gradient(rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.18)),
    url("assets/contact-background2.jpeg");
  background-position: center;
  background-size: cover;
  min-height: 970px;
  padding: 70px 24px 64px;
}

.contact-layout {
  align-items: center;
  display: grid;
  gap: 90px;
  grid-template-columns: minmax(320px, 520px) minmax(360px, 500px);
  justify-content: center;
  margin: 0 auto;
  max-width: var(--max-width);
}

.contact-intro h1 {
  font-size: 36px;
  margin: 0 0 28px;
}

.contact-intro p {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 17px;
  line-height: 1.35;
  max-width: 540px;
}

.contact-card {
  background: #ffffff;
  border-radius: 14px;
  padding: 34px 40px 40px;
}

.contact-card h2 {
  font-size: 22px;
  margin: 0 0 26px;
}

.contact-card label {
  display: block;
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 22px;
}

.honeypot-field {
  height: 0;
  left: -10000px;
  margin: 0;
  overflow: hidden;
  position: absolute;
  width: 1px;
}

.contact-card input,
.contact-card textarea {
  border: 1px solid #c7cbd1;
  border-radius: 4px;
  display: block;
  font: inherit;
  margin-top: 10px;
  padding: 11px 13px;
  width: 100%;
}

.contact-card textarea {
  min-height: 110px;
  resize: vertical;
}

.consent-row {
  align-items: flex-start;
  display: flex;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 14px;
  gap: 12px;
  line-height: 1.35;
  margin: 10px 0 34px;
}

.consent-row input {
  flex: 0 0 auto;
  margin-top: 2px;
  width: auto;
}

.submit-row {
  text-align: center;
}

.submit-button {
  background: var(--button);
  border: 0;
  color: #ffffff;
  cursor: pointer;
  font-weight: 700;
  min-width: 180px;
  padding: 15px 28px;
}

.submit-button:hover {
  background: #111827;
}

.form-status {
  font-size: 14px;
  font-weight: 700;
  margin-top: 18px;
  min-height: 20px;
  text-align: center;
}

.site-footer {
  background: var(--gold);
  color: #ffffff;
  min-height: 300px;
  padding: 48px 24px 58px;
}

.footer-inner {
  margin: 0 auto;
  max-width: var(--max-width);
}

.footer-contact {
  max-width: 340px;
}

.footer-contact h2 {
  font-size: 25px;
  margin: 0 0 30px;
}

.footer-contact p {
  align-items: flex-start;
  display: flex;
  font-size: 16px;
  font-weight: 700;
  gap: 8px;
  line-height: 1.35;
  margin: 0 0 18px;
}

.footer-icon {
  background: currentColor;
  flex: 0 0 18px;
  height: 18px;
  margin-top: 1px;
  -webkit-mask-position: center;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-size: contain;
  mask-position: center;
  mask-repeat: no-repeat;
  mask-size: contain;
  width: 18px;
}

.footer-icon-clock {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='black' d='M12 2a10 10 0 1 0 10 10A10.011 10.011 0 0 0 12 2Zm0 18a8 8 0 1 1 8-8 8.009 8.009 0 0 1-8 8Zm1-13h-2v6l5 3 1-1.7-4-2.3Z'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='black' d='M12 2a10 10 0 1 0 10 10A10.011 10.011 0 0 0 12 2Zm0 18a8 8 0 1 1 8-8 8.009 8.009 0 0 1-8 8Zm1-13h-2v6l5 3 1-1.7-4-2.3Z'/%3E%3C/svg%3E");
}

.footer-icon-mail {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='black' d='M20 4H4a2 2 0 0 0-2 2v12a2 2 0 0 0 2 2h16a2 2 0 0 0 2-2V6a2 2 0 0 0-2-2Zm-.4 4.25-7.07 5.3a.88.88 0 0 1-1.06 0L4.4 8.25 5.6 6.65 12 11.45l6.4-4.8ZM4 18V9.75l6.27 4.7a2.88 2.88 0 0 0 3.46 0L20 9.75V18Z'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='black' d='M20 4H4a2 2 0 0 0-2 2v12a2 2 0 0 0 2 2h16a2 2 0 0 0 2-2V6a2 2 0 0 0-2-2Zm-.4 4.25-7.07 5.3a.88.88 0 0 1-1.06 0L4.4 8.25 5.6 6.65 12 11.45l6.4-4.8ZM4 18V9.75l6.27 4.7a2.88 2.88 0 0 0 3.46 0L20 9.75V18Z'/%3E%3C/svg%3E");
}

.footer-icon-phone {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='black' d='M19.95 15.43a1 1 0 0 0-1.14-.18l-3.02 1.35a1 1 0 0 1-1.08-.18 15.25 15.25 0 0 1-7.13-7.13 1 1 0 0 1-.18-1.08l1.35-3.02a1 1 0 0 0-.18-1.14L5.9 1.38A1.3 1.3 0 0 0 4.46 1.1L2.5 2.02a2.5 2.5 0 0 0-1.45 2.69C2.18 13.63 10.37 21.82 19.29 22.95a2.5 2.5 0 0 0 2.69-1.45l.92-1.96a1.3 1.3 0 0 0-.28-1.44Z'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='black' d='M19.95 15.43a1 1 0 0 0-1.14-.18l-3.02 1.35a1 1 0 0 1-1.08-.18 15.25 15.25 0 0 1-7.13-7.13 1 1 0 0 1-.18-1.08l1.35-3.02a1 1 0 0 0-.18-1.14L5.9 1.38A1.3 1.3 0 0 0 4.46 1.1L2.5 2.02a2.5 2.5 0 0 0-1.45 2.69C2.18 13.63 10.37 21.82 19.29 22.95a2.5 2.5 0 0 0 2.69-1.45l.92-1.96a1.3 1.3 0 0 0-.28-1.44Z'/%3E%3C/svg%3E");
}

.footer-icon-pin {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='black' d='M12 2a7 7 0 0 0-7 7c0 5.25 7 13 7 13s7-7.75 7-13a7 7 0 0 0-7-7Zm0 9.5A2.5 2.5 0 1 1 12 6a2.5 2.5 0 0 1 0 5.5Z'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='black' d='M12 2a7 7 0 0 0-7 7c0 5.25 7 13 7 13s7-7.75 7-13a7 7 0 0 0-7-7Zm0 9.5A2.5 2.5 0 1 1 12 6a2.5 2.5 0 0 1 0 5.5Z'/%3E%3C/svg%3E");
}

@media (max-width: 820px) {
  .nav-wrap {
    align-items: center;
    flex-direction: column;
    gap: 22px;
    min-height: 0;
    padding: 24px 18px;
  }

  .nav-links {
    gap: 18px 28px;
    justify-content: center;
    flex-wrap: wrap;
    white-space: normal;
  }

  .nav-links a {
    font-size: 18px;
  }

  .call-button {
    font-size: 17px;
    min-width: 220px;
  }

  .hero-image {
    height: 230px;
  }

  .content-band {
    min-height: auto;
    padding: 48px 20px;
  }

  .center-title,
  .team-title {
    font-size: 28px;
    margin-bottom: 34px;
  }

  .copy,
  .team-copy {
    font-size: 17px;
  }

  .services-grid,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .services-grid {
    gap: 36px;
  }

  .tax-visual {
    border-radius: 42px 0 42px 0;
    font-size: 42px;
    min-height: 240px;
  }

  .contact-hero {
    min-height: auto;
    padding: 42px 20px;
  }

  .contact-layout {
    gap: 34px;
  }

  .contact-card {
    padding: 28px 22px 32px;
  }
}
