:root {
  --forest: #173f35;
  --forest-2: #0f3028;
  --cream: #f5f0e6;
  --paper: #fffdf8;
  --mint: #b9d8cc;
  --mint-pale: #e2eee8;
  --gold: #d8ad58;
  --gold-deep: #ad7f2e;
  --ink: #16342e;
  --muted: #5f6f69;
  --line: rgba(23, 63, 53, 0.18);
  --shadow: 0 26px 70px rgba(15, 48, 40, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: "DM Sans", sans-serif;
  font-size: 1rem;
  line-height: 1.65;
}

a {
  color: inherit;
}

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

.skip-link {
  position: fixed;
  z-index: 100;
  top: 0.5rem;
  left: 0.5rem;
  padding: 0.65rem 1rem;
  color: white;
  background: var(--forest);
  transform: translateY(-160%);
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: relative;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1440px;
  margin: 0 auto;
  padding: 1.4rem clamp(1.25rem, 5vw, 5rem);
  border-bottom: 1px solid var(--line);
}

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

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

.brand strong {
  font-family: "Fraunces", serif;
  font-size: 1.2rem;
  line-height: 1.1;
}

.brand small {
  margin-top: 0.22rem;
  color: var(--muted);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.brand-mark {
  display: grid;
  width: 2.6rem;
  height: 2.6rem;
  place-items: center;
  border: 1px solid var(--forest);
  border-radius: 50%;
}

.brand-mark svg {
  width: 1.8rem;
  fill: none;
  stroke: var(--gold-deep);
  stroke-width: 2.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

nav {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 2.5vw, 2.5rem);
}

nav a {
  font-size: 0.92rem;
  font-weight: 700;
  text-decoration: none;
}

nav a:not(.nav-cta):hover {
  color: var(--gold-deep);
}

.nav-cta {
  padding: 0.7rem 1rem;
  color: white;
  background: var(--forest);
  border-radius: 999px;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(340px, 0.96fr);
  min-height: 670px;
  max-width: 1440px;
  margin: 0 auto;
  padding: clamp(3.5rem, 8vw, 7.5rem) clamp(1.25rem, 5vw, 5rem) clamp(4rem, 7vw, 6rem);
  overflow: hidden;
}

.hero::before {
  position: absolute;
  top: 11%;
  left: -5rem;
  width: 9rem;
  height: 9rem;
  content: "";
  border: 1px solid rgba(216, 173, 88, 0.6);
  border-radius: 50%;
}

.hero-copy {
  position: relative;
  z-index: 2;
  align-self: center;
  padding-right: clamp(2rem, 6vw, 7rem);
}

.eyebrow {
  margin: 0 0 1.2rem;
  color: var(--gold-deep);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

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

h1,
h2,
h3 {
  font-family: "Fraunces", serif;
  font-weight: 600;
  letter-spacing: -0.03em;
}

h1 {
  max-width: 780px;
  margin-bottom: 1.5rem;
  font-size: clamp(3rem, 6.2vw, 6.1rem);
  line-height: 0.97;
}

h2 {
  margin-bottom: 1.2rem;
  font-size: clamp(2.3rem, 4vw, 4.3rem);
  line-height: 1.03;
}

h3 {
  margin-bottom: 0.8rem;
  font-size: clamp(1.55rem, 2.2vw, 2.1rem);
  line-height: 1.14;
}

.hero-lede {
  max-width: 650px;
  margin-bottom: 2rem;
  color: #405c54;
  font-size: clamp(1.08rem, 1.55vw, 1.28rem);
}

.hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.4rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.25rem;
  padding: 0.85rem 1.35rem;
  font-weight: 800;
  text-decoration: none;
  border-radius: 999px;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button-primary {
  color: white;
  background: var(--forest);
  box-shadow: 0 12px 24px rgba(23, 63, 53, 0.22);
}

.button-primary:hover {
  background: var(--forest-2);
}

.button-advisory {
  color: var(--forest);
  background: var(--gold);
  box-shadow: 0 12px 24px rgba(173, 127, 46, 0.18);
}

.button-advisory:hover {
  background: #e2bb6a;
}

.text-link {
  font-weight: 800;
  text-underline-offset: 0.3rem;
}

.hero-proof {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  max-width: 580px;
  margin-top: 3rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
}

.hero-proof div {
  padding-right: 1.5rem;
}

.hero-proof div + div {
  padding-left: 1.5rem;
  border-left: 1px solid var(--line);
}

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

.hero-proof strong {
  margin-bottom: 0.2rem;
  color: var(--forest);
  font-family: "Fraunces", serif;
  font-size: 1.32rem;
}

.hero-proof span {
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.45;
}

.hero-visual {
  position: relative;
  align-self: stretch;
  min-height: 520px;
}

.image-frame {
  position: absolute;
  inset: 0 0 3rem 4rem;
  overflow: hidden;
  background: var(--mint);
  border: 10px solid var(--paper);
  border-radius: 17rem 17rem 1.2rem 1.2rem;
  box-shadow: var(--shadow);
}

.image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.field-note {
  position: absolute;
  z-index: 3;
  bottom: 0;
  left: 0;
  max-width: 250px;
  padding: 1.25rem 1.4rem;
  color: white;
  background: var(--forest);
  border-left: 5px solid var(--gold);
  box-shadow: 0 16px 38px rgba(15, 48, 40, 0.25);
}

.field-note span {
  color: var(--mint);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.field-note p {
  margin: 0.45rem 0 0;
  font-family: "Fraunces", serif;
  font-size: 1.26rem;
  line-height: 1.25;
}

.signal-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: clamp(1rem, 4vw, 4rem);
  padding: 1.4rem 1.25rem;
  color: white;
  background: var(--forest);
  font-size: clamp(0.85rem, 1.1vw, 1rem);
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.signal-strip i {
  width: 0.38rem;
  height: 0.38rem;
  background: var(--gold);
  border-radius: 50%;
}

.section {
  padding: clamp(5rem, 10vw, 9rem) clamp(1.25rem, 6vw, 7rem);
}

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

.section-heading {
  display: grid;
  grid-template-columns: 0.9fr 1.6fr 1fr;
  align-items: start;
  gap: clamp(1.5rem, 4vw, 5rem);
  max-width: 1280px;
  margin: 0 auto 4rem;
}

.section-heading h2,
.section-heading p {
  margin-bottom: 0;
}

.section-heading > p:last-child {
  padding-top: 0.8rem;
  color: var(--muted);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 1280px;
  margin: 0 auto;
  border: 1px solid var(--line);
}

.service-card {
  min-height: 520px;
  padding: clamp(2rem, 4vw, 3.4rem);
  background: var(--cream);
}

.service-card + .service-card {
  border-left: 1px solid var(--line);
}

.service-card-dark {
  color: white;
  background: var(--forest);
}

.service-card-mint {
  background: var(--mint-pale);
}

.service-number {
  display: inline-block;
  margin-bottom: 4rem;
  color: var(--gold-deep);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.service-card-dark .service-number {
  color: var(--gold);
}

.service-card > p {
  min-height: 5.1rem;
  color: var(--muted);
}

.service-card-dark > p {
  color: #d9e6e1;
}

.service-card ul {
  margin: 2rem 0 0;
  padding: 1.5rem 0 0;
  border-top: 1px solid currentColor;
  list-style: none;
}

.service-card li {
  position: relative;
  padding: 0.52rem 0 0.52rem 1.15rem;
  font-size: 0.92rem;
}

.service-card li::before {
  position: absolute;
  top: 1.05rem;
  left: 0;
  width: 0.35rem;
  height: 0.35rem;
  content: "";
  background: var(--gold);
  border-radius: 50%;
}

.work-together {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(3rem, 8vw, 9rem);
  max-width: 1440px;
  margin: 0 auto;
}

.approach-intro {
  position: sticky;
  top: 2rem;
  align-self: start;
}

.approach-intro p:last-child {
  max-width: 560px;
  color: var(--muted);
  font-size: 1.08rem;
}

.approach-list article {
  display: grid;
  grid-template-columns: 3.5rem 1fr;
  gap: 1.4rem;
  padding: 2.3rem 0;
  border-top: 1px solid var(--line);
}

.approach-list article:last-child {
  border-bottom: 1px solid var(--line);
}

.approach-list article > span {
  display: grid;
  width: 2.7rem;
  height: 2.7rem;
  place-items: center;
  color: var(--forest);
  background: var(--gold);
  border-radius: 50%;
  font-size: 0.78rem;
  font-weight: 800;
}

.approach-list p {
  margin-bottom: 0;
  color: var(--muted);
}

.about {
  position: relative;
  display: grid;
  grid-template-columns: 1.5fr 0.65fr;
  gap: 2rem;
  color: white;
  background: var(--forest);
  overflow: hidden;
}

.about::after {
  position: absolute;
  right: -7rem;
  bottom: -12rem;
  width: 28rem;
  height: 28rem;
  content: "";
  border: 1px solid rgba(185, 216, 204, 0.28);
  border-radius: 50%;
}

.about-card {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 10rem 1fr;
  align-items: start;
  gap: clamp(2rem, 5vw, 5rem);
  max-width: 960px;
}

.about-photo {
  aspect-ratio: 1;
  width: 10rem;
  object-fit: cover;
  border-radius: 50%;
  border: 5px solid var(--gold);
  box-shadow: 0 18px 44px rgba(8, 30, 25, 0.36);
}

.about-card p:not(.eyebrow) {
  color: #d9e6e1;
}

.about blockquote {
  position: relative;
  z-index: 1;
  align-self: end;
  margin: 0;
  padding: 2rem;
  color: var(--forest);
  background: var(--mint);
}

.about blockquote span {
  color: var(--gold-deep);
  font-family: "Fraunces", serif;
  font-size: 4rem;
  line-height: 0.5;
}

.about blockquote p {
  margin: 1rem 0 0;
  font-family: "Fraunces", serif;
  font-size: 2rem;
  line-height: 1.1;
}

.fit {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(3rem, 8vw, 9rem);
  max-width: 1440px;
  margin: 0 auto;
}

.fit-tags {
  display: flex;
  align-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.fit-tags span {
  padding: 0.85rem 1.1rem;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-weight: 700;
}

.contact {
  display: grid;
  grid-template-columns: 1.5fr 0.7fr;
  gap: clamp(3rem, 7vw, 8rem);
  padding: clamp(5rem, 10vw, 9rem) clamp(1.25rem, 7vw, 8rem);
  color: white;
  background: var(--forest-2);
}

.contact h2 {
  max-width: 940px;
  margin-bottom: 0;
}

.eyebrow-light {
  color: var(--mint);
}

.contact-actions {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-direction: column;
  gap: 1rem;
}

.contact-actions > a:not(.button) {
  color: #d9e6e1;
  overflow-wrap: anywhere;
  text-underline-offset: 0.25rem;
}

.button-gold {
  margin-bottom: 0.5rem;
  color: var(--forest);
  background: var(--gold);
}

.button-gold:hover {
  background: #e2bb6a;
}

footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 2.2rem clamp(1.25rem, 5vw, 5rem);
  background: var(--paper);
}

footer p {
  margin: 0;
  color: var(--muted);
  font-size: 0.85rem;
}

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

  nav {
    gap: 1rem;
  }

  .hero {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    max-width: 850px;
    padding-right: 0;
  }

  .hero-visual {
    min-height: 550px;
    margin-top: 4rem;
  }

  .section-heading {
    grid-template-columns: 1fr 2fr;
  }

  .section-heading > p:last-child {
    grid-column: 2;
  }

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

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

  .service-card + .service-card {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .service-card > p {
    min-height: 0;
  }

  .service-number {
    margin-bottom: 2rem;
  }

  .about {
    grid-template-columns: 1fr;
  }

  .about blockquote {
    max-width: 500px;
  }
}

@media (max-width: 760px) {
  .site-header {
    align-items: center;
    flex-direction: column;
    gap: 1.2rem;
  }

  nav {
    justify-content: center;
    flex-wrap: wrap;
  }

  nav a:not(.nav-cta) {
    display: none;
  }

  .hero {
    min-height: 0;
    padding-top: 4rem;
  }

  .hero::before {
    display: none;
  }

  h1 {
    font-size: clamp(3.2rem, 15vw, 4.8rem);
  }

  .hero-proof {
    grid-template-columns: 1fr;
    gap: 1.3rem;
  }

  .hero-proof div + div {
    padding-top: 1.3rem;
    padding-left: 0;
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .hero-visual {
    min-height: 440px;
    margin-top: 3rem;
  }

  .image-frame {
    inset: 0 0 3rem 1.5rem;
    border-radius: 10rem 10rem 1rem 1rem;
  }

  .field-note {
    max-width: 220px;
  }

  .signal-strip {
    gap: 0.8rem;
    font-size: 0.72rem;
  }

  .section-heading,
  .work-together,
  .fit,
  .contact {
    grid-template-columns: 1fr;
  }

  .section-heading > p:last-child {
    grid-column: auto;
  }

  .approach-intro {
    position: static;
  }

  .about-card {
    grid-template-columns: 1fr;
  }

  .about-photo {
    width: 7rem;
  }

  .contact-actions {
    align-items: flex-start;
  }

  footer {
    align-items: flex-start;
    flex-direction: column;
  }
}

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

  .button {
    transition: none;
  }
}
