/* ============================================================
   GrowthStone Website — Main Stylesheet
   Brand red: #C0272D | Font: Open Sans + Montserrat
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300;0,400;0,600;0,700;1,400&family=Montserrat:wght@400;600;700;800;900&display=swap');

/* ── Variables ─────────────────────────────────────────────── */
:root {
  --red:        #C0272D;
  --red-dark:   #9e1f24;
  --text:       #333333;
  --text-light: #666666;
  --text-xlight:#999999;
  --bg-light:   #f5f5f5;
  --white:      #ffffff;
  --border:     #e0e0e0;
  --header-h:   90px;
  --font-body:  'Open Sans', sans-serif;
  --font-head:  'Montserrat', sans-serif;
}

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

/* ── Header ─────────────────────────────────────────────────── */
#site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: var(--white);
  box-shadow: 0 2px 8px rgba(0,0,0,0.10);
  height: var(--header-h);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0 40px;
}

.header-logo {
  display: block;
  height: 42px;
  margin-bottom: 8px;
}
.header-logo img {
  height: 42px;
  width: auto;
}

nav.main-nav {
  display: flex;
  gap: 0;
  align-items: center;
}
nav.main-nav a {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 4px 16px;
  border-right: 1px solid var(--border);
  transition: color 0.2s;
}
nav.main-nav a:last-child { border-right: none; }
nav.main-nav a:hover,
nav.main-nav a.active { color: var(--red); }

/* ── Page offset ─────────────────────────────────────────────── */
main { padding-top: var(--header-h); }

/* ── Section show/hide ───────────────────────────────────────── */
.page-section { display: none; }
.page-section.active { display: block; }

/* ── Dot pattern ─────────────────────────────────────────────── */
.dot-bg {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='9' height='9'%3E%3Crect x='0' y='0' width='3' height='3' fill='%23b0b0b0' opacity='0.55'/%3E%3C/svg%3E");
  background-size: 9px 9px;
}

/* ── Section header (subtitle + bold title) ──────────────────── */
.section-label {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--text-light);
  font-weight: 400;
  margin-bottom: 4px;
}
.section-title {
  font-family: var(--font-head);
  font-size: 32px;
  font-weight: 800;
  color: var(--red);
  line-height: 1.15;
  margin-bottom: 12px;
}
.section-title-rule {
  width: 48px;
  height: 3px;
  background: var(--red);
  margin-bottom: 24px;
}

/* ── Red vertical bar ────────────────────────────────────────── */
.red-bar-left {
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 14px;
  background: var(--red);
  z-index: 2;
}

/* ============================================================
   LANDING HERO
   ============================================================ */
#landing {
  position: relative;
  height: calc(100vh - var(--header-h));
  min-height: 520px;
  overflow: hidden;
}
.hero-image-wrap {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('../assets/hero-bg.jpg');
  background-size: 110%;
  background-position: center 35%;
  filter: contrast(1.08) saturate(1.18) brightness(1.03);
}
.hero-red-bar {
  position: absolute;
  left: 0;
  top: 5%;
  width: 5.5%;
  height: 68%;
  background: var(--red);
  z-index: 3;
}
.hero-text-block {
  position: absolute;
  left: 8%;
  bottom: 18%;
  z-index: 4;
}
.hero-title {
  font-family: var(--font-head);
  font-size: clamp(52px, 6vw, 84px);
  font-weight: 800;
  color: var(--red);
  line-height: 1.0;
  font-style: italic;
  text-shadow: 0 2px 12px rgba(255,255,255,0.4);
}

/* ============================================================
   APPROACH SECTION
   ============================================================ */
