:root {
  --color-header-footer: #2e6864;

  --color-section-1: rgba(195, 228, 222, 0.8);
  --color-section-2: rgba(176, 221, 213, 0.85);
  --color-section-3: rgba(115, 185, 174, 0.8);
  --color-section-4: #73b9ae;
  --color-section-5: #3d8c82;

  --color-text: #172a28;
  --color-muted: #2d4946;
  --color-light-text: #d9d9d9;
  --color-contact-text: #c3e4de;
  --color-white: #ffffff;

  --shadow: 0 18px 40px rgba(23, 52, 50, 0.12);

  --radius: 24px;
  --container: 1120px;
  --section-copy-width: 1300px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  color: var(--color-text);
  background: var(--color-white);
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(100% - 32px, var(--container));
  margin-inline: auto;
}

.section {
  padding: 20px 0 72px 0;
}

/* =========================
   HEADER
========================= */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  min-height: 112px;
  background: var(--color-header-footer);
  color: var(--color-light-text);
  border-bottom: 1px solid rgba(217, 217, 217, 0.16);
  display: grid;
  grid-template-columns: 96px 1fr auto;
  align-items: center;
  gap: 16px;
  padding: 12px 22px;
  font-family: Arial, Helvetica, sans-serif;
}

.logo-link {
  display: flex;
  align-items: center;
  justify-content: center;
}

.site-logo {
  width: 144px;
  height: auto;
}

.header-center {
  display: grid;
  justify-items: center;
  gap: 12px;
}

.header-business-name {
  margin: 0;
  color: var(--color-light-text);
  font-size: clamp(1.05rem, 3vw, 1.55rem);
  font-weight: 500;
  line-height: 1.1;
  text-align: center;
}

.nav-toggle {
  width: 44px;
  height: 38px;
  border: 1px solid rgba(217, 217, 217, 0.35);
  background: transparent;
  border-radius: 12px;
  display: grid;
  place-content: center;
  gap: 5px;
  cursor: pointer;
}

.nav-toggle span {
  width: 22px;
  height: 2px;
  background: var(--color-light-text);
  display: block;
}

.site-nav {
  position: absolute;
  top: 104px;
  left: 16px;
  right: 16px;
  background: var(--color-header-footer);
  border-radius: 18px;
  box-shadow: var(--shadow);
  padding: 18px;
  display: none;
  flex-direction: column;
  gap: 14px;
  text-align: center;
}

.site-nav.is-open {
  display: flex;
}

.site-nav a {
  color: var(--color-light-text);
  font-size: 1.1rem;
  font-weight: 500;
}

.header-cta {
  display: none;
  background: var(--color-section-5);
  color: var(--color-white);
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 400;
  white-space: nowrap;
  text-align: center;
}

/* =========================
   HERO
========================= */

.hero {
  min-height: 290px;
  display: grid;
  align-items: center;
  background: var(--color-section-1);
  padding: 42px 0 38px;
}

.hero-content {
  max-width: 960px;
  margin-inline: auto;
  text-align: center;
}

.hero h1 {
  color: #172a28;
  font-family:
    "Copperplate Gothic Light",
    "Copperplate Gothic Bold",
    Copperplate,
    "Times New Roman",
    serif;
  font-size: clamp(1.65rem, 5.2vw, 2.45rem);
  font-weight: 400;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  line-height: 1.15;
  margin: 0;
}

.hero-subtitle {
  margin: 30px auto 0;
  color: #172a28;
  font-family: Arial, Helvetica, sans-serif;
  font-size: clamp(1.05rem, 3.1vw, 1.5rem);
  line-height: 1.55;
  max-width: 680px;
}

.hero-buttons {
  display: grid;
  grid-template-columns: 1fr;
  justify-items: center;
  gap: 18px;
  margin-top: 42px;
}

.hero-button {
  background: #73b9ae;
  color: #172a28;
  border: none;
  outline: none;
  box-shadow: none;
  min-width: 168px;
  min-height: 35px;
  padding: 6px 22px;
  border-radius: 999px;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.9rem;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0;
  white-space: nowrap;
}

