/* ============================
   HERO SECTION
============================ */

.hero-section {
  margin-top: 5rem;
  background: var(--clr-bg);
  padding: var(--space-section) 0;
  position: relative;
  height: auto;
}

/* GRID LAYOUT */
.hero-container {
  width: 92%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  position: relative;
}

/* LEFT CONTENT */
.hero-title {
  font-family: var(--font-heading);
  /* font-size: var(--fs-h1); */
  line-height: 1.1;
  max-width: 1000px;
  color: var(--clr-dark);
}

.hero-title span {
  color: var(--clr-primary);
}

.hero-subtext {
  font-family: var(--font-body);
  font-size: var(--fs-body);
  max-width: 620px;
  margin-top: 1.2rem;
  line-height: 1.7;
  color: var(--clr-primary);
  opacity: 0.85;
  max-width: 600px;
}

/* ============================
   METRICS BAR (FULL WIDTH)
============================ */
.metrics-bar {
  width: 100%;
  margin-top: 4rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(0,0,0,0.08);
  border-bottom: 1px solid rgba(0,0,0,0.08);
}

.metric {
  text-align: center;
  padding: 2.5rem 1rem;
  border-right: 1px solid rgba(0,0,0,0.8);
  transition: var(--transition);
}

.metric:last-child {
  border-right: none;
}

.metric h2 {
  font-family: var(--font-heading);
  font-size: var(--fs-h2);
  color: var(--clr-dark);
}

.metric p {
  font-family: var(--font-body);
  font-size: 0.95rem;
  margin-top: 0.4rem;
  color: var(--clr-lightgray);
}

/* Hover Effect */
.metric:hover {
  background: rgba(0,0,0,0.03);
  transform: translateY(-4px);
}

/* ============================
   RIGHT SIDE VISUAL CARDS
============================ */

.hero-visual {
  position: absolute;
  right: 5%;
  top: 50%;
  transform: translateY(-50%);
  width: 450px;
  height: 480px;
  pointer-events: none;
}

.hero-card {
  position: absolute;
  width: 210px;
  height: 280px;
  backdrop-filter: blur(14px);
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: 0 20px 45px rgba(0,0,0,0.15);
  opacity: 0;
  transform: translateY(40px);
  transition: 1s ease;
}

/* Card positions */
.card-1 { top: 0; left: 0; transform: rotate(-5deg); }
.card-2 { top: 80px; right: 0; transform: rotate(4deg); }
.card-3 { bottom: 0; left: 120px; transform: rotate(-2deg); }

/* Reveal */
.hero-card.reveal {
  opacity: 1;
  transform: translateY(0) rotate(var(--rotation, 0deg));
}

/* ============================
   RESPONSIVE
============================ */

@media (max-width: 1024px) {
  .hero-visual {
    display: none;
  }
}

@media (max-width: 768px) {
    
    .hero-section {
      padding-left: 1rem;
        padding-right: 1rem;
    }



  .metrics-bar {
    grid-template-columns: 1fr;
    border-left: none;
    border-right: none;
    justify-content: center;

  }

  .metric {
    border-right: none;
    /* border-bottom: 1px solid rgba(0,0,0,0.08); */
    border-top: 1px solid rgba(0,0,0,0.8);
    margin-left: 50px;
    margin-right: 50px;
  }

  .metric:last-child {
   border-bottom: 1px solid rgba(0,0,0,0.08);
  }
}





/* ====== GV — Value Proposition (Plain English) ====== */
/* Uses your :root variables (no overrides). Background uses --clr-bg as requested. */

.gv-value-section {
  background: var(--clr-bg);           /* your light background */
  padding: clamp(2.5rem, 5vw, 5rem) var(--space-inner);
  border-top: 1px solid rgba(0,0,0,0.4);
  border-bottom: 1px solid rgba(0,0,0,0.75);
}

.gv-value-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  gap: 2.25rem;
}

