:root {
  --bg: #f6f0e5;
  --paper: #fffaf3;
  --paper-alt: #f8f1e6;
  --paper-deep: #efe4d5;
  --ink: #1d1914;
  --muted: #5f5348;
  --line: rgba(29, 25, 20, 0.12);
  --accent: #a5482f;
  --accent-dark: #7d3523;
  --olive: #49543f;
  --shadow: 0 24px 64px rgba(53, 37, 22, 0.14);
  --radius-lg: 28px;
  --radius-md: 18px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    linear-gradient(rgba(246, 240, 229, 0.92), rgba(246, 240, 229, 0.98)),
    url("assets/images/485c07974.png") center top / cover fixed no-repeat;
  font-family: Georgia, "Times New Roman", serif;
  line-height: 1.58;
}

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

a {
  color: inherit;
}

.page-shell,
.site-header,
.hero,
.background-section,
.work-section,
.why-section,
.personal-section,
.proof-section,
.final-cta {
  width: 100%;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 20px;
  width: 100%;
  margin: 0;
  padding: 18px 32px 14px;
  background: rgba(255, 250, 243, 0.64);
  border-bottom: 1px solid rgba(29, 25, 20, 0.08);
  position: relative;
  z-index: 30;
}

.brand img {
  width: 138px;
}

.top-nav {
  display: flex;
  gap: 20px;
  font-family: "Trebuchet MS", Helvetica, sans-serif;
  font-size: 0.88rem;
  color: var(--muted);
  align-items: center;
  margin-left: auto;
}

.top-nav a {
  text-decoration: none;
  padding: 6px 0;
  position: relative;
  transition: color 160ms ease, opacity 160ms ease;
}

.top-nav > a::after,
.nav-label::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 100%;
  height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 180ms ease;
}

.top-nav > a:hover,
.nav-group:hover .nav-label,
.nav-menu a:hover {
  color: var(--accent);
}

.top-nav > a:hover::after,
.nav-group:hover .nav-label::after,
.top-nav > a[aria-current="page"]::after {
  transform: scaleX(1);
}

.nav-group {
  position: relative;
  display: flex;
  align-items: center;
  padding-bottom: 12px;
  margin-bottom: -12px;
}

.nav-label {
  position: relative;
  padding: 4px 0;
  cursor: default;
  transition: color 160ms ease;
}

.nav-caret {
  display: inline-block;
  margin-left: 6px;
  font-size: 0.78em;
  transform: translateY(-1px);
  transition: transform 180ms ease, color 160ms ease;
}

.nav-menu {
  position: absolute;
  top: calc(100% + 2px);
  left: 0;
  min-width: 260px;
  padding: 12px 14px;
  display: none;
  flex-direction: column;
  gap: 10px;
  background: rgba(255, 250, 243, 0.98);
  border: 1px solid rgba(29, 25, 20, 0.1);
  border-radius: 16px;
  box-shadow: 0 18px 38px rgba(53, 37, 22, 0.12);
  z-index: 40;
}

.nav-group:hover .nav-menu {
  display: flex;
}

.nav-group:hover .nav-caret {
  transform: translateY(-1px) rotate(180deg);
  color: var(--accent);
}

.nav-menu a {
  padding: 2px 0;
  white-space: nowrap;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 52px;
  padding: 0 24px;
  border-radius: 999px;
  background: var(--accent);
  color: #fff8f2;
  text-decoration: none;
  font-family: "Trebuchet MS", Helvetica, sans-serif;
  font-weight: 700;
  letter-spacing: 0.01em;
  box-shadow: 0 14px 28px rgba(165, 72, 47, 0.24);
  transition: transform 160ms ease, background 160ms ease;
}

.button:hover {
  background: var(--accent-dark);
  transform: translateY(-1px);
}

.button-small {
  min-height: 38px;
  padding: 0 14px;
  font-size: 0.84rem;
  margin-left: 16px;
}

.hero,
.background-section,
.work-section,
.why-section,
.personal-section,
.proof-section,
.final-cta {
  padding: 56px 32px;
}

.hero {
  background:
    linear-gradient(140deg, rgba(255, 250, 243, 0.96), rgba(246, 234, 220, 0.9)),
    url("assets/images/de373303d.png") center / cover no-repeat;
}

.hero-inner,
.section-inner,
.final-cta-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1.04fr 0.96fr;
  gap: 34px;
  align-items: center;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--accent);
  font-family: "Trebuchet MS", Helvetica, sans-serif;
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  letter-spacing: -0.03em;
}

h1 {
  font-size: clamp(2.6rem, 5vw, 4.4rem);
  line-height: 1.05;
}

h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.22;
}

h3 {
  font-size: 1.35rem;
  line-height: 1.18;
}

.hero-body,
.section-copy p,
.section-copy li,
.section-heading p,
.reason-card p,
.final-cta-inner p {
  color: var(--muted);
  font-size: 1.06rem;
}

