@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400&family=Raleway:wght@300;400;500;600;700&display=swap');

/* ===== VARIABLES ===== */
:root {
  --green:        #2B5340;
  --green-hover:  #3A6B55;
  --green-dark:   #1D3C2E;
  --green-pale:   #EAF0EC;
  --dark:         #161D1A;
  --dark-mid:     #3A4440;
  --dark-light:   #4A5850;
  --dark-subtle:  #9AA8A4;
  --bg:           #F7F5F0;
  --bg-warm:      #EEE9DF;
  --bg-section:   #E5E0D5;
  --white:        #FFFFFF;
  --border:       #DDD9D0;

  --font-heading: 'Playfair Display', serif;
  --font-body:    'Raleway', sans-serif;

  --max-width:  1160px;
  --nav-height: 80px;

  --ease:            cubic-bezier(0.4, 0, 0.2, 1);
  --transition-fast: 150ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition:      250ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 400ms cubic-bezier(0.4, 0, 0.2, 1);

  --shadow-sm: 0 1px 3px rgba(22,29,26,.06), 0 1px 2px rgba(22,29,26,.04);
  --shadow-md: 0 4px 16px rgba(22,29,26,.08), 0 2px 6px rgba(22,29,26,.04);
  --shadow-lg: 0 20px 60px rgba(22,29,26,.10);
}

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

/* ===== BASE ===== */
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font-body);
  font-weight: 300;
  background-color: var(--bg);
  color: var(--dark);
  line-height: 1.7;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a   { color: inherit; text-decoration: none; }
ul  { list-style: none; }

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5 {
  font-family: var(--font-heading);
  font-weight: 500;
  letter-spacing: 0.02em;
  line-height: 1.25;
}

.section-label {
  font-family: var(--font-body);
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 1rem;
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  color: var(--dark);
  margin-bottom: 1rem;
}

.section-subtitle {
  font-size: .975rem;
  color: var(--dark-light);
  max-width: 580px;
  line-height: 1.9;
}

.green-rule         { width: 48px; height: 2px; background: var(--green); margin: 1.5rem 0; }
.green-rule--center { margin: 1.5rem auto; }

/* ===== LAYOUT ===== */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 2rem;
}

.section       { padding: 6rem 0; }
.section--alt  { background-color: var(--bg-warm); }
.section--dark { background-color: var(--dark); color: var(--white); }

/* ===== NAVIGATION ===== */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--nav-height);
  background: var(--bg);
  border-bottom: 1px solid var(--border);
  transition: box-shadow var(--transition);
}
.nav.scrolled { box-shadow: var(--shadow-md); }

.nav__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 2rem;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: .875rem;
}

.nav__logo-img { height: 48px; width: auto; }

.nav__logo-text { display: flex; flex-direction: column; line-height: 1; }

.nav__logo-name {
  font-family: var(--font-heading);
  font-size: .95rem;
  letter-spacing: .06em;
  color: var(--dark);
}
.nav__logo-sub {
  font-family: var(--font-body);
  font-size: .55rem;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--dark-light);
  margin-top: 5px;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav__link {
  font-family: var(--font-body);
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--dark-mid);
  position: relative;
  padding-bottom: 2px;
  transition: color var(--transition-fast);
  cursor: pointer;
}
.nav__link::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0;
  width: 0; height: 1px;
  background: var(--green);
  transition: width var(--transition);
}
.nav__link:hover,
.nav__link.active { color: var(--green); }
.nav__link:hover::after,
.nav__link.active::after { width: 100%; }

.nav__cta {
  background: var(--green);
  color: var(--white);
  font-family: var(--font-body);
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .17em;
  text-transform: uppercase;
  padding: .65rem 1.5rem;
  border: 1px solid var(--green);
  transition: background var(--transition-fast), color var(--transition-fast);
  cursor: pointer;
}
.nav__cta:hover { background: transparent; color: var(--green); }

.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}
.nav__hamburger span {
  display: block;
  width: 24px; height: 1.5px;
  background: var(--dark);
  transition: transform var(--transition), opacity var(--transition);
}

.nav__mobile {
  display: none;
  position: fixed;
  top: var(--nav-height); left: 0; right: 0;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
  padding: 2rem;
  z-index: 99;
  flex-direction: column;
  gap: 1.5rem;
}
.nav__mobile.open { display: flex; }
.nav__mobile .nav__link { font-size: .82rem; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-block;
  font-family: var(--font-body);
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  padding: .9rem 2.25rem;
  cursor: pointer;
  transition: all var(--transition-fast);
  border: none;
}

.btn--primary        { background: var(--green); color: var(--white); border: 1px solid var(--green); }
.btn--primary:hover  { background: var(--green-dark); border-color: var(--green-dark); }

