:root {
  --green: #516345;
  --pink: #f8dcda;
  --pink-light: #faeeec;
  --beige: #ede3d6;
  --ink: #171a14;
  --paper: #fffaf3;
  --line: rgba(23, 26, 20, 0.16);
  --shadow: 0 24px 80px rgba(23, 26, 20, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--beige);
  font-family: Aeonik, Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.5;
  text-rendering: optimizeLegibility;
}

img {
  display: block;
  width: 100%;
  height: auto;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  padding: 10px clamp(18px, 4vw, 56px);
  background: rgba(237, 227, 214, 0.86);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  width: 82px;
  height: 76px;
}

.brand img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.nav {
  display: flex;
  justify-content: center;
  gap: clamp(18px, 3vw, 42px);
  font-size: 0.9rem;
}

.nav a {
  position: relative;
}

.nav a::after {
  position: absolute;
  right: 0;
  bottom: -7px;
  left: 0;
  height: 1px;
  background: var(--green);
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 220ms ease;
}

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

.nav-cta,
.button {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--green);
  border-radius: 999px;
  padding: 0 22px;
  font-weight: 500;
  line-height: 1;
  transition: transform 220ms ease, background 220ms ease, color 220ms ease;
}

.nav-cta {
  background: var(--green);
  color: var(--paper);
}

.button:hover,
.nav-cta:hover {
  transform: translateY(-2px);
}

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

.button.secondary {
  background: transparent;
  color: var(--green);
}

.button.inverse {
  border-color: var(--paper);
}

.hero {
  position: relative;
  display: flex;
  min-height: calc(100vh - 76px);
  align-items: center;
  overflow: hidden;
  padding: clamp(38px, 5vw, 72px) clamp(18px, 5vw, 72px);
  background: var(--beige);
}

.hero::before {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    90deg,
    rgba(237, 227, 214, 0.96) 0%,
    rgba(237, 227, 214, 0.88) 32%,
    rgba(237, 227, 214, 0.46) 52%,
    rgba(237, 227, 214, 0.1) 74%
  );
  content: "";
}

.hero-copy {
  position: relative;
  z-index: 2;
  display: flex;
  max-width: min(610px, 46vw);
  flex-direction: column;
  justify-content: center;
}

.hero h1 {
  max-width: 610px;
  margin-bottom: 18px;
  font-size: clamp(2.85rem, 4.8vw, 4.7rem);
}

.hero .eyebrow {
  margin-bottom: 14px;
}

.hero .hero-intro {
  max-width: 560px;
  font-size: clamp(1rem, 1.15vw, 1.18rem);
  line-height: 1.42;
}

.eyebrow,
.section-kicker {
  margin: 0 0 18px;
  color: var(--green);
  font-size: 0.74rem;
  font-weight: 500;
  letter-spacing: 0;
  text-transform: uppercase;
}

#what-we-do .eyebrow,
.story-section .section-kicker,
.meet-section .eyebrow,
.values-section .eyebrow,
.testimonials .eyebrow {
  font-size: 0.74rem;
}

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

figure {
  margin-right: 0;
  margin-bottom: 0;
  margin-left: 0;
}

h1,
h2 {
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.02;
}

h1 {
  max-width: 880px;
  margin-bottom: 24px;
  font-size: clamp(3rem, 6.1vw, 5.7rem);
}

h2 {
  font-size: clamp(2.1rem, 3.8vw, 4rem);
}

h3 {
  font-size: 1.28rem;
  font-weight: 500;
  line-height: 1.12;
}

.hero-intro,
.page-intro,
.large-text {
  max-width: 660px;
  font-size: clamp(1.08rem, 1.45vw, 1.36rem);
  line-height: 1.45;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 14px;
}

