/* =============================================
   GRO CONSTRUCTION v2
   Palette: Warm grey, white, lime #EDF76C
   Fonts: Oswald (display) + Inter (body)
   ============================================= */

:root {
  --lime: #EDF76C;
  --lime-dark: #d4dd50;
  --warm-white: #F7F5F0;
  --warm-grey: #EEECE6;
  --mid-grey: #C8C5BC;
  --text: #1E1E1E;
  --text-muted: #6B6860;
  --white: #FFFFFF;
  --font-display: 'Oswald', sans-serif;
  --font-body: 'Inter', sans-serif;
  --transition: 0.25s ease;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-body); background: var(--warm-white); color: var(--text); line-height: 1.65; }
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ---- BUTTONS ---- */
.btn {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 0.95rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.9rem 2.25rem;
  transition: all var(--transition);
  cursor: pointer;
  border: none;
}
.btn-lime { background: var(--lime); color: var(--text); }
.btn-lime:hover { background: var(--lime-dark); transform: translateY(-2px); }
.btn-ghost { background: transparent; color: #fff; border: 2px solid rgba(255,255,255,0.6); }
.btn-ghost:hover { background: rgba(255,255,255,0.1); border-color: #fff; }
.btn-dark { background: var(--text); color: var(--lime); }
.btn-dark:hover { background: #333; transform: translateY(-2px); }
.btn-xl { font-size: 1.1rem; padding: 1.1rem 2.75rem; }

/* ---- EYEBROW ---- */
.eyebrow {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 0.78rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.75rem;
  display: block;
}
.eyebrow.light { color: rgba(255,255,255,0.6); }
.eyebrow::before { content: '— '; }

/* ---- SECTION HEADING ---- */
.section-heading {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  line-height: 1.05;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 1.5rem;
}
.section-heading.light { color: #fff; }
.section-heading em { font-style: normal; color: var(--lime); -webkit-text-stroke: 0px; }
.section-heading.light em { color: var(--lime); }

/* =============================================
   NAVIGATION
   ============================================= */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: var(--warm-white);
  border-bottom: 1px solid var(--mid-grey);
  transition: all var(--transition);
}
.nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.nav-logo { display: flex; align-items: center; gap: 0.75rem; }
.logo-box {
  background: var(--lime);
  color: var(--text);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.3rem;
  padding: 0.3rem 0.65rem;
  letter-spacing: 0.05em;
  line-height: 1;
}
.logo-text {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 0.95rem;
  letter-spacing: 0.18em;
  color: var(--text);
  text-transform: uppercase;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 2.25rem;
}
.nav-links a {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 0.88rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: color var(--transition);
}
.nav-links a:hover, .nav-links a.active { color: var(--text); }
.nav-links a.nav-cta {
  background: var(--lime);
  color: var(--text);
  padding: 0.5rem 1.4rem;
  font-weight: 500;
}
.nav-links a.nav-cta:hover { background: var(--lime-dark); }
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-toggle span { display: block; width: 26px; height: 2px; background: var(--text); transition: all var(--transition); }

/* =============================================
   HERO
   ============================================= */
.hero {
  position: relative;
  height: 100vh;
  min-height: 620px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.hero-img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.04);
  transition: transform 8s ease;
}
.hero-img.loaded { transform: scale(1); }
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(30,30,30,0.15) 0%,
    rgba(30,30,30,0.55) 60%,
    rgba(30,30,30,0.82) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem 6rem;
}
.hero-eyebrow {
  font-family: var(--font-display);
  font-size: 0.78rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--lime);
  margin-bottom: 1rem;
}
.hero-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(4rem, 10vw, 8.5rem);
  line-height: 0.92;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 1.5rem;
}
.hero-accent { color: var(--lime); display: block; }
.hero-divider {
  width: 60px;
  height: 3px;
  background: var(--lime);
  margin-bottom: 1.5rem;
}
.hero-sub {
  font-size: 1.05rem;
  font-weight: 300;
  color: rgba(255,255,255,0.75);
  max-width: 480px;
  margin-bottom: 2.25rem;
  line-height: 1.7;
}
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero-scroll-label {
  position: absolute;
  bottom: 2.5rem;
  right: 2.5rem;
  z-index: 2;
  font-family: var(--font-display);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  writing-mode: vertical-rl;
}