.btn--outline        { background: transparent; color: var(--dark); border: 1px solid var(--dark); }
.btn--outline:hover  { background: var(--dark); color: var(--white); }

.btn--outline-green        { background: transparent; color: var(--green); border: 1px solid var(--green); }
.btn--outline-green:hover  { background: var(--green); color: var(--white); }

.btn--outline-white        { background: transparent; color: var(--white); border: 1px solid rgba(255,255,255,.55); }
.btn--outline-white:hover  { background: var(--white); color: var(--dark); }

/* ===== HERO ===== */
.hero {
  min-height: calc(100vh - var(--nav-height));
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-image: url('prop1.jpg');
  background-size: cover;
  background-position: center;
  padding: 5rem 2rem;
  transform: translateZ(0);
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(14, 24, 18, 0.60) 0%,
    rgba(14, 24, 18, 0.75) 60%,
    rgba(14, 24, 18, 0.82) 100%
  );
}

.hero__content {
  position: relative;
  z-index: 1;
  max-width: 800px;
}

.hero__logo {
  height: auto;
  width: min(480px, 80vw);
  margin: 0 auto 2.75rem;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.hero__eyebrow {
  font-family: var(--font-body);
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: rgba(255,255,255,.75);
  margin-bottom: 1.5rem;
}

.hero__title {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 5.5vw, 4.2rem);
  font-weight: 500;
  letter-spacing: .02em;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 1.75rem;
}

.hero__subtitle {
  font-size: 1rem;
  font-weight: 300;
  color: rgba(255,255,255,.75);
  line-height: 1.9;
  margin-bottom: 2.75rem;
  max-width: 620px;
  margin-left: auto;
  margin-right: auto;
}

.hero__actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.hero__actions .btn {
  min-width: 168px;
  text-align: center;
}

/* ===== INTRO / ABOUT ===== */
.intro-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.intro-split__img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}

.intro-pillars {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-top: 2.75rem;
  padding-top: 2.75rem;
  border-top: 1px solid var(--border);
}

.intro-pillar__value {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  color: var(--green);
  line-height: 1;
  font-style: italic;
}

.intro-pillar__label {
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--dark-subtle);
  margin-top: .4rem;
}

/* ===== SERVICES (3 PILLARS) ===== */
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3.5rem;
}

.pillar-card {
  border: 1px solid var(--border);
  padding: 2.75rem 2rem 2.25rem;
  background: var(--bg);
  transition: box-shadow var(--transition), transform var(--transition), border-color var(--transition);
}
.pillar-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
  border-color: var(--green);
}

.pillar-card__icon {
  width: 40px;
  height: 40px;
  margin-bottom: 1.75rem;
}

.pillar-card__title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  color: var(--dark);
  margin-bottom: .875rem;
}

.pillar-card__desc {
  font-size: .88rem;
  color: var(--dark-light);
  line-height: 1.9;
}

/* ===== PORTFOLIO ===== */
.portfolio-intro {
  max-width: 520px;
}

.portfolio-category {
  margin-top: 3rem;
}

.portfolio-category__title {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--dark);
  letter-spacing: .04em;
  margin-bottom: 1rem;
  padding-bottom: .5rem;
  border-bottom: 1px solid var(--border);
}

.portfolio-carousel {
  position: relative;
  overflow: hidden;
  background: var(--bg);
  aspect-ratio: 16/9;
  width: 100%;
}

.portfolio-carousel__scroll {
  display: flex;
  height: 100%;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.portfolio-carousel__scroll::-webkit-scrollbar { display: none; }

.portfolio-carousel__slide {
  flex: 0 0 100%;
  height: 100%;
  scroll-snap-align: start;
  position: relative;
  overflow: hidden;
  background: var(--bg);
}

.portfolio-carousel__slide img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.carousel-arrow {
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 3;
  width: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border: none;
  background: transparent;
  transition: background var(--transition-fast);
}
.carousel-arrow:hover { background: rgba(255,255,255,.12); }
.carousel-arrow svg { width: 16px; height: 16px; filter: drop-shadow(0 0 3px rgba(255,255,255,.8)); }
.carousel-arrow--prev { left: 0; }
.carousel-arrow--next { right: 0; }

.carousel-dots {
  position: absolute;
  bottom: 1.25rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: .5rem;
  z-index: 3;
}
.carousel-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: rgba(255,255,255,.45);
  border: 1px solid rgba(255,255,255,.3);
  cursor: pointer;
  padding: 0;
  transition: background var(--transition-fast), transform var(--transition-fast);
}
.carousel-dot.active {
  background: var(--green);
  border-color: var(--green);
  transform: scale(1.25);
}

/* ===== PROCESS ===== */
.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-top: 3.5rem;
}