.hero-image {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.hero-image img {
  object-fit: cover;
  object-position: right center;
  transform: translateX(3%);
}

.image-frame,
.contact-image {
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border: 1px solid rgba(23, 26, 20, 0.08);
  border-radius: 8px;
  background: rgba(255, 250, 243, 0.46);
  box-shadow: var(--shadow);
}

.image-frame img,
.contact-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.section {
  padding: clamp(56px, 7vw, 104px) clamp(18px, 4vw, 56px);
}

.story-section {
  display: grid;
  grid-template-columns: 0.34fr 1fr;
  gap: clamp(28px, 7vw, 100px);
  background: var(--paper);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.story-flow {
  max-width: 980px;
}

.story-flow h2 {
  max-width: 860px;
  margin-bottom: clamp(26px, 4vw, 44px);
}

.story-blocks {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin-bottom: clamp(28px, 4vw, 42px);
}

.story-blocks p {
  min-height: 0;
  margin: 0;
  padding: clamp(18px, 2.4vw, 26px) clamp(20px, 3vw, 34px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--beige);
  font-size: clamp(1rem, 1.2vw, 1.18rem);
  line-height: 1.5;
}

.story-close {
  max-width: 760px;
  margin-bottom: clamp(38px, 5vw, 62px);
  padding-left: clamp(18px, 2.4vw, 28px);
  border-left: 3px solid var(--green);
}

.story-close p {
  margin-bottom: 14px;
  font-size: clamp(1.08rem, 1.45vw, 1.34rem);
  line-height: 1.48;
}

.story-close p:last-child {
  margin-bottom: 0;
}

.story-cta {
  margin-top: 0;
}

.recognition-card span {
  display: inline-flex;
  margin-bottom: clamp(42px, 7vw, 88px);
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 500;
  text-transform: uppercase;
}

.recognition-card p {
  max-width: 560px;
  margin-bottom: 0;
  font-size: clamp(1.18rem, 1.8vw, 1.68rem);
  line-height: 1.22;
}

.recognition-close {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 22px;
  margin-top: 14px;
  padding: clamp(26px, 4vw, 42px);
  border-radius: 8px;
  background: var(--green);
  color: var(--paper);
}

.recognition-close p {
  max-width: 700px;
  margin-bottom: 8px;
  font-size: clamp(1.48rem, 2.9vw, 3.15rem);
  line-height: 1.05;
}

.recognition-close .button {
  border-color: var(--paper);
}

.split {
  display: grid;
  grid-template-columns: minmax(280px, 0.86fr) minmax(0, 1fr);
  align-items: center;
  gap: clamp(34px, 6vw, 86px);
}

.split-media,
.wide-image,
.contact-image {
  overflow: hidden;
}

.split-media {
  max-height: min(660px, 72vh);
  aspect-ratio: 4 / 5;
}

.meet-section {
  align-items: center;
  background: var(--pink-light);
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
}

.meet-section.blush-band {
  background: var(--pink-light);
}

.meet-image {
  aspect-ratio: 2 / 3;
  background: transparent;
  border-color: transparent;
  height: min(660px, 72vh);
  justify-self: center;
  margin-top: 43px;
  transform: none;
  width: auto;
}

.meet-section .split-copy {
  align-self: center;
  display: flex;
  max-height: min(660px, 72vh);
  flex-direction: column;
  justify-content: center;
}

.split-copy {
  max-width: 680px;
}

.split-copy p {
  max-width: 640px;
  font-size: 1.04rem;
  line-height: 1.62;
}

.blush-band {
  background: var(--pink);
}

.text-link {
  display: inline-flex;
  margin-top: 14px;
  border-bottom: 1px solid var(--green);
  color: var(--green);
  font-weight: 500;
}

.section-heading {
  max-width: 900px;
  margin-bottom: clamp(40px, 6vw, 74px);
}

.recognition-strip {
  background: var(--green);
  color: var(--paper);
}

.recognition-copy {
  max-width: 960px;
}

.recognition-copy p {
  margin-bottom: 18px;
  font-size: clamp(1.8rem, 3.6vw, 4rem);
  line-height: 1.05;
}

.recognition-copy p:not(.small-note) + p:not(.small-note) {
  margin-top: clamp(34px, 4vw, 58px);
}

.recognition-copy .small-note {
  margin-top: 34px;
  color: var(--pink);
  font-size: clamp(1rem, 1.4vw, 1.28rem);
  line-height: 1.35;
}

.services-section {
  background: var(--beige);
  padding-bottom: clamp(24px, 3vw, 42px);
}

.service-feature {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 1fr);
  align-items: center;
  gap: clamp(24px, 4vw, 56px);
  margin-bottom: clamp(36px, 7vw, 84px);
}

.service-feature .image-frame {
  width: 100%;
  max-height: min(700px, 68vh);
  aspect-ratio: 3 / 2;
  justify-self: stretch;
}

.service-feature .large-text {
  max-width: 620px;
}

.service-feature-copy {
  display: flex;
  max-width: 760px;
  flex-direction: column;
  align-items: flex-start;
  justify-self: start;
  text-align: left;
}

.service-grid,
.quote-grid,
.offer-page-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.quote-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.service-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.service-card,
.quote-card,
.offer-panel {
  display: flex;
  flex-direction: column;
  min-height: 300px;
  padding: clamp(22px, 2.6vw, 30px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 250, 243, 0.58);
}

.service-card,
.offer-panel {
  background: var(--pink-light);
}

.service-card span,
.offer-panel span {
  display: inline-flex;
  margin-bottom: 32px;
  color: var(--green);
  font-weight: 500;
  font-size: 0.8rem;
  text-transform: uppercase;
}

.service-card h3,
.offer-panel h2 {
  margin-bottom: 18px;
}

.service-card p,
.offer-panel p {
  color: rgba(23, 26, 20, 0.84);
  line-height: 1.55;
}

.price-line {
  color: var(--green);
  font-weight: 600;
  margin-top: auto;
  padding-top: 18px;
}

.services-offers .offer-panel h2 {
  font-size: clamp(1.35rem, 1.8vw, 1.9rem);
  white-space: nowrap;
}

.center-action {
  display: flex;
  justify-content: center;
  margin-top: 32px;
}

.manifesto {
  display: grid;
  grid-template-columns: 0.34fr 1fr;
  column-gap: clamp(28px, 7vw, 100px);
  row-gap: 12px;
  background: var(--green);
  color: var(--paper);
}

.manifesto .section-kicker,
.manifesto .eyebrow {
  color: var(--pink);
}

.manifesto-lines h2 {
  margin-bottom: 0;
  border-bottom: 1px solid rgba(255, 250, 243, 0.25);
  padding-bottom: 14px;
}

.manifesto-lines h2:last-child {
  margin-bottom: 0;
}

.manifesto-copy {
  grid-column: 2;
  max-width: 740px;
  color: rgba(255, 250, 243, 0.82);
  font-size: clamp(1.16rem, 1.7vw, 1.45rem);
}

.values-section {
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  padding-top: clamp(24px, 3vw, 42px);
}

.values-image {
  width: min(100%, 680px);
  max-height: none;
  aspect-ratio: 3 / 2;
  justify-self: center;
}

.values-image img {
  object-fit: cover;
  object-position: center;
}

.value-list {
  margin-top: 42px;
  border-top: 1px solid var(--line);
}

.value-list div {
  padding: 26px 0;
  border-bottom: 1px solid var(--line);
}

.value-list h3 {
  margin-bottom: 10px;
}

.testimonials {
  background: var(--paper);
}

.references-note {
  max-width: 760px;
  margin-top: 24px;
  margin-bottom: 0;
  font-size: 1.04rem;
  line-height: 1.62;
}

.quote-rotator {
  position: relative;
  display: block;
  width: 100%;
  max-width: none;
  min-height: 170px;
}

.quote-card {
  display: flex;
  align-items: center;
  min-height: 150px;
  padding: clamp(18px, 2.2vw, 24px);
  color: var(--green);
  font-size: clamp(1.08rem, 1.55vw, 1.42rem);
  font-style: italic;
  line-height: 1.32;
}

.quote-rotator .quote-card {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 520ms ease;
}

.quote-rotator .quote-card:not(.is-active) {
  opacity: 0;
}

.quote-rotator .quote-card.is-active {
  opacity: 1;
  pointer-events: auto;
}

.final-cta {
  display: flex;
  min-height: 0;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: clamp(62px, 8vw, 110px) clamp(18px, 4vw, 56px);
  background: var(--green);
  color: var(--paper);
}

.final-cta .eyebrow {
  color: var(--pink);
}

.final-cta h2 {
  max-width: 980px;
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 22px;
  padding: 28px clamp(18px, 4vw, 56px);
  background: var(--green);
  border-top: 1px solid rgba(255, 250, 243, 0.22);
  color: var(--paper);
}

.footer p {
  margin: 0;
}

.page-hero {
  padding: clamp(70px, 10vw, 140px) clamp(18px, 4vw, 56px) clamp(42px, 6vw, 82px);
}

.page-hero h1 {
  max-width: 1120px;
}

.offer-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(360px, 0.9fr);
  align-items: center;
  gap: clamp(24px, 4vw, 56px);
}

