/* ── PAGE HERO ── */
.page-hero {
  position: relative;
  height: 60vh;
  min-height: 440px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding-top: 0;
}

.page-hero-bg {
  position: absolute;
  inset: 0;
}

.page-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(.55);
}

.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(28, 43, 29, .25), rgba(28, 43, 29, .65));
}

.page-hero-wave {
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  z-index: 2;
}

.page-hero-wave svg {
  display: block;
  width: 100%;
}

.page-hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  color: var(--white);
  padding: 0 2rem;
}

.page-hero-content .eyebrow {
  font-size: .65rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .55);
  font-weight: 600;
  margin-bottom: .8rem;
  display: block;
}

.page-hero-content h1 {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 6vw, 5.5rem);
  line-height: .95;
  letter-spacing: -.5px;
}

.page-hero-content h1 em {
  font-style: italic;
  color: var(--gold-light);
}

.page-hero-content p {
  font-size: .95rem;
  color: rgba(255, 255, 255, .65);
  margin-top: 1rem;
  font-weight: 300;
  max-width: 520px;
  line-height: 1.75;
}

/* ── SHARED SECTION UTILS ── */
.pg {
  padding: 6rem 3rem;
}

.pg.bg-cream {
  background: var(--cream);
}

.pg.bg-forest {
  background: var(--forest);
}

.pg.bg-ivory {
  background: var(--ivory);
}

.pg.bg-dark {
  background: var(--text-dark);
}

.pg.bg-cream-dark {
  background: var(--cream-dark);
}

.wrap {
  max-width: 1200px;
  margin: 0 auto;
}

.eyebrow {
  font-size: .65rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--forest-light);
  font-weight: 600;
  margin-bottom: .8rem;
  display: flex;
  align-items: center;
  gap: .6rem;
}

.eyebrow::before {
  content: '';
  width: 18px;
  height: 1.5px;
  background: var(--forest-light);
  flex-shrink: 0;
}

.eyebrow.light {
  color: rgba(255, 255, 255, .45);
}

.eyebrow.light::before {
  background: rgba(255, 255, 255, .3);
}

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

.eyebrow.gold::before {
  background: var(--gold-light);
}

.h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 1;
  color: var(--text-dark);
}

.h2 em {
  font-style: italic;
  color: var(--forest);
}

.h2.light {
  color: var(--white);
}

.h2.light em {
  color: var(--gold-light);
}

.body-text {
  font-size: .93rem;
  color: var(--text-mid);
  line-height: 1.85;
  font-weight: 300;
  max-width: 540px;
}

.body-text.light {
  color: rgba(255, 255, 255, .6);
}

.center {
  text-align: center;
}

.center .eyebrow {
  justify-content: center;
}

.center .body-text {
  margin: 0 auto;
}

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.three-col {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.four-col {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.sec-head {
  margin-bottom: 3rem;
}

/* ── CTA BANNER ── */
.cta-banner {
  background: var(--forest);
  padding: 5rem 3rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 50%, rgba(201, 168, 76, .08), transparent 70%);
}

.cta-banner-inner {
  position: relative;
  z-index: 1;
  max-width: 680px;
  margin: 0 auto;
}

.cta-banner h2 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4.5vw, 3.8rem);
  color: var(--white);
  line-height: 1;
  margin-bottom: 1rem;
}

.cta-banner h2 em {
  font-style: italic;
  color: var(--gold-light);
}

.cta-banner p {
  font-size: .95rem;
  color: rgba(255, 255, 255, .6);
  margin-bottom: 2rem;
  font-weight: 300;
  line-height: 1.75;
}

.cta-banner-actions {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn-gold {
  display: inline-flex;
  align-items: center;
  gap: .7rem;
  background: var(--gold);
  color: var(--text-dark);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: .9rem 2rem;
  border-radius: 1px;
  text-decoration: none;
  transition: background .3s, transform .25s;
  
}

.btn-gold:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
}