.hero-body {
  margin: 18px 0 0;
  max-width: 760px;
}

.hero-actions {
  margin-top: 26px;
}

.hero-visual {
  display: flex;
  justify-content: flex-end;
}

.hero-portrait {
  width: min(100%, 520px);
  aspect-ratio: 0.9 / 1;
  object-fit: cover;
  object-position: center 20%;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.5);
  box-shadow: var(--shadow);
}

.background-section {
  background: rgba(248, 241, 230, 0.88);
}

.work-section {
  background: rgba(255, 250, 243, 0.52);
}

.why-section {
  background: rgba(239, 228, 213, 0.56);
}

.personal-section {
  background: rgba(255, 250, 243, 0.78);
}

.proof-section {
  background: rgba(248, 241, 230, 0.82);
}

.section-grid {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 34px;
  align-items: start;
}

.section-heading {
  max-width: 520px;
}

.section-heading.narrow {
  max-width: 760px;
  margin-bottom: 28px;
}

.section-copy p + p {
  margin-top: 16px;
}

.bullet-list {
  margin: 18px 0;
  padding-left: 20px;
  display: grid;
  gap: 10px;
}

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

.reason-card {
  padding: 24px;
  border-radius: var(--radius-md);
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.8), rgba(247, 240, 230, 0.9));
}

.reason-card p {
  margin: 14px 0 0;
}

.highlight-line {
  margin: 22px 0;
  padding: 18px 22px;
  border-left: 4px solid var(--accent);
  background: linear-gradient(180deg, rgba(255, 250, 243, 0.95), rgba(248, 241, 230, 0.86));
  color: var(--olive) !important;
  font-size: 1.24rem !important;
  line-height: 1.45;
  font-weight: 700;
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
}

.testimonials-stack {
  display: grid;
  gap: 36px;
}

.testimonial-row {
  display: grid;
  grid-template-columns: 320px minmax(0, 1fr);
  gap: 20px;
  align-items: center;
  padding-top: 26px;
  border-top: 1px solid rgba(29, 25, 20, 0.08);
}

.testimonial-row:first-child {
  border-top: 0;
  padding-top: 0;
}

.testimonial-row:nth-child(even) {
  grid-template-columns: minmax(0, 1fr) 320px;
}

.testimonial-row:nth-child(even) .testimonial-person {
  order: 2;
  justify-self: end;
}

.testimonial-row:nth-child(even) .testimonial-quote-card {
  order: 1;
}

.testimonial-person {
  display: flex;
  align-items: center;
  gap: 16px;
  width: 320px;
}

.testimonial-avatar {
  width: 82px;
  height: 82px;
  border-radius: 100%;
  object-fit: cover;
  border: 4px solid rgba(255, 250, 243, 0.92);
  box-shadow: 0 10px 26px rgba(40, 28, 18, 0.14);
}

.testimonial-meta h3 {
  margin: 0;
}

.testimonial-meta p {
  margin: 6px 0 0;
  color: var(--muted);
  font-family: "Trebuchet MS", Helvetica, sans-serif;
  font-size: 0.94rem;
}

.testimonial-logo {
  width: auto;
  max-width: 124px;
  max-height: 32px;
  margin-top: 10px;
  object-fit: contain;
}

.testimonial-logo-storetasker {
  max-width: 100px;
}

.quote {
  margin: 0;
  color: var(--olive);
  font-size: clamp(1.55rem, 2.2vw, 2rem);
  line-height: 1.8;
  font-weight: 700;
}

.featured-testimonial .quote {
  color: var(--accent);
}

.final-cta {
  background:
    linear-gradient(rgba(30, 21, 16, 0.6), rgba(30, 21, 16, 0.72)),
    url("assets/images/business-process-final-cta.jpg") center / cover no-repeat;
}

.final-cta-inner {
  max-width: 900px;
  color: #fff8f2;
}

.final-cta .eyebrow,
.final-cta h2,
.final-cta p {
  color: #fff8f2;
}

.final-cta p {
  margin: 18px 0 0;
  max-width: none;
}

.final-cta .button {
  margin-top: 28px;
}

@media (max-width: 1040px) {
  .hero-inner,
  .section-grid,
  .reason-grid,
  .testimonial-row,
  .testimonial-row:nth-child(even) {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    justify-content: flex-start;
  }

  .testimonial-row:nth-child(even) .testimonial-person,
  .testimonial-person {
    order: initial;
    justify-self: start;
    width: 100%;
  }
}

@media (max-width: 820px) {
  .site-header {
    flex-wrap: wrap;
    justify-content: center;
  }

  .top-nav {
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
  }

  .nav-menu {
    left: 50%;
    transform: translateX(-50%);
  }

  .hero,
  .background-section,
  .work-section,
  .why-section,
  .personal-section,
  .proof-section,
  .final-cta {
    padding: 42px 18px;
  }

  .button-small {
    margin-left: 0;
  }
}