#approach {
  min-height: calc(100vh - var(--header-h));
}
.approach-top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 320px;
}
.approach-header-panel {
  padding: 48px 48px 40px 48px;
  position: relative;
}
.approach-hero-img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  object-position: center;
}
.approach-bottom {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.approach-content {
  padding: 40px 48px 48px 48px;
  background: var(--white);
}
.approach-value-panel {
  background: #1a1a1a;
  padding: 0;
}
.value-banner {
  background: var(--red);
  padding: 22px 32px;
  font-family: var(--font-head);
  font-size: 20px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.01em;
}
.value-cards-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 0;
  background: #f0f0f0;
}
.value-card {
  padding: 28px 20px;
  background: var(--white);
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.value-card:nth-child(3n) { border-right: none; }
.value-card-num {
  width: 48px; height: 48px;
  border-radius: 50%;
  border: 2px solid var(--text-light);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-head);
  font-size: 18px;
  font-weight: 700;
  color: var(--text-light);
  margin-bottom: 14px;
}
.value-card h4 {
  font-family: var(--font-head);
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
  line-height: 1.3;
}
.value-card-rule {
  width: 30px; height: 2px;
  background: var(--red);
  margin-bottom: 10px;
}
.value-card p {
  font-size: 12.5px;
  color: var(--text-light);
  line-height: 1.6;
}

/* Approach content blocks */
.content-block { margin-bottom: 28px; }
.content-block h3 {
  font-family: var(--font-head);
  font-size: 16px;
  font-weight: 700;
  color: var(--red);
  margin-bottom: 2px;
}
.content-block h3 + span {
  font-size: 15px;
  color: var(--text-light);
  display: block;
  margin-bottom: 12px;
}
.content-block p { font-size: 13.5px; color: var(--text); margin-bottom: 10px; }

.blockquote {
  border-left: 4px solid var(--red);
  padding: 12px 16px;
  margin: 16px 0;
  background: var(--bg-light);
  font-style: italic;
  color: var(--text-light);
  font-size: 13.5px;
  line-height: 1.6;
}
.blockquote::before {
  content: '\201C';
  font-size: 32px;
  color: var(--red);
  line-height: 0;
  vertical-align: -12px;
  margin-right: 4px;
}

/* ============================================================
   SERVICES SECTION
   ============================================================ */
#services {
  min-height: calc(100vh - var(--header-h));
}
.services-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: calc(100vh - var(--header-h));
}
.services-left {
  padding: 48px 40px 48px 48px;
}
.services-right {
  display: flex;
  flex-direction: column;
}
.services-hero-img {
  width: 100%;
  height: 340px;
  object-fit: cover;
  object-position: center 70%;
}
.services-desc-block {
  flex: 1;
  background: #1c1c1c;
  padding: 40px 40px;
  display: flex;
  align-items: center;
}
.services-desc-block p {
  color: var(--white);
  font-size: 15px;
  line-height: 1.8;
}
.services-desc-block strong { color: var(--red); font-weight: 700; }

.service-boxes {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 8px;
}
.service-box {
  border: 1px solid var(--border);
  padding: 22px 20px 20px;
  cursor: pointer;
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.15s;
  background: var(--white);
  position: relative;
}
.service-box:hover {
  border-color: var(--red);
  box-shadow: 0 4px 16px rgba(192,39,45,0.12);
  transform: translateY(-2px);
}
.service-box-header {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 12px;
}
.service-icon {
  font-size: 22px;
  flex-shrink: 0;
  margin-top: 2px;
}
.service-box h3 {
  font-family: var(--font-head);
  font-size: 14px;
  font-weight: 800;
  color: var(--red);
  line-height: 1.3;
}
.service-box h3 span {
  color: var(--text);
  font-weight: 400;
  display: block;
}
.service-box ul { padding-left: 0; }
.service-box ul li {
  font-size: 12.5px;
  color: var(--text-light);
  padding: 2px 0 2px 14px;
  position: relative;
}
.service-box ul li::before {
  content: '▪';
  position: absolute;
  left: 0;
  color: var(--text-xlight);
}
.service-box-arrow {
  position: absolute;
  bottom: 12px;
  right: 14px;
  color: var(--red);
  font-size: 18px;
  opacity: 0;
  transition: opacity 0.2s;
}
.service-box:hover .service-box-arrow { opacity: 1; }

/* ============================================================
   SERVICE SUBPAGES (shared)
   ============================================================ */