.btn-outline-white {
  display: inline-flex;
  align-items: center;
  gap: .7rem;
  border: 1.5px solid rgba(255, 255, 255, .3);
  color: var(--white);
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: .9rem 2rem;
  border-radius: 1px;
  text-decoration: none;
  transition: border-color .3s, background .3s;
  
}

.btn-outline-white:hover {
  border-color: rgba(255, 255, 255, .7);
  background: rgba(255, 255, 255, .05);
}

/* ── STAT ROW ── */
.stat-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
}

.stat-box {
  padding: 2.5rem;
  text-align: center;
  background: var(--ivory);
}

.stat-num {
  font-family: var(--font-display);
  font-size: 3.5rem;
  color: var(--forest);
  line-height: 1;
  display: block;
}

.stat-label {
  font-size: .65rem;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--text-light);
  margin-top: .4rem;
  display: block;
  font-weight: 600;
}

.stat-box.dark-bg {
  background: var(--text-dark);
}

.stat-box.dark-bg .stat-num {
  color: var(--gold-light);
}

.stat-box.dark-bg .stat-label {
  color: rgba(255, 255, 255, .4);
}

/* ── CARD STYLES ── */
.card {
  background: var(--white);
  border-radius: 2px;
  overflow: hidden;
  transition: transform .4s, box-shadow .4s;
  border: 1px solid rgba(44, 74, 46, .06);
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 50px rgba(28, 43, 29, .1);
}

.card-img {
  overflow: hidden;
  height: 220px;
}

.card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .7s;
  filter: brightness(.92);
}

.card:hover .card-img img {
  transform: scale(1.05);
}

.card-body {
  padding: 1.8rem;
}

.card-tag {
  font-size: .6rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--forest-light);
  margin-bottom: .5rem;
  display: block;
}

.card-title {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--text-dark);
  margin-bottom: .6rem;
  line-height: 1.15;
}

.card-desc {
  font-size: .84rem;
  color: var(--text-mid);
  line-height: 1.75;
  font-weight: 300;
}

/* ── PROCESS STEPS ── */
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.process-step {
  text-align: center;
  position: relative;
}

.process-step::after {
  content: '';
  position: absolute;
  top: 28px;
  left: calc(50% + 28px);
  right: calc(-50% + 28px);
  height: 1px;
  background: var(--border);
}

.process-step:last-child::after {
  display: none;
}

.step-num {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 1.5px solid var(--forest);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.2rem;
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--forest);
}

.step-title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--text-dark);
  margin-bottom: .5rem;
  letter-spacing: .3px;
}

.step-desc {
  font-size: .82rem;
  color: var(--text-mid);
  line-height: 1.7;
  font-weight: 300;
}

/* ── TESTIMONIAL ── */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.testi-card {
  background: var(--white);
  border-radius: 2px;
  padding: 2rem;
  border: 1px solid rgba(44, 74, 46, .08);
  position: relative;
}

.testi-card::before {
  content: '\201C';
  position: absolute;
  top: 1rem;
  right: 1.5rem;
  font-size: 5rem;
  line-height: 1;
  color: rgba(44, 74, 46, .07);
  font-family: Georgia, serif;
}

.testi-stars {
  display: flex;
  gap: .25rem;
  margin-bottom: 1.2rem;
}

.testi-stars span {
  color: var(--gold);
  font-size: .9rem;
}

.testi-text {
  font-size: .88rem;
  color: var(--text-mid);
  line-height: 1.8;
  font-weight: 300;
  font-style: italic;
  margin-bottom: 1.5rem;
}

.testi-author {
  display: flex;
  align-items: center;
  gap: .8rem;
}

.testi-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  filter: grayscale(20%);
}

.testi-name {
  font-weight: 600;
  font-size: .85rem;
  color: var(--text-dark);
}

.testi-role {
  font-size: .72rem;
  color: var(--text-light);
}

/* ── FAQ ── */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.3rem 0;
  
  font-weight: 500;
  font-size: .92rem;
  color: var(--text-dark);
  gap: 2rem;
}

.faq-q svg {
  width: 18px;
  height: 18px;
  stroke: var(--forest);
  fill: none;
  stroke-width: 1.5;
  flex-shrink: 0;
  transition: transform .3s;
}