/* =============================================
   ANGLED STRIP
   ============================================= */
.angled-strip {
  background: var(--lime);
  clip-path: polygon(0 0, 100% 0, 100% 75%, 0 100%);
  padding: 3rem 2rem 5rem;
}
.angled-strip-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-around;
  flex-wrap: nowrap;
  gap: 0;
}
.strip-stat { text-align: center; flex: 1; display: flex; flex-direction: column; align-items: center; justify-content: center; }
.strip-stat-num {
  display: block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 2.5rem;
  line-height: 1;
  color: var(--text);
  text-transform: uppercase;
}
.strip-stat-label {
  display: block;
  font-family: var(--font-display);
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(30,30,30,0.6);
  margin-top: 0.35rem;
}
.mobile-strip { display: none; background: var(--lime); margin-bottom: 0; overflow: visible; }
.mobile-strip { position: relative; z-index: 3; }
.desktop-strip { display: block; }

/* =============================================
   SPLIT SECTION
   ============================================= */
.split-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 580px;
  margin-top: -3rem;
  position: relative;
  z-index: 2;
}
.split-image {
  position: relative;
  overflow: hidden;
}
.split-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.split-image-badge {
  position: absolute;
  bottom: 2.5rem;
  right: -1.5rem;
  background: var(--lime);
  padding: 1.5rem 2rem;
  text-align: center;
  box-shadow: 0 8px 32px rgba(0,0,0,0.15);
  z-index: 3;
}
.badge-line1 {
  display: block;
  font-family: var(--font-display);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(30,30,30,0.6);
}
.badge-line2 {
  display: block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.6rem;
  text-transform: uppercase;
  color: var(--text);
  line-height: 1;
}
.badge-line3 {
  display: block;
  font-family: var(--font-display);
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  color: rgba(30,30,30,0.6);
}
.split-content {
  background: var(--white);
  padding: 5rem 4rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.split-content p {
  color: var(--text-muted);
  font-size: 1rem;
  margin-bottom: 1rem;
  max-width: 440px;
}

/* =============================================
   SERVICES SECTION
   ============================================= */
.services-section {
  position: relative;
  padding: 7rem 2rem;
  overflow: hidden;
}
.services-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}
.services-overlay {
  position: absolute;
  inset: 0;
  background: rgba(247,245,240,0.93);
}
.services-inner {
  position: relative;
  z-index: 2;
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.services-header { margin-bottom: 2.5rem; }
.services-header .eyebrow { color: var(--text); opacity: 0.7; }
.services-header .section-heading { color: var(--text); }
.services-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5px;
  width: 100%;
  background: var(--mid-grey);
  border: 1.5px solid var(--mid-grey);
}
.service-card {
  background: var(--white);
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  transition: background var(--transition);
  position: relative;
}
.service-card:hover { background: var(--warm-grey); }
.service-card.featured {
  background: var(--lime);
}
.service-card.featured:hover { background: var(--lime-dark); }
.service-card-num {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 3.5rem;
  line-height: 1;
  color: rgba(30,30,30,0.07);
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
}
.service-card h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.25rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--text);
  margin-top: auto;
}
.service-card p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.6;
}
.service-card.featured p { color: rgba(30,30,30,0.7); }
.service-arrow {
  font-size: 1.4rem;
  color: var(--text);
  margin-top: auto;
  transition: transform var(--transition);
  display: inline-block;
}
.service-card:hover .service-arrow { transform: translateX(5px); }

/* =============================================
   WHY SECTION
   ============================================= */
.why-section {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 0;
  background: var(--warm-white);
  padding: 7rem 2rem;
  max-width: 1280px;
  margin: 0 auto;
  align-items: start;
}
.why-text-col { padding-right: 4rem; }
.why-text-col p { color: var(--text-muted); font-size: 1rem; max-width: 380px; }
.why-cards-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}
.why-card {
  background: var(--white);
  padding: 1.75rem;
  border-top: 3px solid var(--lime);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.why-card-icon {
  width: 42px;
  height: 42px;
  background: var(--lime);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.why-card h4 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--text);
}
.why-card p { font-size: 0.88rem; color: var(--text-muted); line-height: 1.6; }