/* Header */
.gv-value-header {
  display: flex;
  gap: 2rem;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.gv-value-heading {
  font-family: var(--font-heading);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  color: var(--clr-dark);
  line-height: 1.05;
  margin-bottom: 0.25rem;
  letter-spacing: 0.01em;
}

.gv-accent-word {
  color: var(--clr-primary);
  position: relative;
}

/* animated underline under accent word */
.gv-accent-word::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 6px;
  background: linear-gradient(90deg, rgba(0,103,71,0.18), rgba(0,230,118,0.22));
  border-radius: 3px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 650ms cubic-bezier(.2,.9,.2,1);
}

/* subheading */
.gv-value-sub {
  color: var(--clr-gray);
  max-width: 620px;
  font-size: clamp(0.95rem, 1.5vw, 1.05rem);
  margin-top: 0.2rem;
}

/* Cards grid */
.gv-value-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem;
  align-items: stretch;
}

/* single card */
.gv-value-card {
  background: white;
  padding: 1.6rem;
  box-shadow: 0 10px 30px rgba(3,10,8,0.1);
  border: 1px solid rgba(2,8,6,0.04);
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  position: relative;
  min-height: 160px;
  transition: transform 280ms var(--transition), box-shadow 280ms var(--transition);
  overflow: hidden;
}

/* index badge (left accent) */
.gv-card-index {
  position: absolute;
  top: 14px;
  left: 14px;
  width: 42px;
  height: 42px;
  background-color: transparent;
  color: var(--clr-dark);
  display: grid;
  place-items: center;
  font-weight: 700;
  box-shadow: 0 6px 18px rgba(0,20,18,0.3);
  font-family: var(--font-heading);
  z-index: 2;
}

/* title + text */
.gv-card-title {
  margin-left: 65px; /* leave room for the badge */
  font-size: 1.05rem;
  color: var(--clr-dark);
  font-family: var(--font-heading);
  letter-spacing: 0.02em;
}

.gv-card-text {
  margin-left: 65px;
  color: var(--clr-gray);
  line-height: 1.5;
  font-size: 0.98rem;
  margin-top: 4px;
  flex: 1 1 auto;
}

/* hover micro interaction */
.gv-value-card:hover {
  transform: translateY(-8px) scale(1.01);
  box-shadow: 0 20px 50px rgba(3,10,8,0.12);
}

/* footer area */
.gv-value-footer {
  display: flex;
  gap: 1rem;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: wrap;
  margin-top: 0.5rem;
}

.gv-cta {
  text-decoration: none;
  padding: 0.85rem 1.6rem;
  border: 1px solid var(--clr-primary);
  color: var(--clr-primary);
  font-family: var(--font-heading);
  background: transparent;
  transition: var(--transition);
}

.gv-cta:hover {
  background: linear-gradient(90deg, var(--clr-primary), var(--clr-secondary));
  color: white;
  border-color: transparent;
}

.gv-foot-note {
  color: var(--clr-gray);
  font-size: 0.95rem;
}

/* reveal helper classes (used by JS / ScrollReveal) */
.gv-revealed { opacity: 1 !important; transform: none !important; }

.gv-hidden { opacity: 0; transform: translateY(24px) scale(0.995); transition: opacity 700ms ease, transform 700ms ease; }

/* responsive */
@media (max-width: 980px) {
  .gv-value-cards { grid-template-columns: 1fr; }
  .gv-value-header { gap: 1rem; }
  .gv-value-heading { width: 100%; }
  .gv-card-title, .gv-card-text { margin-left: 14px; }
  .gv-card-index { top: 12px; left: 12px; }
}





















/* =============================
   NARRATIVE SECTION
=============================  */
.narrative-section {
  background: var(--clr-bg);
  padding: var(--space-section) 0;
}

.narrative-container {
  width: 92%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 4rem;
  align-items: start;
}

/* LEFT SIDE */
.narrative-title {
  font-family: var(--font-heading);
  font-size: var(--fs-h2);
  line-height: 1.2;
  color: var(--clr-dark);
  max-width: 500px;
}

.narrative-title span {
  color: var(--clr-primary);
}

.narrative-tagline {
  margin-top: 1rem;
  font-family: var(--font-body);
  color: var(--clr-gray);
  opacity: 0.75;
  font-size: 1.1rem;
}