.faq-item.open .faq-q svg {
  transform: rotate(45deg);
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s ease, padding .3s;
}

.faq-item.open .faq-a {
  max-height: 200px;
  padding-bottom: 1.2rem;
}

.faq-a p {
  font-size: .87rem;
  color: var(--text-mid);
  line-height: 1.8;
  font-weight: 300;
}

/* ── TEAM CARD ── */
.team-card {
  border-radius: 2px;
  overflow: hidden;
  background: var(--white);
  border: 1px solid rgba(44, 74, 46, .06);
  transition: transform .35s, box-shadow .35s;
}

.team-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(28, 43, 29, .1);
}

.team-img {
  height: 260px;
  overflow: hidden;
  position: relative;
}

.team-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(20%);
  transition: transform .6s, filter .4s;
}

.team-card:hover .team-img img {
  transform: scale(1.04);
  filter: grayscale(0%);
}

.team-dept {
  position: absolute;
  top: .8rem;
  left: .8rem;
  background: var(--forest);
  color: var(--white);
  font-size: .58rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: .3rem .7rem;
  border-radius: 1px;
}

.team-info {
  padding: 1.3rem;
}

.team-name {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--text-dark);
  margin-bottom: .2rem;
}

.team-role {
  font-size: .72rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--forest-light);
  margin-bottom: .7rem;
}

.team-bio {
  font-size: .8rem;
  color: var(--text-mid);
  line-height: 1.65;
  font-weight: 300;
}

/* ── BLOG CARD ── */
.blog-card {
  border-radius: 2px;
  overflow: hidden;
  background: var(--white);
  border: 1px solid rgba(44, 74, 46, .07);
  transition: transform .35s, box-shadow .35s;
  text-decoration: none;
  display: block;
}

.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 45px rgba(28, 43, 29, .1);
}

.blog-img {
  height: 200px;
  overflow: hidden;
  position: relative;
}

.blog-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s;
  filter: brightness(.92);
}

.blog-card:hover .blog-img img {
  transform: scale(1.05);
}

.blog-cat-badge {
  position: absolute;
  top: .8rem;
  left: .8rem;
  background: var(--forest);
  color: var(--white);
  font-size: .58rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: .3rem .7rem;
  border-radius: 1px;
}

.blog-body {
  padding: 1.5rem;
}

.blog-meta {
  font-size: .7rem;
  letter-spacing: 1px;
  color: var(--text-light);
  text-transform: uppercase;
  margin-bottom: .6rem;
}

.blog-title {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--text-dark);
  margin-bottom: .5rem;
  line-height: 1.2;
  transition: color .3s;
}

.blog-card:hover .blog-title {
  color: var(--forest);
}

.blog-excerpt {
  font-size: .82rem;
  color: var(--text-mid);
  line-height: 1.7;
  font-weight: 300;
}

/* ── PRICING CARDS ── */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 1000px;
  margin: 0 auto;
}

.price-card {
  background: var(--white);
  border: 1.5px solid rgba(44, 74, 46, .12);
  border-radius: 2px;
  padding: 2.5rem;
  position: relative;
  transition: transform .3s, box-shadow .3s, border-color .3s;
}

.price-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(28, 43, 29, .1);
}

.price-card.featured {
  border-color: var(--forest);
  background: linear-gradient(145deg, rgba(44, 74, 46, .03), var(--white));
}

.featured-badge {
  position: absolute;
  top: -1px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--forest);
  color: var(--white);
  font-size: .58rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: .35rem 1rem;
  border-radius: 0 0 3px 3px;
}

.plan-name {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--text-dark);
  margin-bottom: .3rem;
}

.plan-tagline {
  font-size: .8rem;
  color: var(--text-light);
  margin-bottom: 1.8rem;
  font-weight: 300;
}

.plan-price {
  display: flex;
  align-items: baseline;
  gap: .3rem;
  margin-bottom: 2rem;
}

.plan-price-curr {
  font-size: 1.2rem;
  color: var(--text-mid);
}