/* =============================================
   PHOTO BREAK
   ============================================= */
.photo-break {
  position: relative;
  height: 420px;
  display: flex;
  align-items: center;
  overflow: hidden;
  clip-path: polygon(0 8%, 100% 0, 100% 92%, 0 100%);
  margin: -2rem 0;
}
.photo-break-img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}
.photo-break-overlay {
  position: absolute;
  inset: 0;
  background: rgba(30,30,30,0.6);
}
.photo-break-content {
  position: relative;
  z-index: 2;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
  width: 100%;
}
.photo-break-content h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.8rem, 4vw, 3rem);
  text-transform: uppercase;
  color: #fff;
  max-width: 700px;
  line-height: 1.15;
  margin-bottom: 0.75rem;
}
.photo-break-content h2 em { font-style: normal; color: var(--lime); }
.photo-break-content p {
  font-family: var(--font-display);
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}

/* =============================================
   GALLERY PREVIEW
   ============================================= */
.gallery-preview-section {
  max-width: 1280px;
  margin: 0 auto;
  padding: 7rem 2rem;
}
.gallery-preview-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
  gap: 1rem;
}
.gallery-preview-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 260px 260px;
  gap: 0.75rem;
}
.gallery-preview-item {
  background-size: cover;
  background-position: center;
  overflow: hidden;
  position: relative;
  transition: transform 0.4s ease;
}
.gallery-preview-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(237,247,108,0);
  transition: background 0.3s ease;
}
.gallery-preview-item:hover { transform: scale(1.02); }
.gallery-preview-item:hover::after { background: rgba(237,247,108,0.12); }
.gallery-preview-item.tall { grid-row: span 2; }
.gallery-preview-item.wide { grid-column: span 2; }

/* =============================================
   CTA SECTION
   ============================================= */
.cta-section {
  background: var(--text);
  clip-path: polygon(0 6%, 100% 0, 100% 100%, 0 100%);
  padding: 8rem 2rem 5rem;
  margin-top: -2rem;
}
.cta-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.cta-text h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  text-transform: uppercase;
  color: #fff;
  line-height: 1.05;
  margin-bottom: 1rem;
}
.cta-text p { color: rgba(255,255,255,0.55); font-size: 1rem; }
.cta-action { display: flex; flex-direction: column; gap: 1.25rem; align-items: flex-start; }
.cta-note { color: rgba(255,255,255,0.55); font-size: 0.9rem; }
.cta-note strong { color: var(--lime); }

/* =============================================
   FOOTER
   ============================================= */
.footer {
  background: #141414;
  padding: 4rem 2rem 0;
  border-top: 3px solid var(--lime);
}
.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3.5rem;
  padding-bottom: 3rem;
}
.footer-logo-wrap {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}
.footer-brand p { color: rgba(255,255,255,0.4); font-size: 0.88rem; max-width: 280px; line-height: 1.7; }
.footer-nav h5, .footer-contact h5 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--lime);
  margin-bottom: 1.25rem;
}
.footer-nav ul { display: flex; flex-direction: column; gap: 0.6rem; }
.footer-nav a { color: rgba(255,255,255,0.5); font-size: 0.9rem; transition: color var(--transition); }
.footer-nav a:hover { color: var(--lime); }
.footer-contact p { color: rgba(255,255,255,0.5); font-size: 0.9rem; margin-bottom: 0.5rem; }
.footer-contact strong { color: rgba(255,255,255,0.85); }
.footer .logo-text { color: rgba(255,255,255,0.85); }
.footer-bottom {
  max-width: 1280px;
  margin: 0 auto;
  border-top: 1px solid rgba(255,255,255,0.07);
  padding: 1.5rem 0;
  color: rgba(255,255,255,0.2);
  font-size: 0.8rem;
}

/* =============================================
   PAGE HERO (inner pages)
   ============================================= */
.page-hero {
  position: relative;
  height: 52vh;
  min-height: 380px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.page-hero-img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}
