:root {
  --ink: #101312;
  --text: #303533;
  --muted: #68716d;
  --line: #dfe4df;
  --paper: #f8f9f6;
  --surface: #ffffff;
  --green: #163f35;
  --green-soft: #edf4f0;
  --lime: #d6ff5f;
  --clay: #c66f4e;
  --shadow: rgba(16, 19, 18, 0.08);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
  overflow-x: hidden;
}

body {
  margin: 0;
  max-width: 100vw;
  color: var(--text);
  background:
    linear-gradient(90deg, rgba(16, 19, 18, 0.035) 1px, transparent 1px),
    linear-gradient(180deg, rgba(16, 19, 18, 0.035) 1px, transparent 1px),
    var(--paper);
  background-size: 44px 44px;
  font-family: Inter, Arial, sans-serif;
  overflow-x: hidden;
}

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

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 24px;
  min-height: 72px;
  padding: 14px 40px;
  background: rgba(248, 249, 246, 0.92);
  border-bottom: 1px solid rgba(32, 35, 35, 0.12);
  backdrop-filter: blur(18px);
}

.nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 10px 18px;
  font-size: 0.86rem;
  font-weight: 600;
  color: #4b5350;
}

.nav a {
  text-decoration: none;
}

.nav a:hover,
.nav a:focus-visible {
  color: var(--ink);
}

.hero {
  min-height: calc(86vh - 72px);
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 82% 16%, rgba(214, 255, 95, 0.26), transparent 24%),
    linear-gradient(110deg, rgba(248, 249, 246, 0.98) 0%, rgba(248, 249, 246, 0.93) 50%, rgba(248, 249, 246, 0.72) 100%);
}

.hero-visual {
  position: absolute;
  right: clamp(24px, 7vw, 96px);
  top: 120px;
  width: min(30vw, 390px);
  min-width: 320px;
  height: 330px;
  z-index: 1;
  opacity: 0.72;
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(760px, calc(100vw - 48px));
  align-self: center;
  padding: 64px 0 72px;
  margin-left: clamp(24px, 7vw, 96px);
}

.signal-board {
  position: relative;
  height: 100%;
  padding: 16px;
  background: rgba(255, 255, 255, 0.58);
  border: 1px solid rgba(16, 19, 18, 0.14);
  box-shadow: 0 18px 48px rgba(16, 19, 18, 0.1);
  backdrop-filter: blur(12px);
}

.signal-row {
  display: flex;
  gap: 8px;
  margin-bottom: 16px;
}

.signal-row span {
  width: 11px;
  height: 11px;
  background: var(--ink);
}

.signal-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  grid-auto-rows: 64px;
  gap: 8px;
}

.signal-card {
  padding: 10px;
  background: var(--surface);
  border: 1px solid rgba(16, 19, 18, 0.12);
}

.signal-card.wide {
  grid-column: span 2;
}

.signal-card.tall {
  grid-row: span 2;
}

.signal-card.dark {
  background: var(--ink);
  color: #fff;
}

.signal-card.accent {
  background: var(--lime);
}

.signal-card b {
  display: block;
  width: 34%;
  height: 7px;
  margin-bottom: 10px;
  background: currentColor;
  opacity: 0.24;
}

.signal-card i {
  display: block;
  width: 100%;
  height: 5px;
  margin-top: 5px;
  background: currentColor;
  opacity: 0.2;
}

.signal-card.accent i {
  background: var(--ink);
}

.signal-line {
  position: absolute;
  right: 16px;
  bottom: 18px;
  width: 54%;
  height: 2px;
  background: var(--clay);
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--green);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.hero-name {
  margin: 0 0 18px;
  color: var(--ink);
  font-size: 7.2rem;
  line-height: 1.06;
  font-weight: 650;
  letter-spacing: 0;
}

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

h1,
h2 {
  color: var(--ink);
  font-family: Inter, Arial, sans-serif;
  line-height: 1.05;
  font-weight: 800;
  letter-spacing: 0;
}

h1 {
  max-width: 940px;
  margin-bottom: 20px;
  font-size: 2.85rem;
  overflow-wrap: anywhere;
}

h2 {
  margin-bottom: 18px;
  font-size: 2.35rem;
}

h3 {
  color: var(--ink);
  font-size: 1.25rem;
  line-height: 1.25;
  margin-bottom: 12px;
}

