:root {
  --ink: #15201d;
  --muted: #65736d;
  --line: #dfe7df;
  --paper: #fffdf8;
  --soft: #f4f8ef;
  --leaf: #2f7d4f;
  --leaf-dark: #1c5738;
  --berry: #c4384f;
  --peach: #f2a27f;
  --gold: #d79b2b;
  --shadow: 0 24px 70px rgba(28, 87, 56, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px clamp(18px, 5vw, 72px);
  background: rgba(255, 253, 248, 0.92);
  border-bottom: 1px solid rgba(223, 231, 223, 0.9);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 220px;
}

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 50%;
  background: var(--leaf);
  color: #fff;
  font-weight: 800;
}

.brand strong,
.brand small {
  display: block;
}

.brand small {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.2;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.site-nav a {
  border-radius: 999px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
  padding: 10px 14px;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  background: var(--soft);
  color: var(--leaf-dark);
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: #fff;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: var(--ink);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.25fr);
  min-height: calc(100vh - 75px);
  align-items: center;
  gap: clamp(28px, 5vw, 72px);
  padding: clamp(38px, 6vw, 88px) clamp(18px, 5vw, 72px) clamp(28px, 5vw, 56px);
}

.hero-copy {
  max-width: 620px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--leaf-dark);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  margin: 0;
  font-size: clamp(42px, 6vw, 82px);
  line-height: 0.96;
  letter-spacing: 0;
}

h2 {
  margin: 0;
  font-size: clamp(30px, 4vw, 52px);
  line-height: 1.04;
  letter-spacing: 0;
}

h3 {
  margin: 0;
  font-size: 22px;
  line-height: 1.2;
}

.lead {
  margin: 24px 0 0;
  color: var(--muted);
  font-size: clamp(17px, 2vw, 21px);
  max-width: 56ch;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border: 1px solid transparent;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 800;
  padding: 12px 18px;
  text-align: center;
}

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

.button.secondary {
  border-color: var(--line);
  background: #fff;
  color: var(--leaf-dark);
}

.hero-media {
  min-width: 0;
}

.hero-media img {
  width: 100%;
  min-height: 520px;
  max-height: 720px;
  border-radius: 8px;
  box-shadow: var(--shadow);
  object-fit: cover;
}

.client-note,
.section,
.split-section,
.case-section,
.inquiry,
.proposal-hero,
.brief-grid,
.deliverables,
.timeline-section,
.message-sample {
  padding-inline: clamp(18px, 5vw, 72px);
}

.client-note {
  display: grid;
  grid-template-columns: minmax(260px, 0.8fr) minmax(0, 1.2fr);
  gap: 28px;
  align-items: center;
  padding-block: 38px;
  border-block: 1px solid var(--line);
  background: #fff;
}

.client-note p:last-child {
  margin: 0;
  color: var(--muted);
  font-size: 18px;
}

.section {
  padding-block: clamp(70px, 9vw, 120px);
}

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

.section-heading {
  max-width: 820px;
  margin-bottom: 38px;
}

.section-heading p:last-child {
  margin-top: 18px;
  color: var(--muted);
  font-size: 18px;
}

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

.product-card,
.mini-card,
.process-grid article,
.brief-grid article,
.scope-list article,
.compare-box {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.product-card.featured {
  grid-column: span 3;
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(0, 1.1fr);
  overflow: hidden;
}

.product-card img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
}

.product-card > div {
  padding: clamp(24px, 4vw, 48px);
}

.tag {
  display: inline-flex;
  margin: 0 0 14px;
  border-radius: 999px;
  background: #fff3ea;
  color: #9b4e2f;
  font-size: 12px;
  font-weight: 800;
  padding: 6px 10px;
  text-transform: uppercase;
}

.product-card p:not(.tag),
.mini-card p,
.process-grid p,
.scope-list p {
  color: var(--muted);
}

dl {
  display: grid;
  gap: 10px;
  margin: 28px 0 0;
}

dl div {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 16px;
  border-top: 1px solid var(--line);
  padding-top: 10px;
}