.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(30,30,30,0.3), rgba(30,30,30,0.75));
}
.page-hero-content {
  position: relative;
  z-index: 2;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem 3.5rem;
  width: 100%;
}
.page-hero-content h1 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(3rem, 7vw, 6rem);
  text-transform: uppercase;
  color: #fff;
  line-height: 0.95;
  margin-bottom: 0.75rem;
}
.page-hero-content h1 em { font-style: normal; color: var(--lime); }
.page-hero-content p { color: rgba(255,255,255,0.65); font-size: 1rem; max-width: 520px; }

/* =============================================
   SERVICES PAGE
   ============================================= */
.services-page-section {
  max-width: 1280px;
  margin: 0 auto;
  padding: 6rem 2rem;
}
.services-block { margin-bottom: 5rem; }
.services-block-heading {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 2px solid var(--warm-grey);
}
.services-block-heading h2 { margin-bottom: 0; }
.services-block-tag {
  background: var(--lime);
  font-family: var(--font-display);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.3rem 0.75rem;
  color: var(--text);
  white-space: nowrap;
  align-self: flex-end;
  margin-bottom: 0.25rem;
}
.services-page-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}
.service-page-card {
  background: var(--white);
  padding: 2.5rem;
  border-left: 4px solid var(--lime);
  transition: transform var(--transition), box-shadow var(--transition);
}
.service-page-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.08);
}
.service-page-card h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.25rem;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 0.75rem;
}
.service-page-card p { color: var(--text-muted); font-size: 0.92rem; margin-bottom: 1.25rem; }
.service-page-card ul { display: flex; flex-direction: column; gap: 0.4rem; }
.service-page-card li {
  font-size: 0.88rem;
  color: var(--text-muted);
  padding-left: 1rem;
  position: relative;
}
.service-page-card li::before { content: '▸'; position: absolute; left: 0; color: var(--lime); font-size: 0.75rem; top: 1px; }

/* PM Spotlight */
.pm-spotlight {
  background: var(--lime);
  padding: 5rem 2rem;
}
.pm-spotlight-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.pm-spotlight h2 { color: var(--text); }
.pm-spotlight p { color: rgba(30,30,30,0.75); font-size: 1rem; margin-bottom: 1rem; max-width: 480px; }
.pm-features { display: flex; flex-direction: column; gap: 1.25rem; }
.pm-feature {
  background: var(--text);
  padding: 1.5rem;
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
}
.pm-feature-icon { font-size: 1.4rem; flex-shrink: 0; }
.pm-feature strong {
  display: block;
  font-family: var(--font-display);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--lime);
  margin-bottom: 0.35rem;
}
.pm-feature span { font-size: 0.88rem; color: rgba(255,255,255,0.6); }

/* =============================================
   GALLERY PAGE
   ============================================= */
.gallery-page-section {
  max-width: 1280px;
  margin: 0 auto;
  padding: 6rem 2rem;
}
.gallery-filters {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}
.filter-btn {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.5rem 1.25rem;
  border: 1.5px solid var(--mid-grey);
  background: transparent;
  color: var(--text-muted);
  cursor: pointer;
  transition: all var(--transition);
}
.filter-btn:hover, .filter-btn.active {
  background: var(--lime);
  border-color: var(--lime);
  color: var(--text);
}
.gallery-masonry {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 220px;
  gap: 0.75rem;
}
.gallery-item {
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.4s ease;
}
.gallery-item:hover { transform: scale(1.02); }
.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(237,247,108,0);
  transition: background 0.3s ease;
}
.gallery-item:hover::after { background: rgba(237,247,108,0.1); }
.gallery-item.span2h { grid-column: span 2; }
.gallery-item.span2v { grid-row: span 2; }
.gallery-placeholder {
  background: var(--warm-grey);
  border: 2px dashed var(--mid-grey);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}
