:root {
  --ink: #25312d;
  --muted: #63716c;
  --paper: #fffaf2;
  --cream: #f5ecdc;
  --mist: #e4f0ec;
  --leaf: #5f8472;
  --leaf-dark: #315a4b;
  --berry: #b7636d;
  --gold: #d79d57;
  --charcoal: #17211e;
  --line: rgba(37, 49, 45, 0.14);
  --shadow: 0 26px 70px rgba(37, 49, 45, 0.18);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  line-height: 1.5;
}

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

a {
  color: inherit;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 15px clamp(18px, 4vw, 58px);
  background: rgba(255, 250, 242, 0.92);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.brand-logo {
  width: clamp(196px, 24vw, 282px);
  height: auto;
  display: block;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 800;
}

.site-nav a {
  padding: 10px 12px;
  border-radius: 999px;
  text-decoration: none;
}

.site-nav a:hover {
  background: var(--mist);
  color: var(--leaf-dark);
}

.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fffdf8;
  padding: 10px;
}

.menu-button span:not(.sr-only) {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: var(--ink);
}

.hero {
  position: relative;
  min-height: min(760px, calc(100vh - 32px));
  display: grid;
  align-items: center;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}

.hero-image,
.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  object-fit: cover;
}

.hero-overlay {
  background:
    radial-gradient(circle at 18% 20%, rgba(255, 250, 242, 0.92), transparent 32%),
    linear-gradient(90deg, rgba(255, 250, 242, 0.97) 0%, rgba(255, 250, 242, 0.86) 42%, rgba(255, 250, 242, 0.14) 76%),
    linear-gradient(180deg, rgba(23, 33, 30, 0.04), rgba(23, 33, 30, 0.2));
}

.hero::after {
  content: "QuickBooks ProAdvisor";
  position: absolute;
  right: clamp(18px, 5vw, 72px);
  bottom: 34px;
  padding: 14px 18px;
  border: 1px solid rgba(255, 253, 248, 0.55);
  border-radius: 8px;
  background: rgba(49, 90, 75, 0.88);
  color: #fffdf8;
  font-weight: 900;
  box-shadow: var(--shadow);
}

.hero-content {
  position: relative;
  width: min(680px, calc(100% - 36px));
  margin-left: clamp(18px, 7vw, 98px);
  padding: 76px 0 128px;
}

.eyebrow,
.section-kicker {
  margin: 0 0 12px;
  color: var(--berry);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 12ch;
  margin-bottom: 22px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3.25rem, 8vw, 7.3rem);
  line-height: 0.94;
  letter-spacing: 0;
}

h2 {
  max-width: 800px;
  margin-bottom: 18px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 4.2vw, 4.35rem);
  line-height: 1.02;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.2rem;
}

.hero-copy {
  max-width: 620px;
  margin-bottom: 30px;
  color: #40504a;
  font-size: clamp(1.08rem, 2vw, 1.34rem);
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 20px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 900;
  text-decoration: none;
  cursor: pointer;
}

.button.primary {
  background: var(--leaf-dark);
  color: #fffdf8;
  box-shadow: 0 16px 34px rgba(49, 90, 75, 0.28);
}

.button.primary:hover {
  background: #244a3d;
}

.button.secondary {
  background: rgba(255, 253, 248, 0.86);
  border-color: var(--line);
  color: var(--ink);
}

.proof-band {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border-bottom: 1px solid var(--line);
}

.proof-band div {
  padding: 30px clamp(18px, 4vw, 50px);
  background: #fffdf8;
}

.proof-band strong,
.proof-band span {
  display: block;
}

.proof-band strong {
  margin-bottom: 7px;
  font-size: 1.05rem;
}

.proof-band span {
  color: var(--muted);
}

.section {
  padding: clamp(68px, 10vw, 130px) clamp(18px, 5vw, 74px);
}

.intro {
  max-width: 1040px;
}

.intro p,
.section-heading p,
.price-card p,
.process p,
.about p,
.contact-copy p {
  max-width: 720px;
  color: var(--muted);
  font-size: 1.08rem;
}