.plan-price-num {
  font-family: var(--font-display);
  font-size: 3.2rem;
  color: var(--text-dark);
  line-height: 1;
}

.plan-price-period {
  font-size: .8rem;
  color: var(--text-light);
  margin-left: .2rem;
  font-weight: 300;
}

.plan-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: .7rem;
  margin-bottom: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
}

.plan-features li {
  display: flex;
  align-items: flex-start;
  gap: .7rem;
  font-size: .84rem;
  color: var(--text-mid);
  font-weight: 300;
}

.feat-check {
  color: var(--forest);
  flex-shrink: 0;
}

.feat-x {
  color: rgba(0, 0, 0, .2);
  flex-shrink: 0;
}

.plan-cta {
  display: block;
  text-align: center;
  padding: .9rem;
  border-radius: 1px;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  text-decoration: none;
  transition: all .3s;
}

.plan-cta-outline {
  border: 1.5px solid var(--border);
  color: var(--text-mid);
}

.plan-cta-outline:hover {
  border-color: var(--forest);
  color: var(--forest);
}

.plan-cta-filled {
  background: var(--forest);
  color: var(--white);
}

.plan-cta-filled:hover {
  background: var(--forest-mid);
  transform: translateY(-1px);
}

/* ── COMPARE TABLE ── */
.compare-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 3rem;
}

.compare-table th {
  font-family: var(--font-display);
  font-size: .95rem;
  letter-spacing: .5px;
  text-align: left;
  padding: 1rem 1.5rem;
  background: var(--forest);
  color: var(--white);
  border-bottom: 2px solid rgba(255, 255, 255, .1);
}

.compare-table th:not(:first-child) {
  text-align: center;
}

.compare-table td {
  padding: .9rem 1.5rem;
  border-bottom: 1px solid var(--border);
  font-size: .85rem;
  color: var(--text-mid);
  font-weight: 300;
}

.compare-table td:not(:first-child) {
  text-align: center;
}

.compare-table tr:hover td {
  background: rgba(44, 74, 46, .02);
}

.chk {
  color: var(--forest);
  font-size: 1rem;
}

.xmk {
  color: rgba(0, 0, 0, .15);
  font-size: .9rem;
}

/* ── CONTACT FORM ── */
.contact-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  min-height: 70vh;
}

.contact-left {
  background: var(--forest);
  padding: 5rem 4rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.contact-left::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: .08;
  background-image: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='1'%3E%3Ccircle cx='20' cy='20' r='1'/%3E%3C/g%3E%3C/svg%3E");
}

.contact-left .eyebrow {
  color: rgba(255, 255, 255, .4);
}

.contact-left .eyebrow::before {
  background: rgba(255, 255, 255, .3);
}

.contact-left .h2 {
  color: var(--white);
  margin-bottom: 1.5rem;
}

.contact-left .h2 em {
  color: var(--gold-light);
}

.contact-left .body-text {
  color: rgba(255, 255, 255, .55);
  margin-bottom: 2.5rem;
}

.contact-info-list {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.c-icon {
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, .08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.c-icon svg {
  width: 15px;
  height: 15px;
  stroke: var(--gold-light);
  fill: none;
  stroke-width: 1.5;
}

.c-val {
  font-size: .88rem;
  color: rgba(255, 255, 255, .65);
  font-weight: 300;
  line-height: 1.6;
}

.c-val strong {
  color: rgba(255, 255, 255, .9);
  font-weight: 500;
  display: block;
  font-size: .7rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: .2rem;
}

.contact-right {
  background: var(--cream);
  padding: 5rem 4rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.cf-title {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--text-dark);
  margin-bottom: 2rem;
  line-height: 1.1;
}

.res-form {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.1rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: .35rem;
}

.form-group label {
  font-size: .62rem;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--text-mid);
  font-weight: 600;
}

.form-group input,
.form-group select,
.form-group textarea {
  background: var(--white);
  border: 1.5px solid rgba(44, 74, 46, .12);
  color: var(--text-dark);
  padding: .82rem 1rem;
  font-family: var(--font-body);
  font-size: .88rem;
  border-radius: 1px;
  outline: none;
  transition: border-color .3s;
  -webkit-appearance: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--forest);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-light);
}