.gallery-placeholder-text {
  font-family: var(--font-display);
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.gallery-notice {
  background: var(--lime);
  padding: 1.75rem 2rem;
  margin-top: 2.5rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.gallery-notice p strong { font-family: var(--font-display); font-size: 0.95rem; text-transform: uppercase; letter-spacing: 0.05em; }
.gallery-notice p { font-size: 0.9rem; color: rgba(30,30,30,0.75); }

/* =============================================
   ABOUT PAGE
   ============================================= */
.about-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 560px;
}
.about-intro-image { position: relative; overflow: hidden; }
.about-intro-image img { width: 100%; height: 100%; object-fit: cover; }
.about-intro-content {
  background: var(--white);
  padding: 6rem 4rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.about-intro-content p { color: var(--text-muted); font-size: 0.98rem; margin-bottom: 1rem; max-width: 440px; }
.about-pull-quote {
  background: var(--lime);
  padding: 4rem 2rem;
  text-align: center;
}
.about-pull-quote blockquote {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.6rem, 3vw, 2.5rem);
  text-transform: uppercase;
  color: var(--text);
  max-width: 700px;
  margin: 0 auto 1rem;
  line-height: 1.1;
}
.about-pull-quote cite {
  font-family: var(--font-display);
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(30,30,30,0.55);
  font-style: normal;
}
.about-values-section {
  max-width: 1280px;
  margin: 0 auto;
  padding: 6rem 2rem;
}
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}
.value-card {
  background: var(--white);
  padding: 2.25rem;
  border-bottom: 3px solid var(--lime);
}
.value-card-icon { font-size: 1.6rem; margin-bottom: 1rem; display: block; }
.value-card h4 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.05rem;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 0.5rem;
}
.value-card p { font-size: 0.88rem; color: var(--text-muted); }
.service-area-section {
  background: var(--text);
  padding: 5rem 2rem;
}
.service-area-inner {
  max-width: 1280px;
  margin: 0 auto;
}
.area-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-top: 2.5rem;
}
.area-card {
  background: rgba(255,255,255,0.05);
  padding: 1.75rem;
  text-align: center;
  transition: background var(--transition);
}
.area-card:hover { background: rgba(255,255,255,0.08); }
.area-card.highlight { background: var(--lime); }
.area-card-name {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.1rem;
  text-transform: uppercase;
  color: #fff;
  display: block;
  margin-bottom: 0.25rem;
}
.area-card.highlight .area-card-name { color: var(--text); }
.area-card-label {
  font-family: var(--font-display);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
}
.area-card.highlight .area-card-label { color: rgba(30,30,30,0.55); }

/* =============================================
   CONTACT PAGE
   ============================================= */
.contact-page-section {
  max-width: 1280px;
  margin: 0 auto;
  padding: 6rem 2rem;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 5rem;
}
.contact-info h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.5rem;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 2rem;
}
.contact-detail {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1.25rem;
  background: var(--white);
  border-left: 3px solid var(--lime);
  margin-bottom: 1rem;
}
.contact-detail-icon { font-size: 1.2rem; flex-shrink: 0; margin-top: 2px; }
.contact-detail-label {
  font-family: var(--font-display);
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  display: block;
  margin-bottom: 0.2rem;
}
.contact-detail-value { font-size: 0.92rem; color: var(--text); }
.pm-callout {
  background: var(--lime);
  padding: 1.75rem;
  margin-top: 1.5rem;
}
.pm-callout strong {
  font-family: var(--font-display);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text);
  display: block;
  margin-bottom: 0.4rem;
}
.pm-callout p { font-size: 0.88rem; color: rgba(30,30,30,0.7); }
.contact-form-wrap {
  background: var(--white);
  padding: 3rem;
  border-top: 4px solid var(--lime);
}
.contact-form-wrap h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.5rem;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 2rem;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { display: flex; flex-direction: column; gap: 0.4rem; margin-bottom: 1.25rem; }
.form-group label {
  font-family: var(--font-display);
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.form-group input,
.form-group select,
.form-group textarea {
  padding: 0.8rem 1rem;
  border: 1.5px solid var(--mid-grey);
  font-family: var(--font-body);
  font-size: 0.92rem;
  color: var(--text);
  background: var(--warm-white);
  outline: none;
  transition: border-color var(--transition);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--lime); background: var(--white); }
.form-group textarea { resize: vertical; min-height: 130px; }
.form-hint {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: 1rem;
  text-align: center;
}
.form-hint a { color: var(--text); text-decoration: underline; }
.form-success {
  display: none;
  background: var(--lime);
  padding: 2.5rem;
  text-align: center;
}
.form-success h4 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.5rem;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 0.5rem;
}
.form-success p { color: rgba(30,30,30,0.7); }