/* =========================
   SHARED TYPOGRAPHY
========================= */

.eyebrow {
  color: #2e6864;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.85rem;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
  text-align: left;
  margin: 0 0 12px;
}

.services-heading,
.approach-heading,
.about-content,
.contact-content {
  max-width: var(--section-copy-width);
  margin-inline: auto;
}

.services-heading .eyebrow,
.approach-heading .eyebrow,
.about-content .eyebrow,
.contact-content .eyebrow {
  width: 100%;
  color: #2e6864;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.85rem;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
  text-align: left;
}

.services-heading .eyebrow,
.approach-heading .eyebrow,
.about-content .eyebrow,
.contact-content .eyebrow {
  margin: 0 0 76px;
}

.contact-content .eyebrow {
  color: #1e3f48;
}

h1,
h2,
h3 {
  line-height: 1.1;
  margin: 0;
  color: var(--color-text);
}

h2 {
  font-size: clamp(2rem, 6vw, 3.6rem);
}

h3 {
  font-size: 1.35rem;
}

.lead {
  font-size: 1.2rem;
  color: var(--color-muted);
  max-width: 620px;
}

/* =========================
   BUTTONS
========================= */

.button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 48px;
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 400;
  border: none;
  outline: none;
  box-shadow: none;
  cursor: pointer;
  font-family: Arial, Helvetica, sans-serif;
}

.button.primary {
  background: var(--color-header-footer);
  color: var(--color-light-text);
}

.button.secondary {
  color: var(--color-header-footer);
  background: rgba(255, 255, 255, 0.72);
}

/* =========================
   SERVICES
========================= */

.services {
  background: var(--color-section-2);
  font-family: Arial, Helvetica, sans-serif;
  color: #172a28;
}

.services-heading {
  text-align: center;
  margin-bottom: 46px;
}

.services-heading h2 {
  color: #172a28;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 28px;
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 24px;
}

.services-heading p {
  color: #172a28;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 18.4px;
  font-weight: 400;
  line-height: 1.45;
  max-width: 760px;
  margin-inline: auto;
}

.services-grid {
  display: grid;
  gap: 28px;
}

.service-card {
  background: #b0ddd5;
  border: none;
  border-radius: 18px;
  box-shadow: none;
  padding: 30px 26px;
  text-align: center;
  display: grid;
  justify-items: center;
  align-content: start;
}

.service-icon {
  width: 35px;
  height: 35px;
  object-fit: contain;
  margin-bottom: 18px;
}

.service-card h3 {
  color: #172a28;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.25;
  margin-bottom: 18px;
}

.service-card p {
  color: #172a28;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5;
  max-width: 205px;
  margin: 0 auto;
}

/* =========================
   APPROACH
========================= */

.approach {
  background: var(--color-section-3);
  font-family: Arial, Helvetica, sans-serif;
  color: #172a28;
}

.approach-heading {
  text-align: center;
  margin-bottom: 42px;
}

.approach-heading h2 {
  color: #172a28;
  font-family:
    "Copperplate Gothic Light",
    "Copperplate Gothic Bold",
    Copperplate,
    "Times New Roman",
    serif;
  font-size: clamp(1.35rem, 3vw, 1.75rem);
  font-weight: 400;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  line-height: 1.2;
  margin-bottom: 24px;
}

.approach-heading p:not(.eyebrow) {
  color: #172a28;
  font-family: Arial, Helvetica, sans-serif;
  font-size: clamp(0.95rem, 2vw, 1.15rem);
  font-weight: 400;
  line-height: 1.45;
  max-width: 880px;
  margin-inline: auto;
}

.approach-flow {
  display: grid;
  grid-template-columns: 1fr;
  gap: 26px;
  align-items: start;
  text-align: center;
}

.approach-step {
  display: grid;
  justify-items: center;
  color: #172a28;
}