.offer-hero-copy {
  display: flex;
  max-width: 760px;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
}

.offer-hero-copy h1 {
  margin-bottom: clamp(34px, 4vw, 54px);
  white-space: nowrap;
}

.offer-hero-image {
  width: 100%;
  max-height: min(560px, 60vh);
  aspect-ratio: 3 / 2;
  justify-self: stretch;
}

.offer-hero-image img {
  object-fit: cover;
  object-position: center;
}

.about-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(320px, 0.78fr);
  gap: clamp(32px, 6vw, 86px);
  align-items: center;
  background: var(--paper);
}

.about-hero-copy {
  max-width: 780px;
}

.about-hero-copy h1 {
  margin-bottom: clamp(36px, 5vw, 62px);
}

.about-hero-copy .page-intro + .page-intro {
  margin-top: 2em;
}

.offer-hero-copy h1,
.about-hero-copy h1,
.contact-panel h1 {
  max-width: none;
  font-size: clamp(3.1rem, 4.6vw, 4.9rem);
  line-height: 1.04;
  white-space: nowrap;
}

.contact-panel h1 {
  font-size: clamp(2.75rem, 3.8vw, 4rem);
}

.about-hero-image {
  width: min(100%, 520px);
  max-height: min(660px, 72vh);
  aspect-ratio: 2 / 3;
  justify-self: center;
}