.process-step {
  padding: 2rem 1.75rem;
  background: var(--bg);
  border-top: 2px solid var(--border);
  transition: border-color var(--transition-fast);
}
.process-step:hover { border-color: var(--green); }

.process-step__num {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  color: var(--green);
  opacity: .25;
  line-height: 1;
  margin-bottom: .875rem;
  font-style: italic;
}

.process-step__title {
  font-family: var(--font-heading);
  font-size: 1rem;
  color: var(--dark);
  margin-bottom: .5rem;
}

.process-step__desc {
  font-size: .82rem;
  color: var(--dark-light);
  line-height: 1.85;
}

.process-note {
  margin-top: 2.5rem;
  padding: 1.5rem 2rem;
  background: var(--green-pale);
  border-left: 3px solid var(--green);
  font-size: .875rem;
  color: var(--dark-mid);
  line-height: 1.8;
}

/* ===== INVESTMENT ===== */
.invest-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}

.invest-points {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
  margin-top: 2rem;
}

.invest-point {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
}

.invest-point__icon {
  flex-shrink: 0;
  width: 38px;
  height: 38px;
  border: 1px solid var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}
.invest-point__icon svg { width: 18px; height: 18px; }

.invest-point__title {
  font-family: var(--font-heading);
  font-size: .95rem;
  color: var(--dark);
  margin-bottom: .3rem;
}
.invest-point__text {
  font-size: .85rem;
  color: var(--dark-light);
  line-height: 1.85;
}

.invest-cta-box {
  background: var(--green);
  color: var(--white);
  padding: 3rem 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.invest-cta-box__label {
  font-size: .62rem;
  font-weight: 600;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: rgba(255,255,255,.55);
}
.invest-cta-box__title {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  color: var(--white);
  line-height: 1.3;
}
.invest-cta-box__text {
  font-size: .9rem;
  color: rgba(255,255,255,.76);
  line-height: 1.85;
}
.invest-cta-box__divider {
  width: 100%;
  height: 1px;
  background: rgba(255,255,255,.18);
}
.invest-cta-box__detail {
  font-size: .78rem;
  color: rgba(255,255,255,.55);
  line-height: 1.75;
}

/* ===== CONTACT INFO SECTION ===== */
.contact-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}

.contact-info-blocks {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.contact-block {
  padding: 1.75rem 0;
  border-bottom: 1px solid var(--border);
}
.contact-block:first-child { padding-top: 0; }

.contact-block__label {
  font-size: .65rem;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--dark-subtle);
  margin-bottom: .5rem;
}

.contact-block__value {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  color: var(--dark);
  line-height: 1.5;
}

.contact-block__value a {
  color: var(--dark);
  transition: color var(--transition-fast);
}
.contact-block__value a:hover { color: var(--green); }

.contact-block__sub {
  font-size: .8rem;
  color: var(--dark-subtle);
  margin-top: .35rem;
}

.contact-map {
  margin-top: 1.75rem;
  border: 1px solid var(--border);
  overflow: hidden;
  position: relative;
  height: 240px;
  width: 100%;
}
.contact-map iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: block;
  border: 0;
}

/* ===== CTA BANNER ===== */
.cta-banner {
  background-color: var(--dark);
  padding: 5.5rem 0;
  text-align: center;
  color: var(--white);
}

.cta-banner__label {
  font-family: var(--font-body);
  font-size: .66rem;
  font-weight: 600;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: var(--green-hover);
  margin-bottom: 1rem;
}

.cta-banner__title {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3.5vw, 2.75rem);
  color: var(--white);
  margin-bottom: 1.25rem;
}

.cta-banner__text {
  font-size: .975rem;
  color: rgba(255,255,255,.60);
  max-width: 500px;
  margin: 0 auto 2.75rem;
  line-height: 1.9;
}

/* ===== FOOTER ===== */
.footer {
  background-color: var(--dark);
  border-top: 1px solid rgba(255,255,255,.07);
  padding: 4rem 0 2rem;
  color: rgba(255,255,255,.55);
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,.07);
}

.footer__brand-name {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  letter-spacing: .06em;
  color: var(--white);
}
.footer__brand-sub {
  font-family: var(--font-body);
  font-size: .56rem;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: rgba(255,255,255,.35);
  margin-top: 4px;
  margin-bottom: 1.25rem;
}
.footer__tagline {
  font-size: .82rem;
  line-height: 1.85;
  color: rgba(255,255,255,.42);
}

.footer__heading {
  font-family: var(--font-heading);
  font-size: .72rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 1.25rem;
  font-weight: 400;
}

.footer__links { display: flex; flex-direction: column; gap: .625rem; }
.footer__link {
  font-size: .82rem;
  color: rgba(255,255,255,.42);
  transition: color var(--transition-fast);
}
.footer__link:hover { color: var(--white); }

