/* GENERAL */
@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=VT323&display=swap");
:root {
  --ink: #2f4f21;
  --bg: #f9f9f9;
  --brand: #2f4f21;
  --muted: #64748b;
  --card-bg: #ffffff;
  --border: #e5e7eb;
  --card: #cff3dd;
  --hero: #a0f1bd;
}

* {
  box-sizing: border-box;
}
body {
  font-family: "Inter", sans-serif;
  background-color: rgba(249, 249, 249, 255);
}
html {
  scroll-behavior: smooth;
}
body,
html {
  max-width: 100%;
  min-height: 100%;
  color: var(--ink);
}

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

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

/* TYPOGRAPHY */
h1 {
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-weight: 400;
  line-height: 1.1;
  margin: 0 0 0.75rem;
}
h2 {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 300;
  line-height: 1.2;
  margin: 0 0 0.5rem;
}
h3 {
  font-size: 1.25rem;
  font-weight: 300;
  margin: 0 0 0.25rem;
}
p {
  font-size: 1rem;
  line-height: 1.6;
  margin: 0.25rem 0 0;
  color: var(--ink);
}

/* LAYOUT */
.container {
  max-width: 1100px;
  margin-inline: auto;
  padding-inline: 1rem;
}
section {
  padding: 4rem 0;
}

/* SKIPLINK */
.skip-link {
  position: absolute;
  left: -9999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.skip-link:focus {
  left: 1rem;
  top: 1rem;
  width: auto;
  height: auto;
  background: #fff;
  padding: 0.5rem 0.75rem;
  border-radius: 8px;
  outline: 2px solid var(--brand);
}

/* HEADER */
.site-header {
  background: var(--hero);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.75rem 0;
}

.logo {
  font-weight: 500;
  text-decoration: none;
  color: var(--ink);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1rem;
  color: var(--ink);
}

.site-nav a {
  text-decoration: none;
  font-weight: 300;
}

/* BUTTONS */
.btn {
  display: flex;
  justify-content: center;
  gap: 1rem;
  font-weight: 300;
  color: white;
  transition: all 300ms ease;
  padding: 0.75rem;
  width: 11rem;
  border-radius: 2rem;
  border: rgb(47, 79, 33) 0.1rem solid;
  background-color: rgb(47, 79, 33);
  font-size: 0.75em;
}

.btn_services {
  display: inline-block;
  justify-content: center;
  text-align: center;
  gap: 1rem;
  font-weight: 300;
  color: white;
  transition: all 300ms ease;
  padding: 0.75rem;
  width: 12rem;
  border-radius: 2rem;
  border: rgb(47, 79, 33) 0.1rem solid;
  background-color: rgb(47, 79, 33);
  font-size: 0.75em;
}

.pills {
  border-radius: 0.37rem;
  padding: 0.7rem;
  width: 6rem;
  border: rgba(249, 249, 249, 255) 0.1rem solid;
  background-color: rgb(216, 221, 226);
  color: rgb(47, 79, 33);
  font-size: 0.75em;
}

/* HERO */
#hero {
  background: var(--hero);
}
#hero .grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr; /* tweak to taste */
  align-items: center;
  gap: 2rem;
}

.hero__cta {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 1rem;
  flex-wrap: wrap;
}

.hero__media {
  display: flex;
  justify-content: center;
}

.hero__media img {
  display: block;
  max-width: 520px;
  width: 100%;
  height: auto;
}

/* SERVICES (CARDS) */
#services-title,
#services-subtext,
.kicker {
  text-align: center;
}

.cards__container {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  margin-top: 2.5rem;
}
.card {
  background: var(--card);
  border-radius: 24px;
  padding: 3rem;
  box-shadow: 0 10px 30px rgba(17, 24, 39, 0.06);
  border: 1px solid #e6f5ee;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
  gap: 2rem;
  color: rgb(47, 79, 33);
}
.card .media img {
  width: min(360px, 100%);
  height: auto;
}
.card h3 {
  font-size: clamp(1.75rem, 2.5vw, 2.5rem);
  font-weight: 300;
}
.card p {
  max-width: 55ch;
}
.pills {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-top: 1rem;
}
.pill {
  display: inline-block;
  background: #fff;
  color: var(--ink);
  border: 1px solid var(--border);
  padding: 0.6rem 0.9rem;
  border-radius: 12px;
  font-size: 0.9rem;
  text-decoration: none;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.03);
}

.services-cta {
  display: flex;
  justify-content: center;
  margin-top: 1.5rem;
}

/* TESTIMONIALS */
#testimonials{
    padding-top: 0;
    margin-top: 0;
}
.testimonial-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
  margin-top: 2.5rem;
  
}