/* RIGHT SIDE */

.story-block {
  font-family: var(--font-body);
  font-size: 1.1rem;
  line-height: 1.75;
  margin-bottom: 1.8rem;
  color: var(--clr-gray);
  /* container for each collapsible story */
  opacity: 0;
  transform: translateY(20px);
  transition: var(--transition);
 /** border-bottom: 1px solid rgba(0,0,0,0.8); **/
}

.story-block.reveal {
  opacity: 1;
  transform: translateY(0);
}

.story-label {
  font-family: var(--font-heading);
  color: var(--clr-dark);
  display: block;
  margin-bottom: .4rem;
}


.story-label h1{
    color: var(--clr-primary);
}

.problem-arrow,
.Problem-arrow {
  display: inline-block;
  margin-left: 0.45rem;
  color: var(--clr-primary);
  font-size: 1.05rem;
  line-height: 1;
  transform-origin: center;
  animation: breathe 2.8s ease-in-out infinite alternate;
}

@keyframes breathe {
  0% { transform: translateX(0) scale(1); opacity: 0.95; }
  50% { transform: translateX(-5px) scale(1.2); opacity: 1; }
  100% { transform: translateX(0) scale(1); opacity: 0.95; }
}

/* Slight visual change when the block is open */
.story-block.open .problem-arrow,
.story-block.open .Problem-arrow {
  transform: translateY(-6px) scale(1.02);
}
/* Toggle button (click the label) */
.story-toggle {
  background: none;
  border: none;
  padding: 0;
  margin: 0;
  text-align: left;
  width: 100%;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  border-top: 1px solid rgba(0,0,0,0.8);
}

/* Collapsible content */
.story-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 350ms ease, opacity 250ms ease, transform 300ms ease;
  opacity: 0;
  transform: translateY(-6px);
  padding-top: 0;
}

.story-block.open .story-content {
  max-height: 600px; /* large enough for content */
  opacity: 1;
  transform: translateY(0);
  padding-top: 0.6rem;
}

.story-block .story-content p {
  margin: 0;
  color: var(--clr-gray);
}