p {
  font-size: 1rem;
  line-height: 1.65;
}

.hero-copy {
  max-width: 620px;
  color: #2d302f;
  font-size: 1.1rem;
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border: 1px solid var(--green);
  border-radius: 0;
  font-weight: 800;
  font-size: 0.92rem;
  text-decoration: none;
}

.button.primary {
  background: var(--green);
  color: #fff;
}

.button.secondary {
  background: rgba(255, 255, 255, 0.68);
  color: var(--green);
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
  box-shadow: 0 8px 18px var(--shadow);
}

.proof-bar {
  display: grid;
  grid-template-columns: repeat(3, minmax(180px, 1fr));
  gap: 18px;
  padding: 24px clamp(24px, 7vw, 96px);
  background: transparent;
  border-bottom: 1px solid var(--line);
  overflow-x: auto;
}

.proof-card {
  position: relative;
  overflow: hidden;
  min-height: 190px;
  padding: 30px 24px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid var(--line);
  box-shadow: 0 12px 34px rgba(16, 19, 18, 0.04);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.proof-card::before {
  content: "";
  position: absolute;
  top: 18px;
  right: 18px;
  width: 28px;
  height: 28px;
  background: var(--lime);
}

.proof-card:nth-child(1) {
  background: var(--green);
  border-color: var(--green);
}

.proof-card:nth-child(1)::before {
  background: var(--lime);
}

.proof-card:nth-child(1) strong,
.proof-card:nth-child(1) span {
  color: #fff;
}

.proof-card:nth-child(1) strong {
  color: var(--lime);
}

.proof-card:nth-child(2) {
  background: var(--lime);
  border-color: rgba(16, 19, 18, 0.18);
}

.proof-card:nth-child(2)::before {
  background: var(--green);
}

.proof-card:nth-child(2) strong,
.proof-card:nth-child(2) span {
  color: var(--green);
}

.service-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  margin: 0 auto 22px;
  background: var(--green-soft);
  color: var(--green);
}

.service-icon svg {
  width: 36px;
  height: 36px;
  fill: currentColor;
}

.proof-bar strong {
  display: block;
  color: var(--green);
  font-family: Inter, Arial, sans-serif;
  font-size: 3.65rem;
  line-height: 1;
  margin-bottom: 16px;
  white-space: nowrap;
}

.proof-bar span {
  display: block;
  max-width: 340px;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.4;
}

.section {
  scroll-margin-top: 96px;
  padding: 84px clamp(24px, 7vw, 96px);
  border-bottom: 1px solid var(--line);
}

.intro-grid {
  padding-bottom: 34px;
}

.work-section {
  padding-top: 40px;
}

.intro-grid,
.about-section,
.contact-section {
  display: grid;
  grid-template-columns: minmax(240px, 0.8fr) minmax(320px, 1.2fr);
  gap: clamp(32px, 7vw, 96px);
  align-items: start;
}

.intro-copy,
.about-copy {
  max-width: 760px;
}

.intro-copy p,
.about-copy p {
  color: var(--text);
  font-size: 1.08rem;
}

.section-heading {
  max-width: 980px;
  margin-bottom: 48px;
}

.section-heading h2,
.intro-grid h2,
.about-section h2,
.contact-section h2 {
  font-size: 3.15rem;
  line-height: 1;
}

.work-section .section-heading h2 {
  max-width: 1080px;
  font-size: 3.45rem;
}

.services-section .section-heading h2 {
  max-width: 980px;
  font-size: 3.2rem;
}

.intro-grid {
  padding-top: 96px;
}

.fit-section {
  padding-top: 76px;
}

.fit-list,
.engagement-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.fit-card,
.engagement-card {
  min-height: 180px;
  padding: 26px;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid var(--line);
  box-shadow: 0 12px 34px rgba(16, 19, 18, 0.04);
}

.fit-card p,
.engagement-card p {
  color: var(--muted);
}

.engagement-section {
  background: var(--green-soft);
}

.engagement-card span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  margin-bottom: 22px;
  color: var(--green);
  background: var(--surface);
  border: 1px solid rgba(22, 63, 53, 0.14);
  font-size: 0.78rem;
  font-weight: 900;
}

.work-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  background: transparent;
  border: 0;
}