#testimonials h2 {
  grid-column: 1 / -1;
  text-align: center;
  margin: 0 0 2rem;
}

.roles ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.roles li {
  cursor: pointer;
  padding: 1rem;
  border-left: 2px solid transparent;
  transition: all 0.3s ease;
  margin-bottom: 1rem;
  font-weight: 400;
  border-radius: 12px;
}

.roles li small {
  display: block;
  font-size: 0.85rem;
  opacity: 0.8;
}

.roles li.active {
  background: var(--brand);
  color: #fff;
}

.testimonial {
  display: none;
  opacity: 0;
  transition: opacity 0.35s ease;
}

.testimonial.active {
  display: block;
  opacity: 1;
}

.testimonial blockquote {
  font-size: clamp(1.4rem, 2.4vw, 2rem);
  line-height: 1.35;
  margin: 0 0 1rem;
}

.testimonial p {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.95rem;
  margin: 0;
}

.testimonial img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
}

.roles li:hover { background: color-mix(in oklab, var(--brand), white 70%); }
.roles li:focus-visible {
  outline: 2px solid color-mix(in oklab, var(--brand), white 25%);
  outline-offset: 2px;
}

.testimonial-grid {
  position: relative;
}

/* AUDIENCE */
#audience {
  padding: 0 0 4rem;
}

#audience .banner {
  display: block;
  width: 100%;
  height: 65vh;
  min-height: 400px;
  max-height: 700px;
  object-fit: cover;
}

#audience .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 4vw, 3rem);
  align-items: start;
  padding-top: 3rem;
}

#audience-title {
  grid-column: 1;
  margin: 0;
  font-size: clamp(2.75rem, 6vw, 5.2rem);
  font-weight: 300;
  line-height: 1.06;
  text-align: left;
}

#audience .container > p {
  grid-column: 2;
  margin: 0;
  max-width: 60ch;
}

/* 3-up tiles (desktop) */
.audience-segments {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(2rem, 3.5vw, 4rem);
  margin-top: clamp(2.5rem, 5vw, 4rem);
  align-items: start;
}

.segment {
  padding-inline: clamp(0.5rem, 1.5vw, 1.75rem);
  border-left: 1px solid color-mix(in oklab, var(--ink), transparent 70%);
}
.segment:first-child {
  border-left: 0;
}

.segment h4 {
  margin: 0 0 0.75rem;
  font-weight: 400;
  font-size: clamp(1.5rem, 2.4vw, 2rem);
  line-height: 1.15;
}

.segment .eyebrow {
  color: var(--ink);
  margin: 0 0 0.75rem;
  font-weight: 500;
}

.segment p {
  margin: 0;
  max-width: 48ch;
}

.segment .icon {
  margin-bottom: 0.75rem;
  font-size: clamp(1.25rem, 2vw, 1.75rem);
}

/* CONNECT */
#connect {
  text-align: center;
  padding: 6rem 0 4rem;
}

#connect-title {
  max-width: 40ch;
  margin: 0 auto 1.5rem;
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  font-weight: 300;
  line-height: 1.3;
}

#connect .connect_inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
}

#connect .btn {
  margin-top: 1rem;
}

/* FOOTER */

/* SCREEN-READER-ONLY HELPER */
.sr-only {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

footer.site-footer {
  background: var(--ink);
  color: #fff;
  padding: 4rem 1rem 2rem;
}

/* TOP FOOTER ROW */
footer .foot-top {
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 1rem;
}

footer .brand {
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  font-size: clamp(1.25rem, 2vw, 2rem);
}

footer .footer-link {
  color: #fff;
  text-decoration: none;
  font-weight: 400;
  opacity: 0.95;
}

/* WHITE PILL CTA */
footer .btn.btn-invert {
  background: #fff;
  color: var(--ink);
  border: none;
  padding: 0.9rem 1.6rem;
  border-radius: 999px;
  width: auto;
}

/* BOTTOM FOOTER ROW  */
footer .foot-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  align-items: flex-end;
  gap: 1rem;
  margin-top: 3.5rem;
  flex-wrap: wrap;
}

footer .foot-tagline {
  margin: 0;
  max-width: 46ch;
  flex: 1 1 60%;
}
footer .foot-tagline strong {
  display: block;
  margin-bottom: 0.25rem;
  font-weight: 700;
}

footer .foot-copy {
  margin: 0;
  opacity: 0.95;
  flex: 0 0 auto;
  white-space: nowrap;
  color: #fff;
}

footer.site-footer p {
  color: #fff;
  font-size: 0.875rem; 
  line-height: 1.4; 
  margin: 0;  
}