.subpage-hero {
  position: relative;
  height: 280px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
}
.subpage-hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: brightness(0.55) grayscale(20%);
}
.subpage-hero-overlay {
  position: relative;
  z-index: 2;
  padding: 28px 48px;
  width: 100%;
}
.subpage-hero-label {
  font-size: 13px;
  color: rgba(255,255,255,0.75);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 4px;
}
.subpage-hero-title {
  font-family: var(--font-head);
  font-size: 36px;
  font-weight: 800;
  color: var(--white);
}
.subpage-hero-title span { color: var(--red); }

.subpage-back {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: var(--red);
  padding: 12px 48px;
  border-bottom: 1px solid var(--border);
  cursor: pointer;
  transition: gap 0.2s;
}
.subpage-back:hover { gap: 10px; }

.subpage-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 48px 64px;
}

.subpage-section { margin-bottom: 48px; }
.subpage-section h2 {
  font-family: var(--font-head);
  font-size: 20px;
  font-weight: 800;
  color: var(--red);
  margin-bottom: 4px;
}
.subpage-section h2 + p.sub {
  font-size: 14px;
  color: var(--text-light);
  margin-bottom: 16px;
}
.subpage-rule {
  width: 40px; height: 3px;
  background: var(--red);
  margin-bottom: 18px;
}
.subpage-section p { font-size: 14px; color: var(--text); margin-bottom: 12px; line-height: 1.75; }

.subpage-section ul {
  padding: 0;
  margin-top: 4px;
}
.subpage-section ul li {
  font-size: 13.5px;
  color: var(--text);
  padding: 4px 0 4px 20px;
  position: relative;
}
.subpage-section ul li::before {
  content: '▪';
  position: absolute;
  left: 0;
  color: var(--red);
}

/* Two-column layout for subpages */
.subpage-two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.subpage-three-col {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 32px;
  margin-bottom: 48px;
}

/* Audit services diagram (Integrated Assurance) */
.audit-diagram {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 20px 0 28px;
}
.audit-box {
  border: 2px solid var(--red);
  border-radius: 4px;
  padding: 18px 16px;
  text-align: center;
}
.audit-box h4 {
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 700;
  color: var(--text);
  line-height: 1.4;
}

/* IFRS badges */
.ifrs-list { margin: 12px 0; }
.ifrs-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
}
.ifrs-badge {
  width: 28px; height: 28px;
  background: var(--red);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: white;
  font-size: 9px;
  font-weight: 700;
  flex-shrink: 0;
}
.ifrs-item span { font-size: 13.5px; color: var(--text); }

/* Due diligence bubbles */
.dd-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 20px;
}
.dd-bubble {
  background: var(--bg-light);
  border-radius: 50%;
  width: 180px;
  height: 180px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 20px;
  margin: 0 auto;
  border: 2px solid var(--border);
}
.dd-bubble p {
  font-size: 12px !important;
  line-height: 1.5 !important;
  margin-bottom: 4px !important;
}
.dd-bubble strong {
  color: var(--red);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* ============================================================
   PARTNERSHIPS SECTION
   ============================================================ */
#partnerships { min-height: calc(100vh - var(--header-h)); }

.partnerships-header {
  padding: 48px 48px 32px;
  position: relative;
}
.international-partners {
  padding: 0 48px 40px;
}
.international-partners h3 {
  font-family: var(--font-head);
  font-size: 20px;
  font-weight: 800;
  color: var(--red);
  margin-bottom: 4px;
}
.international-partners h3 + p {
  color: var(--text-light);
  font-size: 14px;
  margin-bottom: 24px;
}
.partner-cards-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}
.partner-card {
  border: 1px solid var(--border);
  padding: 24px 20px;
  background: var(--white);
}
.partner-logo-wrap {
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.partner-logo-wrap img {
  max-height: 60px;
  max-width: 100%;
  object-fit: contain;
}
.partner-card p {
  font-size: 12.5px;
  color: var(--text-light);
  line-height: 1.65;
}

.engagements-section {
  background: var(--bg-light);
  padding: 40px 48px;
}
.engagements-section h3 {
  font-family: var(--font-head);
  font-size: 18px;
  font-weight: 800;
  color: var(--red);
  margin-bottom: 4px;
}
.engagements-section h3 + p {
  color: var(--text-light);
  font-size: 14px;
  margin-bottom: 24px;
}
.client-logos-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}
.client-logo-box {
  background: var(--white);
  border: 1px solid var(--border);
  padding: 10px 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 100px;
  height: 64px;
}
.client-logo-box img {
  max-height: 44px;
  max-width: 120px;
  object-fit: contain;
  filter: grayscale(40%);
  transition: filter 0.2s;
}
.client-logo-box:hover img { filter: grayscale(0%); }