.footer__contact-item { font-size: .82rem; margin-bottom: .5rem; }
.footer__contact-item a { color: rgba(255,255,255,.42); transition: color var(--transition-fast); }
.footer__contact-item a:hover { color: var(--white); }

.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 2rem;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer__copy { font-size: .74rem; color: rgba(255,255,255,.28); }
.footer__bottom-links { display: flex; gap: 1.5rem; }
.footer__bottom-link { font-size: .7rem; color: rgba(255,255,255,.28); cursor: pointer; }

/* ===== FORM ===== */
.form-row-2col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 960px) {
  .intro-split   { grid-template-columns: 1fr; gap: 2.5rem; }
  .pillars-grid  { grid-template-columns: 1fr; }
  .invest-split  { grid-template-columns: 1fr; gap: 2.5rem; }
  .contact-split { grid-template-columns: 1fr; gap: 2.5rem; }
  .footer__grid  { grid-template-columns: 1fr 1fr; }
  .process-grid  { grid-template-columns: repeat(2, 1fr); }
  .intro-pillars { gap: 1.25rem; }
}

@media (max-width: 700px) {
  .nav__links     { display: none; }
  .nav__hamburger { display: flex; }
  .form-row-2col  { grid-template-columns: 1fr; }

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

  .footer__grid  { grid-template-columns: 1fr; gap: 2rem; }
  .footer__bottom { flex-direction: column; align-items: flex-start; }

  .section { padding: 4rem 0; }
}

@media (max-width: 480px) {
  .hero__actions { flex-direction: column; align-items: center; }
}

/* ===== SERVICES GRID (2x2) ===== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-top: 3.5rem;
}

.pillar-card--link {
  display: block;
  text-decoration: none;
  color: inherit;
}

.pillar-card__cta {
  display: inline-block;
  margin-top: 1.25rem;
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--green);
  transition: letter-spacing var(--transition);
}
.pillar-card--link:hover .pillar-card__cta { letter-spacing: .22em; }

/* ===== DEVELOPMENT FEATURE CARD ===== */
.dev-feature-card {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 3rem;
  align-items: center;
  margin-top: 1.5rem;
  padding: 3rem 3.5rem;
  background: var(--green);
  color: var(--white);
  text-decoration: none;
  transition: background var(--transition-fast);
}
.dev-feature-card:hover { background: var(--green-dark); }

.dev-feature-card__label {
  font-size: .62rem;
  font-weight: 600;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: rgba(255,255,255,.55);
  margin-bottom: .75rem;
}

.dev-feature-card__title {
  font-family: var(--font-heading);
  font-size: clamp(1.4rem, 2.5vw, 1.9rem);
  color: var(--white);
  margin-bottom: 1rem;
}

.dev-feature-card__desc {
  font-size: .9rem;
  color: rgba(255,255,255,.70);
  line-height: 1.85;
  max-width: 640px;
}

.dev-feature-card__arrow {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255,255,255,.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  transition: border-color var(--transition-fast), transform var(--transition);
}
.dev-feature-card:hover .dev-feature-card__arrow {
  border-color: rgba(255,255,255,.7);
  transform: translateX(4px);
}
.dev-feature-card__arrow svg { width: 20px; height: 20px; }

/* ===== SERVICE SPLIT SECTIONS ===== */
.service-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.service-split__img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}

.service-features {
  display: flex;
  flex-direction: column;
  gap: .875rem;
}

.service-feature {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: .875rem;
  color: var(--dark-mid);
  line-height: 1.5;
}
.service-feature::before {
  content: '';
  display: block;
  width: 20px;
  height: 1px;
  background: var(--green);
  flex-shrink: 0;
}

/* ===== GENERAL BUILDING GRID ===== */
.general-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.general-card {
  padding: 2rem 1.75rem;
  background: var(--bg);
  border-top: 2px solid var(--border);
  transition: border-color var(--transition-fast);
}
.general-card:hover { border-color: var(--green); }

.general-card__title {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  color: var(--dark);
  margin-bottom: .625rem;
}

.general-card__desc {
  font-size: .85rem;
  color: var(--dark-light);
  line-height: 1.85;
}

/* ===== RESPONSIVE — NEW SECTIONS ===== */
@media (max-width: 960px) {
  .services-grid            { grid-template-columns: 1fr; }
  .dev-feature-card         { grid-template-columns: 1fr; }
  .dev-feature-card__arrow  { display: none; }
  .service-split            { grid-template-columns: 1fr; gap: 2.5rem; }
  .general-grid             { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 700px) {
  .general-grid     { grid-template-columns: 1fr; }
  .dev-feature-card { padding: 2rem 1.5rem; }
}