.about-hero-image img {
  object-fit: cover;
  object-position: center;
}

.wide-image {
  max-height: min(760px, 74vh);
  aspect-ratio: 2 / 3;
  margin: 0 clamp(18px, 4vw, 56px);
}

.team-story {
  background: var(--paper);
}

.team-story-copy {
  max-width: 660px;
  margin: 0 auto;
}

.team-story-copy p {
  font-size: clamp(1.08rem, 1.45vw, 1.36rem);
  line-height: 1.45;
}

.bio-grid {
  display: grid;
  gap: 20px;
}

.bio-card {
  display: grid;
  grid-template-columns: minmax(280px, 0.42fr) 1fr;
  align-items: center;
  gap: clamp(28px, 5vw, 76px);
  padding: clamp(18px, 3vw, 34px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
}

.bio-image {
  max-height: min(620px, 72vh);
  aspect-ratio: 2 / 3;
}

.bio-name {
  margin-bottom: 20px;
  font-size: clamp(1.28rem, 1.8vw, 1.74rem);
}

.bio-linkedin {
  margin-top: 10px;
}

.offer-page-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.offer-panel {
  min-height: 360px;
  background: var(--paper);
}

.contact-hero {
  display: grid;
  min-height: 0;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
  align-items: stretch;
  gap: clamp(30px, 4.5vw, 68px);
  padding: clamp(42px, 7vw, 104px) clamp(18px, 4vw, 56px);
}

.contact-image {
  width: 100%;
  min-height: 360px;
  margin-top: clamp(109px, calc(5.916vw + 60px), 155px);
  justify-self: stretch;
}

.contact-image img {
  object-fit: cover;
  object-position: 56% 8%;
  transform: scale(1.12);
  transform-origin: center top;
}

.contact-panel {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.contact-panel .contact-eyebrow {
  font-size: 0.52rem;
}

.contact-panel p {
  max-width: 680px;
  font-size: 1.22rem;
  margin-bottom: 1.35em;
}

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

.contact-highlight {
  border-left: 3px solid var(--green);
  padding-left: 18px;
}

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

.email-link {
  display: inline-flex;
  align-self: flex-start;
  margin-top: 22px;
  color: var(--green);
  font-weight: 500;
}

.reveal {
  opacity: 1;
  transform: none;
  transition: opacity 520ms ease, transform 520ms ease;
}

.has-reveal .reveal:not(.is-visible) {
  opacity: 0.82;
  transform: translateY(12px);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

@media (max-width: 1050px) {
  .split,
  .service-feature,
  .offer-hero,
  .about-hero,
  .bio-card,
  .contact-hero {
    grid-template-columns: 1fr;
  }

  .quote-grid,
  .story-blocks,
  .service-grid,
  .offer-page-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .story-section,
  .manifesto {
    grid-template-columns: 1fr;
  }

  .manifesto-copy {
    grid-column: auto;
  }

  .hero-image,
  .split-media,
  .about-hero-image,
  .bio-image,
  .contact-image {
    max-height: none;
  }

  .about-hero-image {
    width: min(100%, 460px);
  }

  .meet-section .split-copy {
    max-height: none;
  }

  .contact-image {
    min-height: auto;
    margin-top: 0;
    aspect-ratio: 3 / 2;
  }

  .recognition-close {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    max-width: min(590px, 58vw);
  }
}

@media (max-width: 740px) {
  .site-header {
    position: static;
    grid-template-columns: 1fr auto;
    gap: 10px 14px;
    padding-top: 12px;
    padding-bottom: 10px;
  }

  .brand {
    width: 58px;
    height: 58px;
  }

  .nav {
    grid-column: 1 / -1;
    grid-row: 2;
    justify-content: flex-start;
    gap: 20px;
    overflow-x: auto;
    padding-bottom: 4px;
    font-size: 0.88rem;
  }

  .nav-cta {
    min-height: 36px;
    padding: 0 13px;
    font-size: 0.82rem;
  }

  h1 {
    font-size: clamp(2.65rem, 11.2vw, 4.15rem);
    line-height: 1.04;
  }

  h2 {
    font-size: clamp(2rem, 8.4vw, 3.2rem);
    line-height: 1.05;
  }

  .hero-intro,
  .page-intro,
  .large-text {
    font-size: 1.03rem;
    line-height: 1.5;
  }

  .hero {
    min-height: 680px;
    align-items: flex-start;
    padding-top: 52px;
    padding-bottom: 52px;
  }

  .hero::before {
    background: linear-gradient(
      180deg,
      rgba(237, 227, 214, 0.96) 0%,
      rgba(237, 227, 214, 0.88) 45%,
      rgba(237, 227, 214, 0.4) 72%,
      rgba(237, 227, 214, 0.12) 100%
    );
  }

  .hero-copy {
    max-width: 100%;
  }

  .hero-image img {
    object-position: right center;
  }

  .hero-image,
  .split-media,
  .bio-image,
  .contact-image,
  .wide-image {
    height: auto;
  }

  .section {
    padding-top: 64px;
    padding-bottom: 64px;
  }

  .story-flow h2 {
    margin-bottom: 28px;
  }

  .story-blocks,
  .service-grid,
  .quote-grid,
  .offer-page-grid {
    grid-template-columns: 1fr;
  }

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

  .recognition-card span {
    margin-bottom: 28px;
  }

  .recognition-card p {
    font-size: 1.18rem;
    line-height: 1.32;
  }

  .recognition-close {
    padding: 24px;
  }

  .recognition-close p {
    font-size: clamp(1.7rem, 8.5vw, 2.6rem);
    line-height: 1.05;
  }

  .manifesto-lines h2 {
    font-size: clamp(2rem, 9vw, 3.35rem);
  }

  .service-card,
  .quote-card,
  .offer-panel {
    min-height: auto;
  }

  .footer {
    flex-direction: column;
  }
}