/* ============================================================
   TEAM SECTION
   ============================================================ */
#team { min-height: calc(100vh - var(--header-h)); }
.team-top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 280px;
}
.team-header-panel {
  padding: 48px 48px 32px;
  position: relative;
}
.team-hero-img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  object-position: center 30%;
}
.team-content {
  padding: 40px 48px 64px;
}
.team-featured-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-bottom: 48px;
}
.team-member {
  display: flex;
  flex-direction: column;
}
.team-photo {
  width: 160px;
  background: none;
  margin-bottom: 14px;
  position: relative;
}
.team-photo img {
  width: 160px;
  height: auto;
  display: block;
}
.team-detail-photo img {
  width: 100%;
  height: auto;
  display: block;
}
.team-photo-bar {
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 4px;
  background: var(--red);
}
.team-bio-para {
  font-size: 14px;
  color: var(--text);
  line-height: 1.65;
  margin-top: 8px;
}
.team-name {
  font-family: var(--font-head);
  font-size: 16px;
  font-weight: 700;
}
.team-name span { color: var(--red); }
.team-role {
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 2px;
}
.team-quals {
  font-size: 12px;
  color: var(--text-xlight);
  margin-bottom: 10px;
}
.team-bio-short li {
  font-size: 12.5px;
  color: var(--text-light);
  padding: 2px 0 2px 14px;
  position: relative;
}
.team-bio-short li::before {
  content: '▪';
  position: absolute;
  left: 0;
  color: var(--red);
}

.team-detailed-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}
.team-detail-member {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 20px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--border);
}
.team-detail-member:last-child { border-bottom: none; }
.team-detail-photo {
  width: 160px;
  background: none;
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
  align-self: start;
}
.team-detail-info h3 {
  font-family: var(--font-head);
  font-size: 17px;
  font-weight: 700;
}
.team-detail-info h3 span { color: var(--red); }
.team-detail-info .role {
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 2px;
}
.team-detail-info .quals {
  font-size: 12px;
  color: var(--text-xlight);
  margin-bottom: 12px;
}
.team-detail-rule {
  width: 30px; height: 2px;
  background: var(--red);
  margin-bottom: 12px;
}
.team-detail-info p {
  font-size: 12.5px;
  color: var(--text-light);
  line-height: 1.7;
}

/* ============================================================
   TESTIMONIALS SECTION
   ============================================================ */