/* =============================================
   FADE-IN ANIMATION
   ============================================= */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal.visible { opacity: 1; transform: none; }

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 1024px) {
  .split-section { grid-template-columns: 1fr; }
  .split-content { padding: 4rem 2.5rem; }
  .split-image { height: 420px; }
  .split-image-badge { right: 2rem; }
  .services-cards { grid-template-columns: repeat(2, 1fr); }
  .why-section { grid-template-columns: 1fr; padding: 5rem 2rem; }
  .why-text-col { padding-right: 0; margin-bottom: 3rem; }
  .cta-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: span 2; }
  .about-intro { grid-template-columns: 1fr; }
  .about-intro-image { height: 420px; }
  .pm-spotlight-inner { grid-template-columns: 1fr; gap: 3rem; }
  .contact-grid { grid-template-columns: 1fr; }
  .area-grid { grid-template-columns: repeat(2, 1fr); }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .services-page-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 72px; left: 0; right: 0;
    background: var(--warm-white);
    flex-direction: column;
    gap: 0;
    padding: 0.5rem 0;
    border-bottom: 2px solid var(--lime);
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
  }
  .nav-links.open { display: flex; }
  .nav-links li { width: 100%; }
  .nav-links a { 
    padding: 0.85rem 2rem; 
    border-bottom: 1px solid var(--warm-grey);
    text-decoration: none;
    display: block;
    width: 100%;
  }
  .nav-links a.nav-cta { 
    margin: 0.75rem 2rem;
    display: inline-block;
    width: auto;
    text-align: center;
    border-bottom: none;
  }
  .nav-toggle { display: flex; }
  .hero-title { font-size: 3.2rem; }
  .hero-actions { flex-direction: column; gap: 0.75rem; }
  .hero-actions .btn { text-align: center; }
  .mobile-strip { display: block !important; }
  .desktop-strip { display: none !important; }
  .angled-strip { clip-path: none !important; padding: 0 !important; }
  .split-section { margin-top: 0 !important; }
  .angled-strip-inner { 
    flex-direction: column !important;
    align-items: stretch !important;
    gap: 0 !important;
  }
  .strip-stat { 
    flex: none !important;
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    justify-content: flex-start !important;
    text-align: left !important;
    gap: 1rem !important;
    padding: 0.85rem 1.5rem !important;
    border-bottom: 1px solid rgba(30,30,30,0.15) !important;
  }
  .strip-stat:last-child { border-bottom: none !important; }
  .strip-stat-num { font-size: 1.3rem !important; min-width: 52px !important; display: block !important; }
  .strip-stat-label { font-size: 0.75rem !important; margin-top: 0 !important; display: block !important; }
  .strip-divider { display: none !important; }
  .services-cards { grid-template-columns: 1fr; }
  .why-cards-col { grid-template-columns: 1fr; }
  .gallery-preview-grid { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
  .gallery-preview-item.tall { grid-row: span 1; }
  .gallery-preview-item.wide { grid-column: span 2; }
  .gallery-masonry { grid-template-columns: repeat(2, 1fr); }
  .gallery-item.span2h { grid-column: span 2; }
  .gallery-item.span2v { grid-row: span 1; }
  .photo-break { clip-path: none; }
  .footer-inner { grid-template-columns: 1fr; }
  .footer-brand { grid-column: span 1; }
  .form-row { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .area-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 480px) {
  .gallery-masonry { grid-template-columns: 1fr; }
  .gallery-item.span2h { grid-column: span 1; }
  .area-grid { grid-template-columns: 1fr; }
  .gallery-preview-grid { grid-template-columns: 1fr; }
  .gallery-preview-item.wide { grid-column: span 1; }
  .contact-page-section { padding: 3rem 1rem; }
  .contact-detail { margin-right: 0; overflow: hidden; }
  .contact-detail-value { word-break: break-word; font-size: 0.85rem; }
  .pm-callout { margin-right: 0; overflow: hidden; }
  .pm-callout p { font-size: 0.85rem; }
  .contact-form-wrap { padding: 1.75rem 1rem; }
}