/* Responsive */
@media (max-width: 900px) {
  .narrative-container {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}


@media (max-width: 600px) {
    .narrative-section {
        padding: 0 1.5rem;
    }
}










/* ============================
   Leadership Section Styles
   ============================ */

.leadership-section {
  background: var(--clr-bg);
  padding: var(--space-section) var(--space-inner);
  border-top: 1px solid rgba(0,0,0,0.8);
}

.leadership-container {
  max-width: 1200px;
  margin: 0 auto;
}

.leadership-header {
  text-align: center;
  margin-bottom: 3rem;
}

.leadership-title {
  font-family: var(--font-heading);
  font-size: var(--fs-h2);
  color: var(--clr-dark);
}

.leadership-subtitle {
  font-family: var(--font-body);
  font-size: var(--fs-body);
  color: var(--clr-gray);
  margin-top: 0.5rem;
}

/* ============================
   EXECUTIVE CARDS
   ============================ */

.leadership-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.leader-card {
  background: var(--clr-white);
  border: 1px solid #dfe9e4;
  overflow: hidden;
  transition: var(--transition);
  box-shadow: 0px 8px 20px rgba(0, 80, 60, 0.05);
}

.leader-card:hover {
  transform: translateY(-6px);
}

.leader-img img {
  width: 100%;
  height: 450px;
  object-fit: cover;
}

.leader-info {
  padding: 1.5rem;
}

.leader-name {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  color: var(--clr-dark);
  margin-bottom: 0.2rem;
}

.leader-role {
  color: var(--clr-primary);
  font-size: 1.05rem;
  margin-bottom: 0.7rem;
}

.leader-cred {
  color: var(--clr-gray);
  font-size: var(--fs-body);
  margin-bottom: 1rem;
  line-height: 1.5;
}

.leader-link {
  color: var(--clr-primary);
  font-weight: bold;
  font-size: 1rem;
  text-decoration: none;
  transition: var(--transition);
}

.leader-link:hover {
  color: var(--clr-secondary);
}

/* ============================
   EXTENDED TEAM LIST
   ============================ */

.team-extension {
  margin-top: 4rem;
  padding-top: 2rem;
  border-top: 2px solid #cfe4d8;
}

.team-title {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  color: var(--clr-dark);
  margin-bottom: 1.5rem;
}

.team-list {
  list-style: none;
  padding: 0;
}

.team-list li {
  font-family: var(--font-body);
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid #18c06c;
  padding: 0.8rem 0;
  color: var(--clr-gray);
  font-size: 1.05rem;
}

.team-list li span {
  font-weight: bold;
  color: var(--clr-dark);
}

/* RESPONSIVE */
@media (max-width: 600px) {
  .team-list li {
    flex-direction: column;
    gap: 0.2rem;
  }
}












/* mission-vision-values.css
   Scoped styles for the editorial Mission / Vision / Values block
   Uses root tokens (colors, fonts) from your main stylesheet
*/

#mv-editorial { background: var(--clr-bg); padding: 3.5rem var(--space-inner); border-top: 1px solid rgba(0,0,0,0.75);}

/* Container grid */
.mv-wrap { max-width: 1250px; margin: 0 auto; }

/* Top row: two-column editorial layout */
.mv-top { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 5.5rem; align-items: start; }

.col { display: block; }

/* Mission column */
.mv-mission { background: transparent; padding: 0; border-radius: 0px; }
.mv-title { font-family: var(--font-heading); color: var(--clr-dark); font-size: 3rem; margin-bottom: 1.2rem; line-height: 1.02; }
.mv-lead { font-family: var(--font-body); color: var(--clr-gray); font-size: 1.18rem; margin-bottom: 2rem; line-height: 1.85; }
.mv-quick { list-style: none; padding-left: 0; margin: 1.8rem 0 2.4rem 0; color: var(--clr-dark); }
.mv-quick li { margin: 1rem 0; font-weight: 700; color: var(--clr-dark); font-size: 1.12rem; }

/* CTAs */
.mv-actions { display: flex; gap: 1.6rem; margin-top: 1.5rem; }
.mv-btn { font-family: var(--font-heading); text-decoration: none; padding: 1.1rem 1.8rem; border-radius: 0px; border: none; cursor: pointer; transition: var(--transition); font-size: 1.08rem; }
.mv-btn-primary { background: var(--clr-dark); color: var(--clr-bg); }
.mv-btn-outline { background: transparent; color: var(--clr-dark); border: 1px solid rgba(0,0,0,0.06); }

/* Vision column */
.mv-vision { padding: 0; background: transparent; border-left: 1px solid rgba(0,0,0,0.9); padding-left: 3rem; }
.mv-subtitle { font-family: var(--font-heading); color: var(--clr-dark); font-size: 2.2rem; margin-bottom: 1.2rem; }
.mv-vision-text { font-family: var(--font-body); color: var(--clr-gray); line-height: 1.85; margin-bottom: 1.6rem; font-size: 1.12rem; }

/* Stat bar */
.mv-stats { display: flex; gap: 2.2rem; margin-top: 3rem; align-items: stretch; }
.stat { background: var(--clr-white); padding: 2rem 1.6rem; border-radius: 0px; flex: 1; border: 1px solid rgba(0,0,0,0.06); text-align: center; }
.stat-num { font-family: var(--font-heading); color: var(--clr-primary); font-size: 2.6rem; font-weight: 400; }
.stat-label { font-size: 1.1rem; color: var(--clr-gray); margin-top: 0.8rem; }

/* Values grid */
.mv-values { margin-top: 6rem; padding-top: 2.5rem; border-top: 1px solid rgba(0, 0, 0, 0.5); }
.mv-values-title { font-family: var(--font-heading); color: var(--clr-dark); margin-bottom: 2.8rem; font-size: 2rem; }
.mv-values-grid { display: grid; gap: 2rem; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }

/* Value card — editorial minimal */
.value-card { background: var(--clr-white); border-radius: 0px; padding: 2.6rem; border: 1px solid rgba(0,0,0,0.06); box-shadow: 0 12px 34px rgba(16, 81, 79, 0.03); transition: transform 0.35s ease, box-shadow 0.35s ease; }
.value-card:hover { transform: translateY(-6px); box-shadow: 0 20px 44px rgba(16, 81, 79, 0.06); }
.value-card h4 { font-family: var(--font-heading); color: var(--clr-primary); margin-bottom: 1.2rem; font-size: 1.5rem; }
.value-card p { font-family: var(--font-body); color: var(--clr-gray); line-height: 1.8; font-size: 1.1rem; }

/* Responsive */
@media (max-width: 900px) {
  #mv-editorial { padding: 3rem var(--space-inner); }

  .mv-top { 
    grid-template-columns: 1fr; 
    gap: 3.5rem;
  }

  .mv-mission { padding: 0; }
  .mv-vision { 
    padding: 0;
    padding-left: 0;
    border-left: none; 
    border-top: 1px solid rgba(0,0,0,0.04); 
    margin-top: 1.8rem;
    padding-top: 2rem;
  }

  .mv-title { font-size: 2.5rem; }
  .mv-subtitle { font-size: 1.8rem; }
  .mv-lead { font-size: 1.1rem; }

  .mv-actions { flex-direction: column; gap: 1.2rem; }
  .mv-btn { padding: 1rem 1.5rem; font-size: 1.05rem; }

  .mv-stats { gap: 1.6rem; margin-top: 2rem; }
  .stat { padding: 1.4rem 1.2rem; }
  .stat-num { font-size: 2.2rem; }
  .stat-label { font-size: 1.02rem; }

  .mv-values { margin-top: 5rem; }
  .mv-values-title { font-size: 1.85rem; margin-bottom: 2rem; }
  .mv-values-grid { grid-template-columns: repeat(2, 1fr); gap: 1.6rem; }

  .value-card { padding: 2rem; }
  .value-card h4 { font-size: 1.35rem; margin-bottom: 0.8rem; }
  .value-card p { font-size: 1.05rem; }
}

@media (max-width: 768px) {
  #mv-editorial { padding: 2.5rem 1rem; }

  .mv-wrap { padding: 0; }
  .mv-top { gap: 2.2rem; }

  .mv-mission { padding: 0; }
  .mv-vision { padding: 0; padding-left: 0; margin-top: 1.5rem; padding-top: 1.5rem; }

  .mv-title { font-size: 2rem; margin-bottom: 1rem; }
  .mv-lead { font-size: 1.08rem; margin-bottom: 1.3rem; }
  .mv-quick { margin: 1.2rem 0 1.5rem 0; }
  .mv-quick li { font-size: 1.02rem; margin: 0.6rem 0; }

  .mv-subtitle { font-size: 1.4rem; margin-bottom: 1rem; }
  .mv-vision-text { font-size: 1.05rem; margin-bottom: 1.1rem; }

  .mv-actions { gap: 1rem; }
  .mv-btn { padding: 0.85rem 1.2rem; font-size: 1rem; }

  .mv-stats { flex-direction: column; gap: 1.1rem; margin-top: 1.6rem; }
  .stat { padding: 1.2rem; }
  .stat-num { font-size: 1.7rem; }
  .stat-label { font-size: 0.98rem; }

  .mv-values { margin-top: 3.5rem; padding-top: 2.5rem; border-top: 1px solid rgba(0, 0, 0, 0.5);}
  .mv-values-title { font-size: 1.5rem; margin-bottom: 1.6rem; }
  .mv-values-grid { grid-template-columns: 1fr; gap: 1.3rem; }

  .value-card { padding: 1.6rem; }
  .value-card h4 { font-size: 1.15rem; margin-bottom: 0.7rem; }
  .value-card p { font-size: 1rem; }
}

@media (max-width: 600px) {
  #mv-editorial { padding: 2rem 1rem; }

  .mv-mission { padding: 0; }
  .mv-vision { padding: 0; padding-left: 0; margin-top: 1.3rem; padding-top: 1.3rem; }

  .mv-title { font-size: 1.7rem; margin-bottom: 0.8rem; }
  .mv-lead { font-size: 1.02rem; margin-bottom: 1.1rem; line-height: 1.7; }
  .mv-quick { margin: 1.1rem 0 1.3rem 0; }
  .mv-quick li { font-size: 1rem; margin: 0.6rem 0; }

  .mv-subtitle { font-size: 1.2rem; margin-bottom: 0.8rem; }
  .mv-vision-text { font-size: 1rem; margin-bottom: 0.9rem; line-height: 1.7; }

  .mv-actions { flex-direction: column; gap: 0.8rem; }
  .mv-btn { padding: 0.8rem 1.1rem; font-size: 0.95rem; }

  .mv-stats { gap: 0.8rem; margin-top: 1.3rem; }
  .stat { padding: 1rem; }
  .stat-num { font-size: 1.35rem; }
  .stat-label { font-size: 0.9rem; }

  .mv-values { margin-top: 2.8rem; padding: 0; }
  .mv-values-title { font-size: 1.3rem; margin-bottom: 1.3rem; }

  .value-card { padding: 1.2rem; }
  .value-card h4 { font-size: 1.08rem; margin-bottom: 0.6rem; }
  .value-card p { font-size: 0.95rem; line-height: 1.6; }
}















/* SECTION 4 — Office / Map styles */
/* Page background remains clr-bg via body or section higher up */
.section-office { background: var(--clr-bg); padding: var(--space-section) var(--space-inner);  border-top: 1px solid rgba(0,0,0,0.6);}

/* Grid: map left, details right */
.office-grid { display: grid; grid-template-columns: 1.25fr 0.85fr; gap: 2.5rem; align-items: stretch; width: min(1400px, 94%); margin: 0 auto; }

/* MAP BOX — full bleed iframe style (no border-radius per brief) */
.office-map { position: relative; border: 1px solid rgba(0,0,0,0.06); background: #fff; overflow: hidden; min-height: 420px; box-shadow: 0 10px 30px rgba(3, 50, 42, 0.06); }

/* iframe fills container */
.office-map iframe { width: 100%; height: 100%; border: none; display: block; filter: saturate(.98) contrast(.98); }

/* subtle overlay for controls on top of map */
.map-overlay { position: absolute; right: 1.5rem; bottom: 1.5rem; z-index: 6; display: flex; gap: .6rem; }
.map-overlay .btn-open-maps {
  background: var(--clr-dark);
  color: var(--clr-bg);
  border: 1px solid rgba(255,255,255,0.06);
  padding: 0.6rem 1rem;
  letter-spacing: .02em;
  cursor: pointer;
  transition: transform .35s ease, opacity .35s ease;
  text-decoration: none;
}
.map-overlay .btn-open-maps:hover { transform: translateY(-3px); opacity: .95; }

/* Office Card — dark panel */
.office-card {
  background: var(--clr-dark);
  color: var(--clr-bg);
  border: 1px solid rgba(0,0,0,0.08);
  padding: 2.1rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  align-self: start;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

/* Headings & lead */
.office-card h3 { font-size: var(--fs-h2); color: var(--clr-light); margin-bottom: .25rem; font-weight: 500; letter-spacing: .01em; }
.office-lead { color: rgba(255,255,255,0.85); font-size: 1rem; line-height: 1.5; }

/* Definition list layout */
.office-details { margin-top: .6rem; display: grid; gap: .9rem; }
.detail-row { display: flex; gap: 1rem; align-items: baseline; border-top: 1px solid rgba(255,255,255,0.03); padding-top: .9rem; }
.detail-row dt { width: 34%; color: rgba(255,255,255,0.45); font-weight: 600; text-transform: uppercase; font-size: .78rem; letter-spacing: .08em; }
.detail-row dd { width: 66%; color: var(--clr-bg); font-weight: 500; font-size: .95rem; margin: 0; display:flex; gap:.6rem; align-items:center; }

/* copy button inline */
.icon-btn { background: transparent; color: var(--clr-bg); border: 1px solid rgba(255,255,255,0.06); padding: .35rem .6rem; cursor: pointer; font-weight:400; letter-spacing: .02em; transition: transform .22s ease; text-transform: none; }
.icon-btn:hover { transform: translateY(-2px); }

/* contact links */
.contact-link { color: var(--clr-light); text-decoration: none; font-weight:600; }
.contact-link:hover { color: var(--clr-light); }

/* badges */
.card-badges { display:flex; gap:.5rem; margin-top: .75rem; flex-wrap:wrap; }
.card-badges .badge { background: rgba(255,255,255,0.03); color: var(--clr-bg); border: 1px solid rgba(255,255,255,0.04); padding: .38rem .6rem; font-weight:400; font-size:.8rem; letter-spacing:.02em; }

/* actions */
.card-actions { display:flex; gap: .8rem; margin-top: 1.05rem; }
.btn-outline { padding: .7rem 1rem; border: 1px solid var(--clr-light); color: var(--clr-light); background: transparent; font-weight:400; text-decoration:none; display:inline-flex; align-items:center; justify-content:center; }
.btn-primary { padding: .7rem 1rem; background: var(--clr-light); color: var(--clr-dark); text-decoration:none; font-weight:400; border: 1px solid rgba(0,0,0,0.06); }

/* Subtle gridlines at large width for 'expensive' editorial feel */
.section-office::before {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 1px;
  background: linear-gradient(90deg, rgba(0,0,0,0.03), rgba(0,0,0,0.02));
  pointer-events: none;
}

/* Animations hooks (initially hidden) *//*
.fade-in-left, .fade-in-right { opacity: 0; transform: translateY(28px); transition: opacity .9s ease, transform .9s ease; }

/* Responsive */
@media (max-width: 980px) {
  .office-grid { grid-template-columns: 1fr; }
  .map-overlay { right: .9rem; bottom: .9rem; }
  .office-map { min-height: 360px; }
  .office-card { order: 2; }
}


























/* ================================
   FINAL CTA — Trust Optimized
   ================================ */

.cta-final {
  background: var(--clr-bg);
  padding: var(--space-section) 1rem;
  display: flex;
  justify-content: center;
  border-top: 1px solid rgba(0,0,0,0.06);
}

.cta-container {
  max-width: 900px;
  text-align: center;
  padding: var(--space-inner);
}

.cta-title {
  font-family: var(--font-heading);
  font-size: var(--fs-h1);
  color: var(--clr-dark);
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.cta-sub {
  font-family: var(--font-body);
  font-size: var(--fs-body);
  color: var(--clr-gray);
  margin-bottom: 1.2rem;
  max-width: 700px;
  margin-inline: auto;
  line-height: 1.6;
}

.cta-trust {
  margin: 1.5rem auto;
  background: var(--clr-white);
  padding: 1.3rem 1.5rem;
  border: 1px solid rgba(0,0,0,0.06);
  box-shadow: 0 4px 18px rgba(0,0,0,0.1);
}

.cta-trust p {
  font-size: 0.95rem;
  margin: 0.3rem 0;
  color: var(--clr-dark);
}

.cta-actions {
  margin-top: 2rem;
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

/* Primary CTA Button */
.cta-btn_primary {
  padding: 0.9rem 1.8rem;
  background: var(--clr-primary);
  color: var(--clr-white);
  font-family: var(--font-heading);
  font-size: 1.1rem;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: var(--transition);
}

.cta-btn_primary:hover {
  background: var(--clr-dark);
  transform: translateY(-3px);
}

/* Secondary CTA Button */
.cta-btn_secondary {
  padding: 0.9rem 1.8rem;
  border: 1.5px solid var(--clr-primary);
  color: var(--clr-primary);
  font-family: var(--font-heading);
  font-size: 1.1rem;
  cursor: pointer;
  text-decoration: none;
  transition: var(--transition);
}

.cta-btn_secondary:hover {
  background: var(--clr-primary);
  color: var(--clr-white);
  transform: translateY(-3px);
}

.cta-footnote {
  margin-top: 1.8rem;
  font-size: 0.9rem;
  color: var(--clr-lightgray);
  font-style: italic;
}