.services {
  background:
    linear-gradient(180deg, var(--cream), #fff8ee),
    var(--cream);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(260px, 0.6fr);
  gap: clamp(28px, 6vw, 82px);
  align-items: end;
  margin-bottom: 42px;
}

.service-grid {
  display: grid;
  grid-template-columns: 1.15fr repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.service-card {
  min-height: 300px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fffdf8;
  box-shadow: 0 12px 34px rgba(37, 49, 45, 0.07);
}

.feature-card {
  background: var(--charcoal);
  color: #fffdf8;
}

.feature-card p {
  color: #d4e3dc;
}

.service-card p {
  color: var(--muted);
}

.feature-card .icon {
  background: rgba(215, 157, 87, 0.18);
  color: #f4c37f;
}

.icon {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 30px;
  border-radius: 50%;
  background: var(--mist);
  color: var(--leaf-dark);
  font-size: 0.82rem;
  font-weight: 900;
}

.pricing {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.7fr);
  gap: 20px;
  background: #fffdf8;
}

.price-card,
.included-list {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: clamp(28px, 5vw, 56px);
}

.price-card {
  background: linear-gradient(135deg, var(--mist), #fffdf8 70%);
}

.included-list {
  background: var(--leaf-dark);
  color: #fffdf8;
}

.included-list ul {
  display: grid;
  gap: 14px;
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
}

.included-list li {
  position: relative;
  padding-left: 28px;
}

.included-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.48em;
  width: 13px;
  height: 8px;
  border-left: 3px solid var(--gold);
  border-bottom: 3px solid var(--gold);
  transform: rotate(-45deg);
}

.process {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(320px, 1fr);
  gap: clamp(32px, 7vw, 96px);
  align-items: start;
}

.timeline {
  display: grid;
  gap: 18px;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: step;
}

.timeline li {
  position: relative;
  padding: 24px 24px 24px 76px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fffdf8;
}

.timeline li::before {
  counter-increment: step;
  content: counter(step);
  position: absolute;
  left: 22px;
  top: 22px;
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--berry);
  color: white;
  font-weight: 900;
}

.timeline strong,
.timeline span {
  display: block;
}

.timeline span {
  color: var(--muted);
}

.about {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 420px);
  gap: 22px;
  background:
    linear-gradient(120deg, rgba(49, 90, 75, 0.96), rgba(23, 33, 30, 0.96)),
    var(--leaf-dark);
  color: #fffdf8;
}

.about .section-kicker,
.about p {
  color: #d9e9df;
}

.about-panel,
.owner-card {
  padding: clamp(28px, 5vw, 56px);
  border: 1px solid rgba(255, 253, 248, 0.2);
  border-radius: 8px;
}

.owner-card {
  display: grid;
  align-content: center;
  justify-items: start;
  background: rgba(255, 253, 248, 0.09);
}

.portrait {
  width: min(100%, 300px);
  aspect-ratio: 4 / 5;
  margin-bottom: 24px;
  border: 1px solid rgba(255, 253, 248, 0.26);
  border-radius: 8px;
  object-fit: cover;
  object-position: center top;
  box-shadow: 0 22px 48px rgba(0, 0, 0, 0.24);
}

.owner-card p {
  margin-bottom: 8px;
}

.owner-card span {
  color: #d9e9df;
}

.contact {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 520px);
  gap: clamp(32px, 7vw, 92px);
}

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

.contact-details a,
.contact-details span {
  color: var(--leaf-dark);
  font-weight: 900;
  text-decoration: none;
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: clamp(22px, 4vw, 34px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fffdf8;
  box-shadow: var(--shadow);
}

label {
  display: grid;
  gap: 7px;
  color: var(--ink);
  font-weight: 900;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 13px 14px;
  background: #fff;
  color: var(--ink);
  font: inherit;
}

input:focus,
select:focus,
textarea:focus {
  outline: 3px solid rgba(95, 132, 114, 0.28);
  border-color: var(--leaf);
}

textarea {
  resize: vertical;
}

.form-note {
  min-height: 24px;
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 28px clamp(18px, 5vw, 74px);
  border-top: 1px solid var(--line);
  color: var(--muted);
}

.site-footer p {
  margin: 0;
}

.site-footer a {
  color: var(--leaf-dark);
  font-weight: 900;
  text-decoration: none;
}

@media (max-width: 1060px) {
  .service-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .section-heading,
  .pricing,
  .process,
  .about,
  .contact {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .site-header {
    align-items: flex-start;
  }

  .menu-button {
    display: block;
    flex: 0 0 auto;
  }

  .site-nav {
    position: absolute;
    inset: 76px 18px auto;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fffdf8;
    box-shadow: var(--shadow);
  }

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

  .site-nav a {
    padding: 16px;
    border-radius: 0;
    border-bottom: 1px solid var(--line);
  }

  .site-nav a:last-child {
    border-bottom: 0;
  }

  .hero {
    min-height: auto;
  }

  .hero-overlay {
    background:
      linear-gradient(180deg, rgba(255, 250, 242, 0.98) 0%, rgba(255, 250, 242, 0.9) 58%, rgba(255, 250, 242, 0.44) 100%),
      linear-gradient(90deg, rgba(255, 250, 242, 0.35), rgba(255, 250, 242, 0.1));
  }

  .hero::after {
    left: 18px;
    right: auto;
    bottom: 28px;
  }

  .hero-content {
    width: calc(100% - 36px);
    margin: 0 auto;
    padding: 64px 0 236px;
  }

  h1 {
    max-width: 11ch;
  }

  .proof-band,
  .service-grid {
    grid-template-columns: 1fr;
  }

  .service-card {
    min-height: auto;
  }

  .site-footer {
    flex-direction: column;
  }
}

@media (max-width: 430px) {
  .brand-logo {
    width: 184px;
  }

  .hero-actions .button,
  .contact-form .button {
    width: 100%;
  }

  .timeline li {
    padding-left: 24px;
    padding-top: 76px;
  }
}