.work-item {
  display: flex;
  flex-direction: column;
  min-height: 300px;
  padding: 26px;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid var(--line);
  box-shadow: 0 12px 34px rgba(16, 19, 18, 0.04);
}

.work-item:last-child:nth-child(odd) {
  grid-column: 1 / -1;
  justify-self: center;
  width: min(calc((100% - 18px) / 2), 680px);
}

.work-meta {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 7px;
  color: var(--text);
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 22px;
}

.work-meta span {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  padding: 0 9px;
  background: var(--green-soft);
  border: 1px solid rgba(22, 63, 53, 0.14);
  border-radius: 999px;
}

.work-item p {
  max-width: 640px;
}

.sample-link {
  display: inline-flex;
  width: fit-content;
  margin-top: auto;
  padding-bottom: 4px;
  color: var(--green);
  font-size: 0.92rem;
  font-weight: 800;
  text-decoration: none;
  border-bottom: 2px solid currentColor;
}

.sample-link:hover,
.sample-link:focus-visible {
  color: var(--ink);
}

.services-section {
  background: var(--ink);
  color: rgba(255, 255, 255, 0.84);
}

.services-section h2,
.services-section h3 {
  color: #fff;
}

.services-section .eyebrow {
  color: rgba(255, 255, 255, 0.62);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  border: 0;
}

.service {
  min-height: 220px;
  padding: 28px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.16);
  text-align: center;
}

.service p {
  color: rgba(255, 255, 255, 0.78);
}

.service-icon {
  margin: 0 auto 22px;
  background: rgba(255, 255, 255, 0.1);
  color: var(--lime);
}

.about-section {
  background: var(--paper);
}

.contact-section {
  align-items: center;
  background: var(--surface);
}

.contact-section h2 {
  max-width: 780px;
}

.contact-section p a {
  color: var(--green);
  font-weight: 800;
}

.contact-form {
  display: grid;
  gap: 16px;
  width: min(100%, 620px);
  padding: 28px;
  background: rgba(248, 249, 246, 0.86);
  border: 1px solid var(--line);
  box-shadow: 0 12px 34px rgba(16, 19, 18, 0.04);
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: var(--ink);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 0;
  padding: 12px 13px;
  color: var(--text);
  background: var(--surface);
  font: inherit;
  text-transform: none;
}

.contact-form textarea {
  resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: 2px solid rgba(22, 63, 53, 0.28);
  outline-offset: 2px;
}

.contact-form button {
  width: fit-content;
  border: 0;
  cursor: pointer;
}

.hidden-field {
  display: none;
}

.thank-you-page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 24px;
}

.thank-you-card {
  width: min(680px, 100%);
  padding: clamp(34px, 7vw, 72px);
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: 0 18px 48px rgba(16, 19, 18, 0.08);
}

.thank-you-card h1 {
  font-size: clamp(3rem, 9vw, 6rem);
}

.thank-you-card p {
  color: var(--text);
}

.thank-you-card p a {
  color: var(--green);
  font-weight: 800;
}

.rate-page {
  min-height: 100vh;
}

.rate-hero,
.rate-section {
  padding: 72px clamp(24px, 7vw, 96px);
  border-bottom: 1px solid var(--line);
}

.rate-hero {
  background:
    radial-gradient(circle at 78% 18%, rgba(214, 255, 95, 0.24), transparent 24%),
    rgba(255, 255, 255, 0.52);
}

.rate-hero h1 {
  max-width: 980px;
  font-size: clamp(3rem, 8vw, 7rem);
  line-height: 0.98;
  margin-bottom: 24px;
}

.rate-hero p:last-child {
  max-width: 720px;
  color: var(--text);
  font-size: 1.12rem;
}

.rate-heading {
  max-width: 840px;
  margin-bottom: 36px;
}

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

.rate-card,
.rate-list,
.value-grid article {
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid var(--line);
  box-shadow: 0 12px 34px rgba(16, 19, 18, 0.04);
}

.rate-card {
  min-height: 360px;
  padding: 28px;
  display: flex;
  flex-direction: column;
}

.rate-card.feature {
  border-top: 6px solid var(--green);
}

.rate-card-top {
  display: grid;
  gap: 18px;
  margin-bottom: 32px;
}

.rate-card-top p {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.45;
}

.rate-card-top strong {
  color: var(--green);
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1;
}

.rate-card h3 {
  margin-bottom: 10px;
}

.rate-card > p {
  color: var(--text);
}