.approach-step h3 {
  color: #172a28;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 16px;
  font-weight: 400;
  text-transform: uppercase;
  line-height: 1.2;
  margin-bottom: 26px;
}

.approach-step p {
  color: #172a28;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.35;
  max-width: 190px;
  margin: 0 auto;
}

.approach-arrow {
  width: 42px;
  height: auto;
  justify-self: center;
  opacity: 0.85;
  transform: rotate(90deg);
}

/* =========================
   ABOUT
========================= */

.about {
  background: var(--color-section-4);
  font-family: Arial, Helvetica, sans-serif;
  color: #172a28;
}

.about-content {
  color: #172a28;
}

.about-content h2 {
  color: #172a28;
  font-family: Arial, Helvetica, sans-serif;
  font-size: clamp(1.35rem, 3vw, 1.75rem);
  font-weight: 400;
  line-height: 1.2;
  text-align: center;
  margin-bottom: 10px;
}

.about-content .lead {
  color: #172a28;
  font-family: Arial, Helvetica, sans-serif;
  font-size: clamp(1rem, 2vw, 1.15rem);
  font-weight: 400;
  line-height: 1.45;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 28px;
}

.about-main-copy {
  color: #172a28;
  font-family: Arial, Helvetica, sans-serif;
  font-size: clamp(0.95rem, 1.8vw, 1.05rem);
  font-weight: 400;
  line-height: 1.65;
  text-align: center;
  max-width: 850px;
  margin: 0 auto 28px;
}

.about-lower {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  align-items: center;
  max-width: 760px;
  margin: 0 auto;
}

.about-image-wrap {
  display: grid;
  justify-items: center;
  order: 2;
}

.headshot {
  width: 145px;
  height: 145px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: none;
}

.check-list {
  padding: 0;
  margin: 0 auto;
  list-style: none;
  display: grid;
  gap: 20px;
  justify-items: start;
  text-align: left;
  width: fit-content;
  order: 1;
}

.check-list li {
  color: #172a28;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.4;
}

.check-list li::before {
  content: "✓";
  margin-right: 7px;
  color: #172a28;
  font-weight: 400;
}

/* =========================
   CONTACT
========================= */

.contact {
  background: var(--color-section-5);
  font-family: Arial, Helvetica, sans-serif;
  color: #c3e4de;
}

.contact-content {
  text-align: center;
}

.contact-content h2 {
  color: #c3e4de;
  font-family:
    "Copperplate Gothic Light",
    "Copperplate Gothic Bold",
    Copperplate,
    "Times New Roman",
    serif;
  font-size: 1.75rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  line-height: 1.25;
  text-align: center;
  margin: 0 auto 34px;
  max-width: 980px;
}

.contact-content p:not(.eyebrow) {
  color: #c3e4de;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 1.05rem;
  font-weight: 400;
  line-height: 1.45;
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
}

.contact-buttons {
  display: grid;
  grid-template-columns: 1fr;
  justify-items: center;
  gap: 18px;
  margin-top: 42px;
}

.contact-button {
  background: #73b9ae;
  color: #ffffff;
  border: none;
  outline: none;
  box-shadow: none;
  min-width: 168px;
  min-height: 35px;
  padding: 6px 22px;
  border-radius: 999px;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.9rem;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0;
  white-space: nowrap;
}

/* =========================
   FOOTER
========================= */

.site-footer {
  background: var(--color-header-footer);
  color: #d9d9d9;
  padding-top: 22px;
  font-family: Arial, Helvetica, sans-serif;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  align-items: center;
  text-align: center;
}

.footer-brand {
  display: grid;
  justify-items: center;
  color: #d9d9d9;
}

.footer-logo {
  width: 75px;
  height: auto;
  margin-bottom: 8px;
}

.footer-business-name {
  color: #d9d9d9;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 13px;
  font-weight: 400;
  line-height: 1.2;
  margin: 0 0 6px;
}

.footer-tagline {
  color: #d9d9d9;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 11px;
  font-weight: 400;
  line-height: 1.2;
  margin: 0;
}