.form-group textarea {
  resize: vertical;
  min-height: 100px;
}

.form-group select {
  
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='7'%3E%3Cpath d='M0 0l5 7 5-7z' fill='%238A9E8B'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}

.form-note {
  font-size: .72rem;
  color: var(--text-light);
  margin-top: .5rem;
  font-weight: 300;
  line-height: 1.6;
}

/* ── ROLES LIST ── */
.roles-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.role-item {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--border);
  gap: 2rem;
  transition: border-color .3s;
}

.role-item:hover {
  border-bottom-color: rgba(44, 74, 46, .25);
}

.role-title {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--text-dark);
  margin-bottom: .4rem;
  transition: color .3s;
}

.role-item:hover .role-title {
  color: var(--forest);
}

.role-meta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.role-meta-item {
  font-size: .72rem;
  color: var(--text-light);
}

.role-type-tag {
  font-size: .6rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  background: rgba(44, 74, 46, .08);
  border: 1px solid rgba(44, 74, 46, .12);
  color: var(--forest);
  padding: .2rem .6rem;
  border-radius: 1px;
}

.role-apply {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-size: .72rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--forest);
  text-decoration: none;
  white-space: nowrap;
  transition: gap .3s;
}

.role-item:hover .role-apply {
  gap: .8rem;
}

/* ── FILTER BAR ── */
.filter-bar {
  display: flex;
  gap: .6rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}

.filter-btn {
  padding: .45rem 1.1rem;
  border: 1.5px solid var(--border);
  background: transparent;
  color: var(--text-mid);
  font-size: .72rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border-radius: 1px;
  
  transition: all .3s;
  font-family: var(--font-body);
}

.filter-btn.active,
.filter-btn:hover {
  background: var(--forest);
  color: var(--white);
  border-color: var(--forest);
}

/* ── PROJECT CARD ── */
.project-card {
  border-radius: 2px;
  overflow: hidden;
  border: 1px solid rgba(44, 74, 46, .07);
  transition: transform .4s, box-shadow .4s;
  background: var(--white);
}

.project-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 50px rgba(28, 43, 29, .12);
}

.project-img {
  height: 250px;
  overflow: hidden;
  position: relative;
}

.project-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .7s;
  filter: brightness(.88);
}

.project-card:hover .project-img img {
  transform: scale(1.05);
}

.proj-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(28, 43, 29, .8), transparent 50%);
  opacity: 0;
  transition: opacity .4s;
  display: flex;
  align-items: flex-end;
  padding: 1.5rem;
}

.project-card:hover .proj-overlay {
  opacity: 1;
}

.proj-overlay-link {
  font-size: .7rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold-light);
  text-decoration: none;
}

.project-body {
  padding: 1.5rem;
  background: var(--white);
}

.proj-tags {
  display: flex;
  gap: .4rem;
  flex-wrap: wrap;
  margin-bottom: .7rem;
}

.proj-tag {
  font-size: .6rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  background: rgba(44, 74, 46, .06);
  border: 1px solid rgba(44, 74, 46, .1);
  color: var(--forest);
  padding: .2rem .6rem;
  border-radius: 1px;
}

.proj-title {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--text-dark);
  margin-bottom: .3rem;
  transition: color .3s;
}

.project-card:hover .proj-title {
  color: var(--forest);
}

.proj-result {
  font-size: .8rem;
  color: var(--text-mid);
  font-weight: 300;
}

.proj-result strong {
  color: var(--forest);
  font-weight: 600;
}

/* ── MAP STRIP ── */
.map-strip {
  position: relative;
  height: 480px;
  overflow: hidden;
}

.map-strip img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(25%) sepia(15%);
}

.map-strip-card {
  position: absolute;
  right: 8%;
  top: 50%;
  transform: translateY(-50%);
  background: var(--forest);
  padding: 2.5rem;
  border-radius: 2px;
  min-width: 300px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, .2);
}