.rate-card > span {
  margin-top: auto;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.rate-section.compact {
  background: var(--green-soft);
}

.rate-list {
  display: grid;
}

.rate-list div {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 20px;
  align-items: center;
  padding: 22px 26px;
  border-bottom: 1px solid var(--line);
}

.rate-list div:last-child {
  border-bottom: 0;
}

.rate-list span {
  color: var(--text);
  font-weight: 800;
}

.rate-list strong {
  color: var(--green);
  font-size: 1.25rem;
  white-space: nowrap;
}

.rate-section.note,
.rate-section.rate-contact {
  display: grid;
  grid-template-columns: minmax(240px, 0.8fr) minmax(320px, 1.2fr);
  gap: clamp(32px, 7vw, 96px);
  align-items: center;
}

.rate-section.note h2 {
  margin: 0;
  font-size: clamp(3.4rem, 10vw, 8rem);
  color: var(--green);
}

.rate-section.note p {
  max-width: 720px;
  color: var(--text);
  font-size: 1.08rem;
}

.rate-section.value {
  background: var(--ink);
  color: rgba(255, 255, 255, 0.82);
}

.rate-section.value h2,
.rate-section.value h3 {
  color: #fff;
}

.rate-section.value .eyebrow {
  color: rgba(255, 255, 255, 0.62);
}

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

.value-grid article {
  min-height: 200px;
  padding: 28px;
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.16);
}

.value-grid p {
  color: rgba(255, 255, 255, 0.76);
}

.rate-contact {
  background: var(--surface);
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 28px 40px;
  color: var(--muted);
  background: var(--ink);
}

.site-footer p {
  margin: 0;
  font-size: 0.92rem;
}

@media (max-width: 980px) {
  .site-header {
    padding: 14px 24px;
    justify-content: flex-start;
  }

  .hero {
    min-height: auto;
  }

  .hero-visual {
    display: none;
  }

  .hero-content {
    width: auto;
    padding: 24px 24px 34px;
    margin-left: 0;
  }

  h1 {
    font-size: 1.95rem;
  }

  h2 {
    font-size: 2rem;
  }

  .section-heading h2,
  .intro-grid h2,
  .about-section h2,
  .contact-section h2,
  .work-section .section-heading h2,
  .services-section .section-heading h2 {
    font-size: 2.45rem;
  }

  .hero-name {
    font-size: 4.2rem;
  }

  .intro-grid,
  .about-section,
  .contact-section,
  .rate-section.note,
  .rate-section.rate-contact,
  .work-list,
  .fit-list,
  .engagement-list,
  .rate-grid,
  .value-grid,
  .service-grid {
    grid-template-columns: 1fr;
  }

  .proof-bar {
    padding: 18px 24px;
  }

  .work-item:last-child:nth-child(odd) {
    grid-column: auto;
    justify-self: stretch;
    width: auto;
  }
}

@media (max-width: 680px) {
  .site-header {
    min-height: auto;
    padding: 18px 20px;
    align-items: flex-start;
    justify-content: flex-start;
  }

  .nav {
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 10px 16px;
    font-size: 0.84rem;
  }

  h1 {
    font-size: 1.55rem;
  }

  h2 {
    font-size: 1.75rem;
  }

  .section-heading h2,
  .intro-grid h2,
  .about-section h2,
  .contact-section h2,
  .work-section .section-heading h2,
  .services-section .section-heading h2 {
    font-size: 1.95rem;
    line-height: 1.08;
  }

  .section {
    padding: 54px 20px;
  }

  .rate-hero,
  .rate-section {
    padding: 54px 20px;
  }

  .rate-list div {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 20px;
  }

  .hero-content {
    padding: 30px 20px 38px;
    width: 100%;
  }

  .hero-name {
    font-size: 3rem;
    margin-bottom: 14px;
  }

  .hero-content .eyebrow {
    max-width: 300px;
    line-height: 1.45;
  }

  .hero-copy {
    font-size: 0.96rem;
    line-height: 1.55;
  }

  .proof-card,
  .work-item,
  .fit-card,
  .engagement-card,
  .service {
    padding: 24px 20px;
  }

  .proof-bar strong {
    font-size: 2.75rem;
  }

  .site-footer {
    flex-direction: column;
    align-items: flex-start;
    padding: 24px 20px;
  }
}