.footer-nav {
  display: grid;
  gap: 8px;
  justify-items: center;
}

.footer-nav a {
  color: #d9d9d9;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 13px;
  font-weight: 400;
  line-height: 1.2;
}

.footer-right {
  display: grid;
  gap: 12px;
  justify-items: center;
}

.footer-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 22px;
}

.footer-intuit-badge {
  width: 54px;
  height: auto;
}

.footer-bbb-badge {
  width: 200px;
  height: 42px;
  object-fit: contain;
  border: 0;
}

.social-links {
  display: flex;
  gap: 28px;
  align-items: center;
  justify-content: center;
}

.social-links a {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
}

.social-links img {
  width: 34px;
  height: 34px;
  object-fit: contain;
}

.footer-bottom {
  border-top: 1px solid rgba(217, 217, 217, 0.18);
  margin-top: 22px;
  padding: 12px 18px;
  text-align: center;
  font-size: 0.75rem;
  color: #d9d9d9;
}

/* =========================
   TABLET
========================= */

@media (min-width: 640px) {
  .header-cta {
    display: inline-flex;
    justify-content: center;
    align-items: center;
  }
}

/* =========================
   DESKTOP
========================= */

@media (min-width: 768px) {
  .site-header {
    min-height: 116px;
    grid-template-columns: 160px 1fr 170px;
    padding: 14px 28px;
  }

  .site-logo {
    width: 164px;
  }

  .nav-toggle {
    display: none;
  }

  .site-nav {
    position: static;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    box-shadow: none;
    padding: 0;
    background: transparent;
    gap: clamp(28px, 5vw, 58px);
  }

  .site-nav a {
    font-size: 1.2rem;
  }

  .hero-buttons {
    width: min(100%, 920px);
    margin-inline: auto;
    margin-top: 44px;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    align-items: center;
    justify-items: center;
  }

  .hero-buttons a:first-child {
    grid-column: 2;
  }

  .hero-buttons a:last-child {
    grid-column: 4;
  }

  .services-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 56px;
  }

  .service-card {
    min-height: 245px;
  }

  .service-icon {
    width: 35px;
    height: 35px;
  }

  .approach-flow {
    grid-template-columns: 1fr 80px 1fr 80px 1fr;
    gap: 24px;
    align-items: start;
  }

  .approach-arrow {
    margin-top: 8px;
    transform: none;
  }

  .about-lower {
    grid-template-columns: 190px 1fr;
    gap: 70px;
    align-items: center;
  }

  .about-image-wrap {
    justify-items: end;
    order: 1;
  }

  .check-list {
    justify-content: start;
    order: 2;
  }

  .contact-buttons {
    width: min(100%, 920px);
    margin-inline: auto;
    margin-top: 44px;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    align-items: center;
    justify-items: center;
  }

  .contact-buttons a:first-child {
    grid-column: 2;
  }

  .contact-buttons a:last-child {
    grid-column: 4;
  }

  .footer-grid {
    grid-template-columns: 2fr 1fr 2fr;
    align-items: center;
    text-align: center;
  }

  .footer-brand {
    justify-items: center;
  }

  .footer-right {
    justify-items: center;
  }

  .footer-badges {
    justify-content: center;
  }

  .social-links {
    justify-content: center;
  }

  .section {
    padding: 20px 0 96px 0;
  }

  .hero {
    padding: 46px 0 44px;
  }
}


/* =========================
   ULTRAWIDE HEADER CLAMP
========================= */

@media (min-width: 1300px) {
  .site-header {
    grid-template-columns:
      minmax(0, 1fr)
      170px
      minmax(600px, 900px)
      170px
      minmax(0, 1fr);

    padding-left: 0;
    padding-right: 0;
  }

  .logo-link {
    grid-column: 2;
    justify-self: start;
  }

  .header-center {
    grid-column: 3;
    justify-self: center;
  }

  .header-cta {
    grid-column: 4;
    justify-self: end;
  }
}
  