dt {
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

dd {
  margin: 0;
  font-weight: 700;
}

.mini-card {
  min-height: 220px;
  padding: 24px;
}

.fruit-dot {
  display: block;
  width: 38px;
  height: 38px;
  margin-bottom: 28px;
  border-radius: 50%;
  box-shadow: inset -8px -9px 18px rgba(0, 0, 0, 0.12);
}

.fruit-dot.green { background: #b6d64f; }
.fruit-dot.pink { background: #f4a8a4; }
.fruit-dot.red { background: #d93f4f; }

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
  padding-block: clamp(70px, 9vw, 120px);
  background: #fff;
}

.image-panel img,
.wide-image img,
.proposal-hero img {
  width: 100%;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.image-panel img {
  aspect-ratio: 1.35 / 1;
}

.copy-panel p:not(.eyebrow) {
  color: var(--muted);
  font-size: 18px;
}

.stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 34px;
}

.stats-row div {
  border-top: 3px solid var(--gold);
  padding-top: 12px;
}

.stats-row strong,
.stats-row span {
  display: block;
}

.stats-row strong {
  font-size: 34px;
  line-height: 1;
}

.stats-row span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

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

.process-grid article {
  min-height: 250px;
  padding: 28px;
}

.process-grid span {
  display: block;
  margin-bottom: 36px;
  color: var(--berry);
  font-size: 13px;
  font-weight: 900;
}

.wide-image {
  margin-top: 22px;
}

.wide-image img {
  aspect-ratio: 2.1 / 1;
}

.case-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(300px, 1.1fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
  padding-block: clamp(70px, 9vw, 120px);
}

.case-copy p:not(.eyebrow) {
  color: var(--muted);
  font-size: 18px;
}

.comparison {
  display: grid;
  gap: 16px;
}

.compare-box {
  padding: 26px;
}

.compare-box span {
  display: block;
  margin-bottom: 12px;
  font-weight: 900;
}

.compare-box.muted {
  color: var(--muted);
  background: #f7f7f2;
}

.compare-box.active {
  border-color: rgba(47, 125, 79, 0.35);
  background: #eff8ef;
}

.inquiry {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  gap: clamp(28px, 5vw, 70px);
  padding-block: clamp(70px, 9vw, 120px);
  background: var(--ink);
  color: #fff;
}

.inquiry p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.72);
  font-size: 18px;
}

.inquiry .eyebrow {
  color: #bce0bc;
}

.inquiry-form {
  display: grid;
  gap: 16px;
}

label {
  display: grid;
  gap: 8px;
  font-size: 13px;
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.1);
  color: inherit;
  font: inherit;
  padding: 13px 14px;
}

select option {
  color: var(--ink);
}

textarea {
  resize: vertical;
}

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

.site-footer p {
  margin: 0;
}

.proposal-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.72fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
  padding-block: clamp(54px, 8vw, 100px);
}

.proposal-hero img {
  aspect-ratio: 1 / 1;
}

.brief-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  padding-bottom: clamp(60px, 8vw, 96px);
}

.brief-grid article {
  padding: 22px;
}

.brief-label {
  display: block;
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.brief-grid strong {
  display: block;
  margin: 12px 0;
  font-size: 22px;
  line-height: 1.2;
}

.brief-grid p {
  margin: 0;
  color: var(--muted);
}

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

.scope-list article {
  padding: 28px;
}

.deliverables {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(340px, 1.15fr);
  gap: clamp(28px, 5vw, 70px);
  padding-block: clamp(70px, 9vw, 120px);
  background: var(--soft);
}

.deliverable-copy p:not(.eyebrow) {
  color: var(--muted);
  font-size: 18px;
}

.checklist {
  display: grid;
  gap: 12px;
}

.checklist label {
  display: flex;
  align-items: center;
  gap: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  padding: 16px 18px;
}

.checklist input {
  width: 18px;
  height: 18px;
  accent-color: var(--leaf);
}

.timeline-section {
  padding-block: clamp(70px, 9vw, 120px);
}

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

.timeline li {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 18px;
  align-items: start;
  border-top: 1px solid var(--line);
  padding-top: 18px;
}

.timeline strong {
  color: var(--leaf-dark);
}

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

.message-sample {
  padding-block: clamp(70px, 9vw, 120px);
  background: #fff;
}

.message-box {
  max-width: 900px;
  margin-top: 26px;
  border-left: 5px solid var(--leaf);
  background: var(--soft);
  padding: clamp(22px, 4vw, 36px);
}

.message-box p {
  margin: 0 0 14px;
}

.message-box p:last-child {
  margin-bottom: 0;
}

@media (max-width: 960px) {
  .hero,
  .client-note,
  .split-section,
  .case-section,
  .inquiry,
  .proposal-hero,
  .deliverables {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-media img {
    min-height: 360px;
  }

  .product-grid,
  .process-grid,
  .brief-grid,
  .scope-list {
    grid-template-columns: 1fr 1fr;
  }

  .product-card.featured {
    grid-column: span 2;
    grid-template-columns: 1fr;
  }
}

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

  .brand {
    min-width: 0;
  }

  .nav-toggle {
    display: block;
    flex: 0 0 auto;
  }

  .site-nav {
    position: absolute;
    inset: 74px 18px auto 18px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff;
    padding: 8px;
    box-shadow: var(--shadow);
  }

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

  .site-nav a {
    border-radius: 6px;
  }

  h1 {
    font-size: clamp(38px, 12vw, 58px);
  }

  .hero-actions,
  .stats-row,
  .product-grid,
  .process-grid,
  .brief-grid,
  .scope-list {
    grid-template-columns: 1fr;
  }

  .product-card.featured {
    grid-column: span 1;
  }

  .stats-row {
    display: grid;
  }

  .hero-media img,
  .product-card img {
    min-height: 300px;
  }

  .wide-image img {
    aspect-ratio: 1.2 / 1;
  }

  .timeline li {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .button {
    width: 100%;
  }
}