#testimonials { min-height: calc(100vh - var(--header-h)); }
.testimonials-hero {
  position: relative;
  height: 320px;
  overflow: hidden;
}
.testimonials-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  filter: brightness(0.5) grayscale(25%);
}
.testimonials-hero-text {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 64px 0 40px;
}
.testimonials-hero-text .dot-bg {
  position: absolute;
  left: 0; top: 0;
  width: 48px;
  height: 100%;
}
.testimonials-section-label {
  font-size: 13px;
  color: rgba(255,255,255,0.65);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 6px;
  position: relative;
  z-index: 2;
  padding-left: 56px;
}
.testimonials-section-title {
  font-family: var(--font-head);
  font-size: 36px;
  font-weight: 800;
  color: var(--white);
  position: relative;
  z-index: 2;
  padding-left: 56px;
}
.hero-quote-block {
  position: absolute;
  right: 40px;
  top: 50%;
  transform: translateY(-50%);
  max-width: 380px;
  z-index: 2;
  text-align: right;
}
.hero-quote-block blockquote {
  font-size: 17px;
  color: var(--white);
  line-height: 1.65;
  font-style: normal;
}
.hero-quote-block blockquote::before {
  content: '\201C';
  color: var(--red);
  font-size: 40px;
  line-height: 0;
  vertical-align: -16px;
  margin-right: 4px;
}
.hero-quote-block cite {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: var(--red);
  margin-top: 10px;
  font-style: normal;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.testimonials-cards {
  padding: 40px 48px;
}
.testimonials-cards-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}
.testimonial-card {
  border: 1px solid var(--border);
  padding: 20px 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background: var(--white);
}
.testimonial-logo-wrap {
  width: 100px; height: 80px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 12px;
}
.testimonial-logo-wrap img {
  max-width: 90px; max-height: 70px;
  object-fit: contain;
}
.testimonial-quote-mark {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--bg-light);
  display: flex; align-items: center; justify-content: center;
  font-size: 16px;
  color: var(--red);
  margin-bottom: 10px;
}
.testimonial-card p {
  font-size: 12px;
  color: var(--text-light);
  line-height: 1.65;
  flex: 1;
}
.testimonial-client {
  font-size: 12px;
  font-weight: 700;
  color: var(--text);
  margin-top: 12px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.reference-letters {
  background: var(--bg-light);
  padding: 40px 48px;
}
.reference-letters h3 {
  font-family: var(--font-head);
  font-size: 18px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 24px;
}
.letters-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.letter-img {
  width: 100%;
  border: 1px solid var(--border);
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

/* ============================================================
   CONTACT SECTION
   ============================================================ */
#contact { min-height: calc(100vh - var(--header-h)); }
.contact-layout {
  display: grid;
  grid-template-columns: 38% 62%;
  min-height: calc(100vh - var(--header-h));
}
.contact-left {
  padding: 48px 40px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
}
.contact-dot-area {
  flex: 1;
  margin-bottom: 32px;
}
.contact-logo-wrap img {
  height: 70px;
  width: auto;
}
.contact-right {
  position: relative;
  display: flex;
  flex-direction: column;
}
.contact-hero-img {
  width: 100%;
  height: 52%;
  object-fit: cover;
  object-position: center;
  filter: grayscale(30%);
}
.contact-info-box {
  background: #fff;
  padding: 44px 44px;
  flex: 1;
}
.contact-info-box h2 {
  font-family: var(--font-head);
  font-size: 32px;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 28px;
}
.contact-row {
  display: flex;
  gap: 16px;
  margin-bottom: 14px;
  align-items: flex-start;
}
.contact-label {
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
  min-width: 70px;
}
.contact-value {
  font-size: 14px;
  color: var(--text-light);
}
.contact-value a { color: var(--red); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 900px) {
  :root { --header-h: 110px; }
  nav.main-nav a { font-size: 11px; padding: 4px 8px; }

  .approach-top,
  .approach-bottom,
  .services-layout,
  .team-top,
  .contact-layout,
  .subpage-two-col,
  .subpage-three-col { grid-template-columns: 1fr; }

  .partner-cards-row { grid-template-columns: 1fr 1fr; }
  .testimonials-cards-grid { grid-template-columns: 1fr 1fr; }
  .team-featured-grid { grid-template-columns: 1fr 1fr; }
  .team-detailed-grid { grid-template-columns: 1fr; }
  .value-cards-grid { grid-template-columns: 1fr 1fr; }
  .hero-quote-block { display: none; }
  .dd-grid { grid-template-columns: 1fr 1fr; }
  .letters-grid { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
  .service-boxes { grid-template-columns: 1fr; }
  .partner-cards-row { grid-template-columns: 1fr; }
  .testimonials-cards-grid { grid-template-columns: 1fr; }
  .team-featured-grid { grid-template-columns: 1fr; }
  .value-cards-grid { grid-template-columns: 1fr; }
  .dd-grid { grid-template-columns: 1fr; }
  .approach-content,
  .services-left,
  .partnerships-header,
  .international-partners,
  .engagements-section,
  .team-header-panel,
  .team-content,
  .testimonials-cards,
  .reference-letters,
  .contact-left,
  .contact-info-box,
  .subpage-content { padding-left: 20px; padding-right: 20px; }
  .subpage-hero { height: 200px; }
  .subpage-hero-overlay { padding: 20px 20px; }
  .subpage-hero-title { font-size: 26px; }
}