.map-strip-card h3 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--white);
  margin-bottom: 1.5rem;
}

/* ── ARTICLE PROSE ── */
.prose {
  font-size: .93rem;
  color: var(--text-mid);
  line-height: 1.9;
  font-weight: 300;
}

.prose h2 {
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: var(--text-dark);
  margin: 2.5rem 0 .8rem;
}

.prose h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--text-dark);
  margin: 2rem 0 .6rem;
}

.prose p {
  margin-bottom: 1.2rem;
}

.prose blockquote {
  border-left: 3px solid var(--forest);
  padding: 1rem 1.5rem;
  margin: 2rem 0;
  background: rgba(44, 74, 46, .04);
  border-radius: 0 2px 2px 0;
}

.prose blockquote p {
  color: var(--text-dark);
  font-style: italic;
  margin: 0;
}

.prose strong {
  color: var(--text-dark);
  font-weight: 600;
}

.prose a {
  color: var(--forest);
  text-decoration: none;
  border-bottom: 1px solid rgba(44, 74, 46, .25);
}

.prose ul,
.prose ol {
  margin: 1rem 0 1.2rem 1.5rem;
}

.prose li {
  margin-bottom: .4rem;
}

/* ── VALUES GRID ── */
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  margin-top: 3rem;
}

.value-card {
  background: var(--ivory);
  padding: 2.5rem;
  border-bottom: 3px solid transparent;
  transition: border-color .3s, background .3s;
}

.value-card:hover {
  background: var(--white);
  border-color: var(--forest);
}

.val-num {
  font-family: var(--font-display);
  font-size: 3rem;
  color: rgba(44, 74, 46, .1);
  line-height: 1;
  margin-bottom: .8rem;
}

.val-title {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--text-dark);
  margin-bottom: .5rem;
}

.val-desc {
  font-size: .84rem;
  color: var(--text-mid);
  line-height: 1.75;
  font-weight: 300;
}

/* ── CULTURE ── */
.culture-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--border);
}

.culture-card {
  padding: 3rem;
  background: var(--cream);
}

.culture-card:nth-child(even) {
  background: var(--forest);
  color: var(--white);
}

.culture-card h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  margin-bottom: .8rem;
}

.culture-card:nth-child(even) h3 {
  color: var(--white);
}

.culture-card p {
  font-size: .88rem;
  line-height: 1.8;
  font-weight: 300;
  opacity: .7;
}

/* ── RESPONSIVE ── */
@media(max-width: 1100px) {
  .four-col {
    grid-template-columns: repeat(2, 1fr);
  }
  .process-steps {
    grid-template-columns: repeat(2, 1fr);
  }
  .process-step::after {
    display: none;
  }
}

@media(max-width: 900px) {
  .pg {
    padding: 4.5rem 1.5rem;
  }
  .two-col {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .three-col,
  .testimonials-grid {
    grid-template-columns: 1fr 1fr;
  }
  .pricing-grid {
    grid-template-columns: 1fr;
  }
  .stat-row {
    grid-template-columns: 1fr 1fr;
  }
  .contact-split {
    grid-template-columns: 1fr;
  }
  .contact-left,
  .contact-right {
    padding: 4rem 2rem;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
  .map-strip {
    height: auto;
    display: flex;
    flex-direction: column;
  }
  .map-strip img {
    height: 300px;
  }
  .map-strip-card {
    position: static;
    transform: none;
    border-radius: 0;
    min-width: unset;
    width: 100%;
  }
  .values-grid {
    grid-template-columns: 1fr 1fr;
  }
  .culture-grid {
    grid-template-columns: 1fr;
  }
}

@media(max-width: 600px) {
  .three-col,
  .testimonials-grid,
  .four-col {
    grid-template-columns: 1fr;
  }
  .stat-row {
    grid-template-columns: 1fr 1fr;
  }
  .values-grid {
    grid-template-columns: 1fr;
  }
  .process-steps {
    grid-template-columns: 1fr;
  }
  .cta-banner-actions {
    flex-direction: column;
    align-items: center;
  }
}