/* No need for <style> tag in an external CSS file */
@import url("https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600&family=Libre+Baskerville:wght@400;700&display=swap");

:root {
  --brown: #32180b;
  --brown-light: #552610;
  --gold: #eab868e6;
  --cream: #f7f0e5;
  --text: #24150e;
  --white: #fff;
  --nav-height: 92px;
  --section-space-desktop: 100px;
  --section-space-tablet: 84px;
  --section-space-mobile: 64px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-padding-top: var(--nav-height);
}

section[id],
header[id],
footer[id] {
  scroll-margin-top: var(--nav-height);
}

body {
  background: var(--cream);
  color: var(--text);
  font-family: "DM Sans", sans-serif;
}

/* =========================
       NAVIGATION
    ========================= */

.navbar {
  width: 100%;
  height: var(--nav-height);
  padding: 0 50px;

  display: flex;
  align-items: center;
  justify-content: space-between;

  background: #faf5ed;
  position: sticky;
  top: 0;
  z-index: 20;
}

.logo {
  width: 200px;
  flex-shrink: 0;
}

.logo img {
  width: 100%;
  display: block;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 48px;

  list-style: none;
}

.nav-links li a {
  position: relative;
  text-decoration: none;

  font-size: 15px;
  font-weight: 600;
}

.nav-links a::after {
  content: "";

  position: absolute;
  left: 0;
  bottom: -17px;

  width: 0;
  height: 2px;

  background: var(--gold);

  transition: width 0.25s ease;
}

.nav-links a:hover::after,
.nav-links .active::after {
  width: 100%;
}

.nav-cta {
  min-width: 190px;
  height: 54px;

  padding: 0 24px;

  display: flex;
  align-items: center;
  justify-content: space-between;

  border-radius: 4px;

  background: var(--brown-light);
  color: var(--white);

  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
}

/* =========================
       HERO
    ========================= */
.hero {
  position: relative;
  height: 655px;
  overflow: hidden;

  background-image: url("./assets/images/Advocate.png");
  background-size: cover;
  background-position: center;
}

/* Dark left overlay */

.hero::before {
  content: "";

  position: absolute;
  inset: 0;

  background: linear-gradient(90deg,
      rgba(40, 19, 8, 0.98) 0%,
      rgba(40, 19, 8, 0.94) 26%,
      rgba(40, 19, 8, 0.7) 42%,
      rgba(40, 19, 8, 0.15) 62%,
      rgba(40, 19, 8, 0) 78%);
}

.hero-content {
  position: relative;
  z-index: 3;

  width: 100%;
  height: 100%;

  padding-left: 82px;

  display: flex;
  align-items: center;
}

.hero-copy {
  width: 560px;
  margin-top: -20px;
}

.hero h1 {
  color: white;

  font-family: "Libre Baskerville", serif;
  font-size: 57px;
  line-height: 1.22;
  letter-spacing: -2px;
  font-weight: 400;
}

.hero h1 span {
  color: var(--gold);
}

.ornament {
  width: 160px;
  height: 1px;

  margin: 28px 0;

  position: relative;

  background: linear-gradient(to right, var(--gold), rgba(189, 135, 48, 0.1));
}

.ornament::after {
  content: "";

  position: absolute;
  left: 70px;
  top: -3px;

  width: 7px;
  height: 7px;

  background: var(--gold);

  transform: rotate(45deg);
}

.hero-description {
  max-width: 535px;

  color: rgba(255, 255, 255, 0.92);

  font-family: "Libre Baskerville", serif;
  font-size: 15px;
  line-height: 2.05;
}

.hero-tagline {
  margin-top: 23px;

  color: var(--gold);

  font-family: "Libre Baskerville", serif;
  font-size: 18px;
}

.hero-buttons {
  display: flex;
  gap: 26px;

  margin-top: 35px;
}

.button {
  height: 56px;

  padding: 0 28px;

  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 32px;

  border: 1px solid var(--gold);
  border-radius: 3px;

  color: white;

  text-decoration: none;

  font-size: 14px;
  font-weight: 600;

  transition:
    background 0.25s ease,
    color 0.25s ease;
}

.button:hover {
  background: var(--gold);
  color: var(--brown);
}

/* =========================
       CURVED DIVIDER
    ========================= */

.curve {
  position: absolute;

  z-index: 5;

  left: -5%;
  bottom: -79px;

  width: 110%;
  height: 125px;

  background: var(--cream);

  border-top: 3px solid var(--gold);
  border-radius: 50% 50% 0 0 / 100% 100% 0 0;
}

/* =========================
       FEATURES
    ========================= */

.features {
  position: relative;

  min-height: 250px;

  padding: 70px 80px 35px;

  background:
    linear-gradient(rgba(247, 240, 229, 0.94), rgba(247, 240, 229, 0.97)),
    url("https://images.unsplash.com/photo-1589829545856-d10d557cf95f");

  background-size: cover;
  background-position: center;
}

.feature-list {
  max-width: 1350px;
  margin: auto;

  display: grid;
  grid-template-columns: repeat(5, 1fr);
}

.feature {
  min-height: 145px;

  padding: 0 30px;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  text-align: center;

  border-right: 1px solid rgba(117, 77, 36, 0.32);
}

.feature:last-child {
  border-right: none;
}

.icon {
  width: 64px;
  height: 64px;

  margin-bottom: 16px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 50%;

  background: var(--brown);
  color: #ffffffa8;

  font-size: 27px;
}

.feature h2 {
  margin-bottom: 3px;

  font-family: "Libre Baskerville", serif;
  font-size: 22px;
  font-weight: 400;
}

.feature h2.number {
  color: var(--brown);
  font-size: 31px;
}

.feature p {
  max-width: 200px;

  font-family: "Libre Baskerville", serif;
  font-size: 16px;
  line-height: 1.5;
}

/* =========================
       LARGE DESKTOP
    ========================= */

@media (min-width: 1600px) {
  .navbar {
    padding-left: 80px;
    padding-right: 80px;
  }

  .hero-content {
    padding-left: 130px;
  }

  .hero-copy {
    width: 650px;
  }

  .hero h1 {
    font-size: 66px;
  }
}

/* =========================
       SMALLER DESKTOP
    ========================= */

@media (max-width: 1200px) {
  .nav-links {
    gap: 25px;
  }

  .hero-content {
    padding-left: 55px;
  }

  .hero h1 {
    font-size: 48px;
  }

  .hero-copy {
    width: 500px;
  }

  .features {
    padding-left: 25px;
    padding-right: 25px;
  }
}

/* =========================================
   ABOUT / LEGACY
========================================= */

.about {
  position: relative;
  background: #faf5eb;
  overflow: hidden;
}

.about-container {
  width: min(1320px, calc(100% - 100px));
  min-height: 720px;

  margin: 0 auto;
  padding: 80px 0 80px;

  display: grid;
  grid-template-columns: 46% 54%;
  align-items: center;
}

/* =========================================
   ABOUT CONTENT
========================================= */

.about-content {
  position: relative;
  z-index: 3;

  padding-right: 55px;
}

.section-label {
  display: flex;
  align-items: center;
  gap: 18px;

  margin-bottom: 34px;
}

.section-label span {
  color: var(--gold);

  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.4px;
}

.section-line {
  position: relative;

  width: 255px;
  height: 1px;

  background: rgba(189, 135, 48, 0.5);
}

.section-line::after {
  content: "";

  position: absolute;

  top: -4px;
  left: 50%;

  width: 7px;
  height: 7px;

  border: 1px solid var(--gold);

  background: #faf5eb;

  transform: rotate(45deg);
}

.about-title {
  margin-bottom: 25px;

  color: #25160e;

  font-family: "Libre Baskerville", serif;

  font-size: 49px;
  line-height: 1.25;
  letter-spacing: -1.8px;

  font-weight: 400;
}

.about-title span {
  color: var(--gold);
}

.about-intro {
  max-width: 570px;

  color: #2f2925;

  font-size: 16px;
  line-height: 1.85;
}

.about-small-line {
  width: 210px;
  height: 1px;

  margin: 28px 0 25px;

  background: linear-gradient(90deg, var(--gold), rgba(189, 135, 48, 0.1));
}

/* =========================================
   ABOUT VALUES
========================================= */

.about-values {
  display: grid;
  grid-template-columns: repeat(3, 1fr);

  margin-bottom: 32px;
}

.about-value {
  position: relative;

  min-height: 140px;

  padding: 0 20px;

  display: flex;
  flex-direction: column;
  align-items: center;

  text-align: center;
}

.about-value:first-child {
  padding-left: 0;
}

.about-value:not(:last-child)::after {
  content: "";

  position: absolute;

  right: 0;
  top: 15px;

  width: 1px;
  height: 105px;

  background: rgba(189, 135, 48, 0.4);
}

.about-value-icon {
  width: 70px;
  height: 70px;

  margin-bottom: 13px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 50%;

  background: #f4e6ca;

  color: var(--gold);

  font-size: 27px;
}

.about-value h3 {
  color: #251b15;

  font-size: 16px;
  line-height: 1.45;

  font-weight: 500;
}

.about-description {
  max-width: 580px;

  color: #312a25;

  font-size: 15px;
  line-height: 1.9;
}

/* =========================================
   ABOUT VISUAL
========================================= */

.about-visual {
  position: relative;

  height: 620px;
}

.about-image {
  position: absolute;

  inset: 0;

  overflow: hidden;

  border-top-left-radius: 170px;

  border: 1px solid rgba(189, 135, 48, 0.75);
}

.about-image::after {
  content: "";

  position: absolute;

  inset: 0;

  background: linear-gradient(90deg, rgba(49, 24, 11, 0.13), transparent 40%);
}

.about-image img {
  width: 100%;
  height: 100%;

  display: block;

  object-fit: cover;

  object-position: 58% center;
}

/* =========================================
   QUOTE CARD
========================================= */

.about-quote {
  position: absolute;

  z-index: 5;

  left: -95px;
  bottom: 0;

  width: 235px;
  min-height: 275px;

  padding: 24px 27px;

  border-radius: 22px 22px 0 22px;

  background: linear-gradient(145deg, #32190d, #1e1009);

  color: white;

  box-shadow: 0 15px 40px rgba(44, 22, 10, 0.18);
  transition: transform 0.4s ease, box-shadow 0.4s ease, background 0.4s ease;
}

.about-quote:hover {
  transform: translateY(-5px);
  box-shadow: 0 22px 48px rgba(44, 22, 10, 0.28);
  background-image:
    url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 120 120" fill="none" stroke="%23eab868" stroke-opacity="0.12" stroke-width="1.2" stroke-linecap="round" stroke-linejoin="round"><path d="M60,110 C50,85 50,45 60,15"/><path d="M60,30 Q35,25 25,40 Q40,45 60,35"/><path d="M60,30 Q85,25 95,40 Q80,45 60,35"/><path d="M60,50 Q30,45 20,60 Q35,65 60,55"/><path d="M60,50 Q90,45 100,60 Q85,65 60,55"/><path d="M60,70 Q25,65 15,80 Q30,85 60,75"/><path d="M60,70 Q95,65 105,80 Q90,85 60,75"/><path d="M60,90 Q20,85 10,100 Q25,105 60,95"/><path d="M60,90 Q100,85 110,100 Q95,105 60,95"/></svg>'),
    linear-gradient(145deg, #32190d, #1e1009) !important;
  background-size: 80px 80px, auto;
  background-repeat: no-repeat;
  background-position: right 10px bottom 10px, center;
}

.quote-mark {
  height: 45px;

  color: var(--gold);

  font-family: Georgia, serif;

  font-size: 68px;
  line-height: 1;
}

.about-quote p {
  font-size: 14px;
  line-height: 1.85;

  color: rgba(255, 255, 255, 0.92);
}

.quote-divider {
  width: 100%;
  height: 1px;

  margin: 17px 0;

  background: linear-gradient(90deg, var(--gold), rgba(189, 135, 48, 0.1));
}

.about-quote h4 {
  margin-bottom: 5px;

  color: var(--gold);

  font-size: 13px;
  letter-spacing: 2px;
}

.about-quote span {
  font-size: 12px;

  color: rgba(255, 255, 255, 0.8);
}

/* =========================================
   ABOUT STATISTICS
========================================= */

.about-stats {
  min-height: 180px;

  padding: 30px 70px;

  display: grid;
  grid-template-columns: repeat(5, 1fr);
  align-items: center;

  background: linear-gradient(rgba(45, 23, 11, 0.97), rgba(45, 23, 11, 0.97));

  color: white;
}

.about-stat {
  position: relative;

  min-height: 95px;

  padding: 0 35px;

  display: flex;
  align-items: center;
  justify-content: center;

  gap: 20px;
}

.about-stat:not(:last-child)::after {
  content: "";

  position: absolute;

  right: 0;

  width: 1px;
  height: 75px;

  background: rgba(255, 255, 255, 0.25);
}

.about-stat>i {
  flex-shrink: 0;

  color: var(--gold);

  font-size: 45px;
}

.about-stat div {
  display: flex;
  flex-direction: column;

  gap: 5px;
}

.about-stat strong {
  color: var(--gold);

  font-family: "Libre Baskerville", serif;

  font-size: 29px;
  font-weight: 400;
}

.about-stat span {
  color: rgba(255, 255, 255, 0.92);

  font-size: 14px;
  line-height: 1.6;
}

/* =========================================
   ABOUT LARGE DESKTOP
========================================= */

@media (min-width: 1600px) {
  .about-container {
    width: min(1400px, calc(100% - 160px));
  }

  .about-title {
    font-size: 54px;
  }
}

/* =========================================
   ABOUT SMALLER DESKTOP
========================================= */

@media (max-width: 1200px) {
  .about-container {
    width: calc(100% - 60px);

    grid-template-columns: 50% 50%;
  }

  .about-content {
    padding-right: 35px;
  }

  .about-title {
    font-size: 42px;
  }

  .about-visual {
    height: 570px;
  }

  .about-quote {
    left: -65px;
  }

  .about-stats {
    padding-left: 20px;
    padding-right: 20px;
  }

  .about-stat {
    padding: 0 18px;
  }
}

/* =========================================
   LEADERSHIP
========================================= */

.leadership {
  position: relative;

  overflow: hidden;

  background:
    radial-gradient(circle at 80% 20%,
      rgba(210, 170, 95, 0.08),
      transparent 35%),
    #faf6ee;
}

/* Subtle architectural background */

.leadership::before {
  content: "";

  position: absolute;

  top: 0;
  left: 0;

  width: 310px;
  height: 100%;

  opacity: 0.07;

  background: linear-gradient(90deg, rgba(79, 40, 16, 0.5), transparent);

  pointer-events: none;
}

.leadership-container {
  position: relative;
  z-index: 2;

  width: min(1320px, calc(100% - 100px));

  margin: auto;

  padding: 80px 0 80px;
}

/* =========================================
   HEADING
========================================= */

.leadership-heading {
  max-width: 700px;

  margin: 0 auto 28px;

  text-align: center;
}

.leadership-heading-decoration {
  display: flex;
  align-items: center;
  justify-content: center;

  gap: 16px;

  margin-bottom: 12px;
}

.leadership-heading-decoration span {
  width: 90px;
  height: 1px;

  background: linear-gradient(90deg, transparent, var(--gold));
}

.leadership-heading-decoration span:last-child {
  background: linear-gradient(90deg, var(--gold), transparent);
}

.leadership-heading-decoration i {
  color: var(--gold);

  font-size: 26px;
}

.leadership-heading h2 {
  color: #25160e;

  font-family: "Libre Baskerville", serif;

  font-size: 55px;
  line-height: 1.2;

  font-weight: 400;
}

.leadership-heading h2 span {
  color: var(--gold);
}

.leadership-title-line {
  position: relative;

  width: 175px;
  height: 1px;

  margin: 15px auto 17px;

  background: rgba(189, 135, 48, 0.5);
}

.leadership-title-line span {
  position: absolute;

  top: -4px;
  left: 50%;

  width: 8px;
  height: 8px;

  border: 1px solid var(--gold);

  background: #faf6ee;

  transform: translateX(-50%) rotate(45deg);
}

.leadership-heading p {
  color: #2f2925;

  font-size: 15px;
  line-height: 1.7;
}

/* =========================================
   LEADERSHIP GRID
========================================= */

.leadership-grid {
  display: grid;

  grid-template-columns:
    minmax(0, 2.1fr) minmax(300px, 1fr);

  gap: 38px;
}

/* =========================================
   GENERAL CARD
========================================= */

.leader-card {
  overflow: hidden;

  border: 1px solid rgba(189, 135, 48, 0.7);

  border-radius: 18px;
}

/* =========================================
   PRIMARY LEADER
========================================= */

.leader-card-primary {
  min-height: 400px;

  display: grid;

  grid-template-columns: 34% 66%;

  background: #fffaf2;
}

/* =========================================
   IDENTITY PANEL
========================================= */

.leader-identity {
  position: relative;

  overflow: hidden;

  padding: 40px 25px;

  display: flex;
  flex-direction: column;
  align-items: center;

  background:
    radial-gradient(circle at center, rgba(145, 91, 35, 0.25), transparent 55%),
    linear-gradient(145deg, #32190d, #1e1008);

  color: white;
}

.leader-identity::after {
  content: "";

  position: absolute;

  top: -20%;
  right: -35px;

  width: 70px;
  height: 140%;

  background: #fffaf2;

  transform: rotate(-5deg);
}

.leader-monogram {
  position: relative;
  z-index: 2;

  width: 125px;
  height: 145px;

  margin-bottom: 17px;

  display: flex;
  align-items: center;
  justify-content: center;

  color: var(--gold);

  font-family: "Libre Baskerville", serif;

  font-size: 48px;
}

.leader-monogram-shield {
  clip-path: polygon(50% 0, 93% 18%, 86% 70%, 50% 100%, 14% 70%, 7% 18%);

  border: none;

  background: linear-gradient(145deg,
      rgba(189, 135, 48, 0.25),
      rgba(189, 135, 48, 0.04));

  outline: 3px solid var(--gold);
}

.leader-identity h3 {
  position: relative;
  z-index: 2;

  color: var(--gold);

  font-size: 13px;
  letter-spacing: 0.4px;

  font-weight: 500;
}

.leader-small-decoration {
  position: relative;
  z-index: 2;

  display: flex;
  align-items: center;

  margin-top: 18px;
}

.leader-small-decoration span {
  width: 35px;
  height: 1px;

  background: rgba(189, 135, 48, 0.6);
}

.leader-small-decoration i {
  width: 7px;
  height: 7px;

  border: 1px solid var(--gold);

  transform: rotate(45deg);
}

.leader-legal-art {
  position: absolute;

  left: 30px;
  right: 55px;
  bottom: 30px;

  display: flex;
  align-items: flex-end;
  justify-content: space-around;

  color: rgba(189, 135, 48, 0.15);
}

.leader-legal-art i:first-child {
  font-size: 80px;
}

.leader-legal-art i:last-child {
  font-size: 65px;
}

/* =========================================
   PRIMARY LEADER DETAILS
========================================= */

.leader-details {
  padding: 42px 45px 32px;
}

.leader-name {
  color: #29170e;

  font-family: "Libre Baskerville", serif;

  font-size: 34px;

  font-weight: 400;
}

.leader-name-line {
  width: 60px;
  height: 1px;

  margin: 12px 0 25px;

  background: var(--gold);
}

.leader-information {
  display: grid;

  grid-template-columns: 40px 1fr;

  gap: 14px;

  margin-bottom: 21px;
}

.leader-info-icon {
  color: var(--gold);

  font-size: 23px;
}

.leader-information strong {
  display: block;

  margin-bottom: 4px;

  color: #241913;

  font-size: 14px;
}

.leader-information p {
  color: #2d2723;

  font-size: 14px;
  line-height: 1.65;
}

/* =========================================
   SECONDARY LEADER
========================================= */

.leader-card-secondary {
  position: relative;

  min-height: 400px;

  padding: 32px 42px;

  background: linear-gradient(145deg,
      rgba(255, 252, 246, 0.96),
      rgba(247, 238, 222, 0.8));
}

.secondary-monogram {
  width: 85px;
  height: 85px;

  margin-bottom: 17px;

  display: flex;
  align-items: center;
  justify-content: center;

  border: 2px solid var(--gold);
  border-radius: 50%;

  background: linear-gradient(145deg, #351b0e, #1d0e07);

  color: var(--gold);

  font-family: "Libre Baskerville", serif;

  font-size: 35px;
}

.secondary-leader-name {
  color: #29170e;

  font-family: "Libre Baskerville", serif;

  font-size: 27px;

  font-weight: 400;
}

.secondary-name-line {
  width: 55px;
  height: 1px;

  margin: 13px 0;

  background: var(--gold);
}

.secondary-role {
  color: var(--gold);

  font-size: 15px;
  line-height: 1.5;

  font-weight: 600;
}

.secondary-decoration {
  display: flex;
  align-items: center;

  margin: 20px 0 28px;
}

.secondary-decoration span {
  width: 65px;
  height: 1px;

  background: rgba(189, 135, 48, 0.4);
}

.secondary-decoration i {
  width: 7px;
  height: 7px;

  border: 1px solid var(--gold);

  transform: rotate(45deg);
}

.secondary-qualification strong {
  display: block;

  margin-bottom: 7px;

  font-size: 14px;
}

.secondary-qualification p {
  font-family: "Libre Baskerville", serif;

  font-size: 18px;
}

.secondary-art {
  position: absolute;

  right: 30px;
  bottom: 25px;

  color: rgba(189, 135, 48, 0.15);

  font-size: 115px;

  transform: rotate(-12deg);
}

/* =========================================
   TEAM INFRASTRUCTURE
========================================= */

.leadership-team {
  min-height: 135px;

  margin-top: 25px;
  padding: 22px 35px;

  display: grid;

  grid-template-columns:
    150px minmax(0, 1.6fr) minmax(0, 1fr) 130px;

  align-items: center;

  border: 1px solid rgba(189, 135, 48, 0.65);

  border-radius: 14px;

  background: rgba(255, 251, 244, 0.75);
}

.team-icon-wrapper {
  height: 95px;

  display: flex;
  align-items: center;

  border-right: 1px solid rgba(189, 135, 48, 0.45);
}

.team-icon {
  width: 80px;
  height: 80px;

  display: flex;
  align-items: center;
  justify-content: center;

  border: 2px solid var(--gold);
  border-radius: 50%;

  background: var(--brown);

  color: #ffffffd1;

  font-size: 31px;
}

.team-description {
  padding: 0 35px;
}

.team-description h3 {
  margin-bottom: 9px;

  color: #29170e;

  font-family: "Libre Baskerville", serif;

  font-size: 24px;

  font-weight: 400;
}

.team-description p,
.team-location p {
  color: #302a26;

  font-size: 15px;
  line-height: 1.7;
}

.team-location {
  min-height: 95px;

  padding: 0 30px;

  display: grid;

  grid-template-columns: 40px 1fr;

  align-items: center;

  gap: 15px;

  border-left: 1px solid rgba(189, 135, 48, 0.45);
}

.team-location i {
  color: var(--gold);

  font-size: 33px;
}

.team-office-art {
  display: flex;
  justify-content: center;

  color: rgba(189, 135, 48, 0.3);

  font-size: 60px;
}

/* =========================================
   BOTTOM DECORATION
========================================= */

.leadership-footer-decoration {
  min-height: 70px;

  display: flex;
  align-items: center;
  justify-content: center;

  gap: 15px;

  background: linear-gradient(90deg, #271308, #4c2813, #271308);
}

.leadership-footer-decoration span {
  width: 250px;
  height: 1px;

  background: linear-gradient(90deg, transparent, var(--gold));
}

.leadership-footer-decoration span:last-child {
  background: linear-gradient(90deg, var(--gold), transparent);
}

.leadership-footer-decoration i {
  color: var(--gold);

  font-size: 25px;
}

/* =========================================
   LARGE DESKTOP
========================================= */

@media (min-width: 1600px) {
  .leadership-container {
    width: min(1400px, calc(100% - 160px));
  }
}

/* =========================================
   SMALLER DESKTOP
========================================= */

@media (max-width: 1200px) {
  .leadership-container {
    width: calc(100% - 60px);
  }

  .leadership-heading h2 {
    font-size: 48px;
  }

  .leadership-grid {
    gap: 25px;

    grid-template-columns:
      minmax(0, 2fr) minmax(280px, 1fr);
  }

  .leader-card-primary {
    grid-template-columns: 31% 69%;
  }

  .leader-details {
    padding-left: 35px;
    padding-right: 30px;
  }

  .leader-name {
    font-size: 29px;
  }

  .leader-card-secondary {
    padding-left: 30px;
    padding-right: 30px;
  }

  .leadership-team {
    grid-template-columns:
      120px minmax(0, 1.5fr) minmax(0, 1fr) 90px;
  }

  .team-description {
    padding-left: 25px;
    padding-right: 25px;
  }
}

/* =========================================
   SCOPE OF SERVICES
========================================= */

.scope {
  position: relative;
  overflow: hidden;

  background:
    radial-gradient(circle at 20% 15%,
      rgba(189, 135, 48, 0.05),
      transparent 30%),
    #faf6ee;
}

.scope-container {
  position: relative;
  z-index: 2;

  width: min(1400px, calc(100% - 90px));

  margin: auto;

  padding: 80px 0 80px;
}

/* =========================================
   SCOPE INTRODUCTION
========================================= */

.scope-intro {
  min-height: 310px;

  display: grid;

  grid-template-columns:
    minmax(400px, 1fr) minmax(400px, 1.2fr);

  align-items: center;

  gap: 70px;
}

.scope-heading {
  max-width: 520px;
}

.scope-heading .section-label {
  margin-bottom: 22px;
}

.scope-heading h2 {
  color: #25160e;

  font-family: "Libre Baskerville", serif;

  font-size: 64px;
  line-height: 1.05;

  font-weight: 400;
}

.scope-heading h2 span {
  color: var(--gold);
}

.scope-title-line {
  width: 60px;
  height: 1px;

  margin: 24px 0 18px;

  background: var(--gold);
}

.scope-heading>p {
  max-width: 480px;

  color: #302924;

  font-size: 15px;
  line-height: 1.85;
}

/* =========================================
   SCOPE STATEMENT
========================================= */

.scope-statement {
  min-height: 270px;

  padding-left: 80px;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  text-align: center;

  border-left: 1px solid rgba(189, 135, 48, 0.7);
}

.scope-statement>i {
  margin-bottom: 25px;

  color: var(--gold);

  font-size: 65px;
}

.scope-statement>p {
  max-width: 320px;

  color: #291a12;

  font-family: "Libre Baskerville", serif;

  font-size: 20px;
  line-height: 1.5;
}

.scope-statement-decoration {
  display: flex;
  align-items: center;

  margin-top: 22px;
}

.scope-statement-decoration span {
  width: 60px;
  height: 1px;

  background: rgba(189, 135, 48, 0.55);
}

.scope-statement-decoration i {
  width: 7px;
  height: 7px;

  border: 1px solid var(--gold);

  transform: rotate(45deg);
}

/* =========================================
   SERVICES PANEL
========================================= */

.scope-services {
  display: grid;

  grid-template-columns: repeat(3, 1fr);

  overflow: hidden;

  border: 1px solid rgba(189, 135, 48, 0.65);

  border-radius: 15px;

  background: rgba(255, 252, 246, 0.85);
}

.scope-service {
  position: relative;

  min-height: 220px;

  padding: 32px 35px;

  display: grid;

  grid-template-columns: 80px 1fr;

  gap: 22px;
}

.scope-service:nth-child(-n + 3) {
  border-bottom: 1px solid rgba(189, 135, 48, 0.3);
}

.scope-service:not(:nth-child(3n)) {
  border-right: 1px solid rgba(189, 135, 48, 0.35);
}

.scope-service-icon {
  width: 72px;
  height: 72px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 50%;

  background: #f5e9d4;

  color: var(--gold);

  font-size: 29px;
}

.scope-service-content h3 {
  margin-bottom: 12px;

  color: #29180f;

  font-family: "Libre Baskerville", serif;

  font-size: 20px;
  line-height: 1.4;

  font-weight: 700;
}

.scope-service-content ul {
  padding-left: 16px;
}

.scope-service-content li {
  margin-bottom: 7px;

  color: #342d28;

  font-size: 13px;
  line-height: 1.65;
}

.scope-service-content li::marker {
  color: var(--gold);
}

/* =========================================
   SCOPE FOOTER
========================================= */

.scope-footer {
  margin-top: 20px;

  background:
    radial-gradient(circle at 30% 50%,
      rgba(189, 135, 48, 0.12),
      transparent 30%),
    linear-gradient(90deg, #291408, #45230f, #291408);

  color: white;
}

.scope-footer-inner {
  width: min(1400px, calc(100% - 90px));

  min-height: 180px;

  margin: auto;

  display: grid;

  grid-template-columns: 1.1fr 1fr;

  align-items: center;
}

/* =========================================
   FOOTER MESSAGE
========================================= */

.scope-footer-message {
  min-height: 115px;

  padding-right: 45px;

  display: grid;

  grid-template-columns: 125px 1fr;

  align-items: center;

  border-right: 1px solid rgba(189, 135, 48, 0.5);
}

.scope-footer-icon {
  width: 95px;
  height: 95px;

  display: flex;
  align-items: center;
  justify-content: center;

  border: 2px solid var(--gold);
  border-radius: 50%;

  color: var(--gold);

  font-size: 40px;
}

.scope-footer-message p {
  color: rgba(255, 255, 255, 0.94);

  font-family: "Libre Baskerville", serif;

  font-size: 17px;
  font-style: italic;

  line-height: 1.75;
}

/* =========================================
   FOOTER VALUES
========================================= */

.scope-values {
  display: grid;

  grid-template-columns: repeat(4, 1fr);
}

.scope-value {
  position: relative;

  min-height: 115px;

  padding: 10px 20px;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  gap: 13px;

  text-align: center;
}

.scope-value:not(:last-child)::after {
  content: "";

  position: absolute;

  right: 0;

  width: 1px;
  height: 90px;

  background: rgba(189, 135, 48, 0.4);
}

.scope-value i {
  color: var(--gold);

  font-size: 36px;
}

.scope-value span {
  color: rgba(255, 255, 255, 0.92);

  font-size: 12px;
  line-height: 1.55;
}

/* =========================================
   LARGE DESKTOP
========================================= */

@media (min-width: 1600px) {

  .scope-container,
  .scope-footer-inner {
    width: min(1450px, calc(100% - 150px));
  }
}

/* =========================================
   SMALLER DESKTOP
========================================= */

@media (max-width: 1200px) {

  .scope-container,
  .scope-footer-inner {
    width: calc(100% - 60px);
  }

  .scope-heading h2 {
    font-size: 54px;
  }

  .scope-intro {
    gap: 40px;
  }

  .scope-statement {
    padding-left: 40px;
  }

  .scope-service {
    padding: 28px 22px;

    grid-template-columns: 65px 1fr;

    gap: 15px;
  }

  .scope-service-icon {
    width: 60px;
    height: 60px;

    font-size: 24px;
  }

  .scope-footer-inner {
    grid-template-columns: 1fr;
  }

  .scope-footer-message {
    border-right: none;

    border-bottom: 1px solid rgba(189, 135, 48, 0.4);
  }
}

/* =========================================
   CLIENT REFERENCES
========================================= */

.client-references {
  position: relative;
  overflow: hidden;

  background:
    radial-gradient(circle at 75% 10%,
      rgba(189, 135, 48, 0.07),
      transparent 35%),
    #faf6ee;
}

.clients-container {
  width: min(1400px, calc(100% - 90px));

  margin: auto;

  padding: 80px 0 80px;
}

/* =========================================
   INTRODUCTION
========================================= */

.clients-intro {
  min-height: 310px;

  display: grid;

  grid-template-columns: 40% 60%;

  align-items: center;
}

.clients-heading {
  padding-right: 60px;

  border-right: 1px solid rgba(189, 135, 48, 0.7);
}

.clients-label {
  display: flex;
  align-items: center;

  gap: 15px;

  margin-bottom: 17px;
}

.clients-label span {
  width: 30px;
  height: 1px;

  background: var(--gold);
}

.clients-label p {
  color: var(--gold);

  font-size: 17px;
  font-weight: 600;
}

.clients-heading h2 {
  color: #28170e;

  font-family: "Libre Baskerville", serif;

  font-size: 62px;
  line-height: 1.05;

  font-weight: 400;
}

.clients-heading h2 span {
  color: var(--gold);
}

.clients-title-decoration {
  display: flex;
  align-items: center;

  margin: 23px 0;
}

.clients-title-decoration span {
  width: 80px;
  height: 1px;

  background: rgba(189, 135, 48, 0.65);
}

.clients-title-decoration i {
  width: 8px;
  height: 8px;

  border: 1px solid var(--gold);

  transform: rotate(45deg);
}

.clients-description {
  max-width: 490px;

  color: #312a25;

  font-size: 15px;
  line-height: 1.85;
}

/* =========================================
   TRUST STATEMENT
========================================= */

.clients-trust {
  min-height: 280px;

  padding-left: 80px;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  text-align: center;
}

.clients-trust-icon {
  margin-bottom: 20px;

  color: var(--gold);

  font-size: 65px;
  font-weight: 100;

  transition:
    transform 0.4s ease,
    filter 0.4s ease;
}

.clients-trust:hover .clients-trust-icon {
  transform: translateY(-7px) scale(1.05);

  filter: drop-shadow(0 10px 12px rgba(189, 135, 48, 0.25));
}

.clients-trust blockquote {
  max-width: 420px;

  color: #2c1b12;

  font-family: "Libre Baskerville", serif;

  font-size: 20px;
  font-style: italic;

  line-height: 1.6;
}

.clients-trust-decoration {
  display: flex;
  align-items: center;

  margin-top: 22px;
}

.clients-trust-decoration span {
  width: 65px;
  height: 1px;

  background: rgba(189, 135, 48, 0.6);
}

.clients-trust-decoration i {
  width: 8px;
  height: 8px;

  border: 1px solid var(--gold);

  transform: rotate(45deg);
}

/* =========================================
   CLIENT PANEL
========================================= */

.clients-panel {
  position: relative;

  padding: 55px 40px 30px;

  border: 1px solid rgba(189, 135, 48, 0.65);

  border-radius: 15px;

  background: linear-gradient(145deg,
      rgba(255, 252, 246, 0.98),
      rgba(248, 240, 227, 0.7));
}

.clients-panel-title {
  position: absolute;

  top: -22px;
  left: 50%;

  width: 400px;
  height: 45px;

  display: flex;
  align-items: center;
  justify-content: center;

  gap: 20px;

  border-radius: 7px;

  background: linear-gradient(90deg, #291408, #4b260f, #291408);

  transform: translateX(-50%);

  box-shadow: 0 8px 20px rgba(47, 24, 10, 0.15);
}

.clients-panel-title span {
  width: 50px;
  height: 1px;

  background: linear-gradient(90deg, transparent, var(--gold));
}

.clients-panel-title span:last-child {
  background: linear-gradient(90deg, var(--gold), transparent);
}

.clients-panel-title h3 {
  color: #ffffffd1;

  font-size: 18px;
  letter-spacing: 0.5px;
}

/* =========================================
   CLIENT GRID
========================================= */

.clients-grid {
  display: grid;

  grid-template-columns: repeat(4, 1fr);

  column-gap: 25px;
}

.client-item {
  position: relative;

  min-height: 100px;

  padding: 18px 20px;

  display: grid;

  grid-template-columns: 55px 1fr 20px;

  align-items: center;

  gap: 15px;

  border-bottom: 1px solid rgba(189, 135, 48, 0.25);

  cursor: default;

  transition:
    transform 0.3s ease,
    background 0.3s ease,
    box-shadow 0.3s ease;
}

/* Animated bottom line */

.client-item::after {
  content: "";

  position: absolute;

  left: 0;
  bottom: -1px;

  width: 0;
  height: 1px;

  background: var(--gold);

  transition: width 0.4s ease;
}

.client-item:hover {
  z-index: 3;

  background: linear-gradient(135deg,
      rgba(255, 250, 240, 0.95),
      rgba(242, 225, 195, 0.5));

  transform: translateY(-5px);
  border-radius: 8px;

  box-shadow: 0 12px 30px rgba(63, 34, 14, 0.09);
}

.client-item:hover::after {
  width: 100%;
}

/* =========================================
   CLIENT NUMBER
========================================= */

.client-number {
  width: 48px;
  height: 48px;

  display: flex;
  align-items: center;
  justify-content: center;

  border: 2px solid #eee0c7;
  border-radius: 50%;

  color: #8c5d23;

  font-family: "Libre Baskerville", serif;

  font-size: 15px;

  transition:
    color 0.3s ease,
    background 0.3s ease,
    border-color 0.3s ease,
    transform 0.3s ease;
}

.client-item:hover .client-number {
  border-color: var(--gold);

  background: var(--brown);

  color: #ffffff;

  transform: rotate(-8deg) scale(1.08);
}

/* =========================================
   CLIENT CONTENT
========================================= */

.client-content h4 {
  color: #2a1a11;

  font-family: "Libre Baskerville", serif;

  font-size: 15px;
  line-height: 1.45;

  font-weight: 400;

  transition:
    color 0.3s ease,
    transform 0.3s ease;
}

.client-content p {
  margin-top: 5px;

  color: #8b6a47;

  font-size: 11px;
}

.client-item:hover .client-content h4 {
  color: #8c5d23;

  transform: translateX(3px);
}

/* =========================================
   HOVER ARROW
========================================= */

.client-arrow {
  color: var(--gold);

  font-size: 12px;

  opacity: 0;

  transform: translate(-8px, 8px);

  transition:
    opacity 0.3s ease,
    transform 0.3s ease;
}

.client-item:hover .client-arrow {
  opacity: 1;

  transform: translate(0, 0);
}

/* =========================================
   CLIENT FOOTER
========================================= */

.clients-footer {
  padding: 0 35px 30px;
}

.clients-footer-inner {
  width: min(1450px, 100%);

  min-height: 140px;

  margin: auto;

  padding: 25px 50px;

  display: grid;

  grid-template-columns:
    140px minmax(0, 1fr) 180px;

  align-items: center;

  background: linear-gradient(90deg, #291408, #4a2712, #291408);

  border: 1px solid var(--gold);

  border-radius: 8px;

  box-shadow: 0 8px 20px rgba(42, 20, 8, 0.18);
}

.clients-footer-icon {
  width: 90px;
  height: 90px;

  display: flex;
  align-items: center;
  justify-content: center;

  border: 1px solid var(--gold);
  border-radius: 50%;

  color: var(--gold);

  font-size: 35px;

  transition:
    background 0.35s ease,
    color 0.35s ease,
    transform 0.35s ease;
}

.clients-footer-inner:hover .clients-footer-icon {
  background: var(--gold);

  color: var(--brown);

  transform: scale(1.07);
}

.clients-footer-inner>p {
  padding-left: 30px;

  border-left: 1px solid rgba(189, 135, 48, 0.5);

  color: rgba(255, 255, 255, 0.92);

  font-family: "Libre Baskerville", serif;

  font-size: 17px;
  font-style: italic;

  line-height: 1.75;
}

.clients-footer-inner>p span {
  color: var(--gold);
}

.clients-footer-decoration {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.clients-footer-decoration span {
  width: 60px;
  height: 1px;

  background: linear-gradient(90deg, transparent, var(--gold));
}

.clients-footer-decoration span:last-child {
  background: linear-gradient(90deg, var(--gold), transparent);
}

.clients-footer-decoration i {
  width: 9px;
  height: 9px;

  border: 1px solid var(--gold);

  transform: rotate(45deg);
}

/* =========================================
   LARGE DESKTOP
========================================= */

@media (min-width: 1600px) {
  .clients-container {
    width: min(1450px, calc(100% - 150px));
  }
}

/* =========================================
   SMALLER DESKTOP
========================================= */

@media (max-width: 1200px) {
  .clients-container {
    width: calc(100% - 60px);
  }

  .clients-heading h2 {
    font-size: 54px;
  }

  .clients-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .clients-trust {
    padding-left: 40px;
  }

  .clients-footer-inner {
    grid-template-columns:
      110px 1fr;
  }

  .clients-footer-decoration {
    display: none;
  }
}

/* =========================================
   CLIENT TESTIMONIALS
========================================= */

.testimonials {
  position: relative;
  overflow: hidden;

  background:
    radial-gradient(circle at 10% 80%,
      rgba(189, 135, 48, 0.07),
      transparent 30%),
    radial-gradient(circle at 90% 15%, rgba(85, 38, 16, 0.05), transparent 32%),
    #f7f0e5;
}

.testimonials-container {
  width: min(1400px, calc(100% - 90px));

  margin: auto;

  padding: 80px 0 80px;
}

/* =========================================
   HEADER
========================================= */

.testimonials-header {
  max-width: 760px;

  margin: 0 auto 50px;

  text-align: center;
}

.testimonials-label {
  display: flex;
  align-items: center;
  /* justify-content: center; */
  gap: 16px;
  margin-bottom: 17px;
}

.testimonials-label span {
  width: 55px;
  height: 1px;

  background: linear-gradient(90deg, transparent, var(--gold));
}

.testimonials-label span:last-child {
  background: linear-gradient(90deg, var(--gold), transparent);
}

.testimonials-label p {
  color: var(--gold);

  font-size: 15px;
  font-weight: 600;
  letter-spacing: 1px;
}

.testimonials-header h2 {
  color: #28170e;

  font-family: "Libre Baskerville", serif;

  font-size: 55px;
  line-height: 1.2;

  font-weight: 400;
}

.testimonials-header h2 span {
  color: var(--gold);
}

.testimonials-intro {
  max-width: 610px;

  margin: 20px auto 0;

  color: #3a312b;

  font-size: 15px;
  line-height: 1.8;
}

/* =========================================
   TESTIMONIAL LAYOUT
========================================= */

.testimonials-layout {
  display: grid;

  grid-template-columns:
    minmax(0, 1.15fr) minmax(0, 1fr);

  gap: 30px;
}

/* =========================================
   FEATURED TESTIMONIAL
========================================= */

.testimonial-featured {
  position: relative;

  min-height: 520px;

  padding: 55px 60px;

  overflow: hidden;

  display: flex;
  flex-direction: column;
  justify-content: center;

  border: 1px solid rgba(189, 135, 48, 0.8);
  border-radius: 18px;

  background:
    radial-gradient(circle at 90% 90%,
      rgba(189, 135, 48, 0.2),
      transparent 38%),
    linear-gradient(145deg, #351a0c, #1f1008);

  color: white;

  transition:
    transform 0.4s ease,
    box-shadow 0.4s ease;
}

.testimonial-featured:hover {
  transform: translateY(-7px);

  box-shadow: 0 25px 50px rgba(48, 23, 9, 0.18);
}

/* Number */

.testimonial-featured-number {
  position: absolute;

  top: 30px;
  right: 35px;

  color: rgba(189, 135, 48, 0.3);

  font-family: "Libre Baskerville", serif;

  font-size: 65px;

  transition:
    color 0.4s ease,
    transform 0.4s ease;
}

.testimonial-featured:hover .testimonial-featured-number {
  color: rgba(189, 135, 48, 0.7);

  transform: translateY(-4px);
}

/* Quote */

.testimonial-large-quote {
  height: 75px;

  color: var(--gold);

  font-family: Georgia, serif;

  font-size: 110px;
  line-height: 1;
}

.testimonial-featured blockquote {
  position: relative;
  z-index: 2;

  max-width: 650px;

  color: rgba(255, 255, 255, 0.96);

  font-family: "Libre Baskerville", serif;

  font-size: 24px;
  font-style: italic;

  line-height: 1.75;
}

/* Divider */

.testimonial-divider {
  display: flex;
  align-items: center;

  margin: 30px 0;
}

.testimonial-divider span {
  width: 80px;
  height: 1px;

  background: rgba(189, 135, 48, 0.6);
}

.testimonial-divider i {
  width: 8px;
  height: 8px;

  border: 1px solid var(--gold);

  transform: rotate(45deg);
}

/* Author */

.testimonial-author {
  position: relative;
  z-index: 2;

  display: flex;
  align-items: center;

  gap: 18px;
}

.testimonial-author-icon {
  width: 58px;
  height: 58px;

  display: flex;
  align-items: center;
  justify-content: center;

  flex-shrink: 0;

  border: 1px solid var(--gold);
  border-radius: 50%;

  color: var(--gold);

  font-size: 21px;

  transition:
    background 0.35s ease,
    color 0.35s ease,
    transform 0.35s ease;
}

.testimonial-featured:hover .testimonial-author-icon {
  background: var(--gold);

  color: var(--brown);

  transform: rotate(-7deg);
}

.testimonial-author h3 {
  margin-bottom: 5px;

  color: var(--gold);

  font-family: "Libre Baskerville", serif;

  font-size: 16px;
  font-weight: 400;
}

.testimonial-author p {
  color: rgba(255, 255, 255, 0.72);

  font-size: 13px;
}

/* Background art */

.testimonial-featured-art {
  position: absolute;

  right: -25px;
  bottom: -35px;

  color: rgba(189, 135, 48, 0.08);

  font-size: 240px;

  transition:
    transform 0.6s ease,
    color 0.6s ease;
}

.testimonial-featured:hover .testimonial-featured-art {
  color: rgba(189, 135, 48, 0.13);

  transform: translate(-10px, -10px);
}

/* =========================================
   SUPPORTING TESTIMONIALS
========================================= */

.testimonial-supporting {
  display: grid;

  grid-template-rows: repeat(2, 1fr);

  gap: 30px;
}

/* =========================================
   TESTIMONIAL CARD
========================================= */

.testimonial-card {
  position: relative;

  min-height: 245px;

  padding: 35px 40px;

  overflow: hidden;

  border: 1px solid rgba(189, 135, 48, 0.55);
  border-radius: 16px;

  background: linear-gradient(145deg,
      rgba(255, 252, 246, 0.98),
      rgba(245, 234, 215, 0.65));

  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease,
    border-color 0.35s ease;
}

.testimonial-card::before {
  content: "";

  position: absolute;

  left: 0;
  bottom: 0;

  width: 100%;
  height: 4px;

  background: var(--gold);

  transform: scaleX(0);

  transform-origin: left;

  transition: transform 0.4s ease;
}

.testimonial-card:hover {
  border-color: var(--gold);

  transform: translateX(7px);

  box-shadow: 0 15px 35px rgba(63, 34, 14, 0.1);
}

.testimonial-card:hover::before {
  transform: scaleX(1);
}

/* Card header */

.testimonial-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;

  margin-bottom: 20px;
}

.testimonial-number {
  width: 45px;
  height: 45px;

  display: flex;
  align-items: center;
  justify-content: center;

  border: 1px solid rgba(189, 135, 48, 0.65);
  border-radius: 50%;

  color: #8b5d25;

  font-family: "Libre Baskerville", serif;

  font-size: 14px;

  transition:
    background 0.35s ease,
    color 0.35s ease,
    transform 0.35s ease;
}

.testimonial-card:hover .testimonial-number {
  background: var(--brown);

  color: #ffffff;

  transform: rotate(-8deg);
}

.testimonial-card-header>i {
  color: rgba(189, 135, 48, 0.25);

  font-size: 38px;

  transition:
    color 0.35s ease,
    transform 0.35s ease;
}

.testimonial-card:hover .testimonial-card-header>i {
  color: rgba(189, 135, 48, 0.7);

  transform: translateY(-4px);
}

/* Quote text */

.testimonial-card blockquote {
  margin-bottom: 25px;

  color: #30261f;

  font-family: "Libre Baskerville", serif;

  font-size: 15px;
  font-style: italic;

  line-height: 1.75;
}

/* Footer */

.testimonial-card-footer {
  display: flex;
  align-items: center;

  gap: 15px;
}

.testimonial-small-icon {
  width: 45px;
  height: 45px;

  display: flex;
  align-items: center;
  justify-content: center;

  flex-shrink: 0;

  border-radius: 50%;

  background: #f1e3ca;

  color: var(--gold);

  font-size: 17px;
}

.testimonial-card-footer h3 {
  margin-bottom: 3px;

  color: #29190f;

  font-size: 14px;
}

.testimonial-card-footer p {
  color: #876d55;

  font-size: 12px;
}

/* =========================================
   CLOSING STATEMENT
========================================= */

.testimonial-closing {
  margin-top: 45px;

  text-align: center;
}

.testimonial-closing-decoration {
  display: flex;
  align-items: center;
  justify-content: center;

  gap: 18px;

  margin-bottom: 15px;
}

.testimonial-closing-decoration span {
  width: 180px;
  height: 1px;

  background: linear-gradient(90deg, transparent, var(--gold));
}

.testimonial-closing-decoration span:last-child {
  background: linear-gradient(90deg, var(--gold), transparent);
}

.testimonial-closing-decoration i {
  color: var(--gold);

  font-size: 23px;
}

.testimonial-closing>p {
  color: #76532e;

  font-family: "Libre Baskerville", serif;

  font-size: 16px;
  font-style: italic;
}

/* =========================================
   LARGE DESKTOP
========================================= */

@media (min-width: 1600px) {
  .testimonials-container {
    width: min(1450px, calc(100% - 150px));
  }
}

/* =========================================
   SMALLER DESKTOP
========================================= */

@media (max-width: 1200px) {
  .testimonials-container {
    width: calc(100% - 60px);
  }

  .testimonials-header h2 {
    font-size: 48px;
  }

  .testimonial-featured {
    padding: 45px;
  }

  .testimonial-featured blockquote {
    font-size: 20px;
  }

  .testimonial-card {
    padding: 30px;
  }
}

/* =========================================
   CONTACT
========================================= */

.contact {
  position: relative;
  overflow: hidden;

  background:
    radial-gradient(circle at 85% 15%,
      rgba(189, 135, 48, 0.08),
      transparent 30%),
    #faf6ee;
}

.contact-container {
  width: min(1400px, calc(100% - 90px));

  margin: auto;

  padding: 80px 0 80px;
}

/* =========================================
   CONTACT HEADER
========================================= */

.contact-header {
  max-width: 800px;

  margin: 0 auto 50px;

  text-align: center;
}

.contact-label {
  display: flex;
  align-items: center;
  justify-content: center;

  gap: 16px;

  margin-bottom: 17px;
}

.contact-label span {
  width: 55px;
  height: 1px;

  background: linear-gradient(90deg, transparent, var(--gold));
}

.contact-label span:last-child {
  background: linear-gradient(90deg, var(--gold), transparent);
}

.contact-label p {
  color: var(--gold);

  font-size: 15px;
  font-weight: 600;
  letter-spacing: 1px;
}

.contact-header h2 {
  color: #28170e;

  font-family: "Libre Baskerville", serif;

  font-size: 55px;
  line-height: 1.2;

  font-weight: 400;
}

.contact-header h2 span {
  color: var(--gold);
}

.contact-header>p {
  max-width: 620px;

  margin: 20px auto 0;

  color: #3a312b;

  font-size: 15px;
  line-height: 1.8;
}

/* =========================================
   CONTACT LAYOUT
========================================= */

.contact-layout {
  display: grid;

  grid-template-columns:
    minmax(350px, 0.85fr) minmax(600px, 1.4fr);

  overflow: hidden;

  border: 1px solid rgba(189, 135, 48, 0.7);

  border-radius: 18px;

  background: #fffaf3;

  box-shadow: 0 20px 55px rgba(55, 29, 12, 0.08);
}

/* =========================================
   CONTACT INFORMATION
========================================= */

.contact-information {
  position: relative;

  padding: 50px;

  overflow: hidden;

  background:
    radial-gradient(circle at 10% 90%,
      rgba(189, 135, 48, 0.18),
      transparent 40%),
    linear-gradient(145deg, #341a0d, #211008);

  color: white;
}

.contact-information::after {
  content: "";

  position: absolute;

  right: -90px;
  bottom: -110px;

  width: 280px;
  height: 280px;

  border: 1px solid rgba(189, 135, 48, 0.13);
  border-radius: 50%;
}

.contact-information-heading {
  position: relative;
  z-index: 2;

  margin-bottom: 40px;
}

.contact-information-heading>span {
  display: block;

  margin-bottom: 12px;

  color: var(--gold);

  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
}

.contact-information-heading h3 {
  max-width: 380px;

  margin-bottom: 16px;

  font-family: "Libre Baskerville", serif;

  font-size: 31px;
  line-height: 1.35;

  font-weight: 400;
}

.contact-information-heading p {
  max-width: 400px;

  color: rgba(255, 255, 255, 0.72);

  font-size: 13px;
  line-height: 1.75;
}

/* =========================================
   CONTACT DETAILS
========================================= */

.contact-detail {
  position: relative;
  z-index: 2;

  display: grid;

  grid-template-columns: 55px 1fr;

  gap: 18px;

  margin-top: 27px;
}

.contact-detail-icon {
  width: 48px;
  height: 48px;

  display: flex;
  align-items: center;
  justify-content: center;

  border: 1px solid rgba(189, 135, 48, 0.7);
  border-radius: 50%;

  color: var(--gold);

  font-size: 17px;

  transition:
    background 0.35s ease,
    color 0.35s ease,
    transform 0.35s ease;
}

.contact-detail:hover .contact-detail-icon {
  background: var(--gold);

  color: var(--brown);

  transform: rotate(-8deg);
}

.contact-detail span {
  display: block;

  margin-bottom: 8px;

  color: var(--gold);

  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1px;
}

.contact-detail p {
  margin-bottom: 4px;

  color: rgba(255, 255, 255, 0.86);

  font-size: 13px;
  line-height: 1.7;
}

/* =========================================
   CONTACT FORM
========================================= */

.contact-form-wrapper {
  padding: 50px 55px;
}

.contact-form-heading {
  margin-bottom: 35px;
}

.contact-form-heading>span {
  display: block;

  margin-bottom: 10px;

  color: var(--gold);

  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
}

.contact-form-heading h3 {
  margin-bottom: 10px;

  color: #29180f;

  font-family: "Libre Baskerville", serif;

  font-size: 34px;

  font-weight: 400;
}

.contact-form-heading p {
  color: #766a60;

  font-size: 13px;
  line-height: 1.7;
}

/* =========================================
   FORM
========================================= */

.contact-form {
  display: flex;
  flex-direction: column;

  gap: 22px;
}

.form-row {
  display: grid;

  grid-template-columns: repeat(2, 1fr);

  gap: 22px;
}

.form-field {
  display: flex;
  flex-direction: column;

  gap: 9px;
}

.form-field label {
  color: #39291f;

  font-size: 12px;
  font-weight: 600;
}

.form-field input,
.form-field textarea {
  width: 100%;

  padding: 14px 15px;

  border: 1px solid rgba(113, 82, 51, 0.25);
  border-radius: 5px;

  outline: none;

  background: #fffdf9;

  color: #28170e;

  font-family: "DM Sans", sans-serif;

  font-size: 13px;

  transition:
    border-color 0.3s ease,
    box-shadow 0.3s ease,
    background 0.3s ease;
}

.form-field textarea {
  resize: vertical;

  min-height: 130px;
}

.form-field input:focus,
.form-field textarea:focus {
  border-color: var(--gold);

  background: white;

  box-shadow: 0 0 0 3px rgba(189, 135, 48, 0.1);
}

.form-field input::placeholder,
.form-field textarea::placeholder {
  color: #aa9d91;
}

/* =========================================
   SUBMIT BUTTON
========================================= */

.contact-submit {
  width: 160px;
  height: 55px;

  margin-top: 3px;

  padding: 0 22px;

  display: flex;
  align-items: center;
  justify-content: space-between;

  border: 1px solid var(--brown);
  border-radius: 4px;

  background: var(--brown);

  color: white;

  cursor: pointer;

  font-family: "DM Sans", sans-serif;

  font-size: 12px;
  font-weight: 600;

  transition:
    background 0.35s ease,
    border-color 0.35s ease,
    transform 0.35s ease,
    box-shadow 0.35s ease;
}

.contact-submit i {
  color: #ffffff;

  transition:
    color 0.35s ease,
    transform 0.35s ease;
}

.contact-submit:hover {
  border-color: var(--gold);

  background: var(--gold);

  color: var(--brown);

  transform: translateY(-3px);

  box-shadow: 0 12px 25px rgba(74, 37, 14, 0.15);
}

.contact-submit:hover i {
  color: var(--brown);

  transform: translate(4px, -4px);
}

/* =========================================
   FOOTER
========================================= */

.footer {
  background:
    radial-gradient(circle at 10% 50%,
      rgba(189, 135, 48, 0.12),
      transparent 25%),
    linear-gradient(110deg, #211008, #351a0d, #211008);

  color: white;
}

.footer-container {
  width: min(1400px, calc(100% - 90px));

  min-height: 310px;

  margin: auto;

  padding: 55px 0 45px;

  display: grid;

  grid-template-columns:
    1.5fr 0.7fr 1fr 1fr;

  gap: 55px;
}

/* =========================================
   FOOTER BRAND
========================================= */

.footer-logo {
  display: block;

  width: 230px;
  padding: 5px;
  margin-bottom: 22px;
  background: #ffffffd1;
  border-radius: 5px;
}

.footer-logo img {
  width: 100%;

  display: block;
}

.footer-brand>p {
  max-width: 350px;

  color: rgba(255, 255, 255, 0.7);

  font-size: 13px;
  line-height: 1.8;
}

.footer-brand-decoration {
  display: flex;
  align-items: center;

  margin-top: 25px;
}

.footer-brand-decoration span {
  width: 55px;
  height: 1px;

  background: rgba(189, 135, 48, 0.55);
}

.footer-brand-decoration i {
  width: 7px;
  height: 7px;

  border: 1px solid var(--gold);

  transform: rotate(45deg);
}

/* =========================================
   FOOTER COLUMNS
========================================= */

.footer-column h3 {
  position: relative;

  margin-bottom: 27px;

  color: var(--gold);

  font-family: "Libre Baskerville", serif;

  font-size: 17px;
  font-weight: 400;
}

.footer-column h3::after {
  content: "";

  position: absolute;

  left: 0;
  bottom: -10px;

  width: 35px;
  height: 1px;

  background: var(--gold);

  transition: width 0.35s ease;
}

.footer-column:hover h3::after {
  width: 60px;
}

.footer-column ul {
  list-style: none;
}

.footer-column li {
  margin-bottom: 11px;
}

.footer-column a {
  color: rgba(255, 255, 255, 0.72);

  text-decoration: none;

  font-size: 12px;

  transition:
    color 0.3s ease,
    padding-left 0.3s ease;
}

.footer-column a:hover {
  padding-left: 5px;

  color: var(--gold);
}

.footer-contact p {
  margin-bottom: 13px;

  color: rgba(255, 255, 255, 0.72);

  font-size: 12px;
  line-height: 1.7;
}

/* =========================================
   FOOTER BOTTOM
========================================= */

.footer-bottom {
  border-top: 1px solid rgba(189, 135, 48, 0.3);

  background: rgba(17, 8, 4, 0.35);
}

.footer-bottom-inner {
  width: min(1400px, calc(100% - 90px));

  min-height: 65px;

  margin: auto;

  display: grid;

  grid-template-columns: 1fr auto 1fr;

  align-items: center;
}

.footer-bottom-inner>p {
  color: rgba(255, 255, 255, 0.55);

  font-size: 11px;
}

.footer-bottom-decoration {
  display: flex;
  align-items: center;

  gap: 13px;
}

.footer-bottom-decoration span {
  width: 75px;
  height: 1px;

  background: linear-gradient(90deg, transparent, var(--gold));
}

.footer-bottom-decoration span:last-child {
  background: linear-gradient(90deg, var(--gold), transparent);
}

.footer-bottom-decoration i {
  color: var(--gold);

  font-size: 16px;
}

.footer-legal {
  display: flex;
  justify-content: flex-end;

  gap: 10px;
}

.footer-legal a,
.footer-legal span {
  color: rgba(255, 255, 255, 0.55);

  text-decoration: none;

  font-size: 11px;
}

.footer-legal a:hover {
  color: var(--gold);
}

/* =========================================
   LARGE DESKTOP
========================================= */

@media (min-width: 1600px) {

  .contact-container,
  .footer-container,
  .footer-bottom-inner {
    width: min(1450px, calc(100% - 150px));
  }
}

/* =========================================
   SMALLER DESKTOP
========================================= */

@media (max-width: 1200px) {

  .contact-container,
  .footer-container,
  .footer-bottom-inner {
    width: calc(100% - 60px);
  }

  .contact-header h2 {
    font-size: 48px;
  }

  .contact-layout {
    grid-template-columns:
      minmax(330px, 0.85fr) minmax(500px, 1.3fr);
  }

  .contact-information {
    padding: 40px;
  }

  .contact-form-wrapper {
    padding: 40px;
  }

  .footer-container {
    grid-template-columns:
      1.3fr 0.7fr 1fr 1fr;

    gap: 35px;
  }
}

/* Final responsive professional refinement */
:root {
  --cream: #fbfaf7;
  --brown: #3b2117;
  --brown-light: #563225;
  --gold: #a9783f;
  --text: #26211e;
}

body {
  background: var(--cream);
}

section {
  scroll-margin-top: 88px;
}

.navbar {
  position: sticky;
  top: 0;
  height: 88px;
  padding: 0 clamp(20px, 5vw, 72px);
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.08);
}

.hero {
  min-height: 620px;
  height: auto;
}

.feature,
.leader-card,
.scope-service,
.client-item,
.testimonial-card,
.contact-layout {
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.scope-service:hover,
.leader-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 36px rgba(50, 30, 20, 0.08);
}

@media (max-width: 900px) {
  .navbar {
    height: auto;
    min-height: 78px;
    flex-wrap: wrap;
    gap: 16px;
    padding-block: 14px;
  }

  .nav-links {
    order: 3;
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
    gap: 18px;
  }

  .nav-cta {
    display: none;
  }

  .hero-content {
    padding: 70px 32px;
  }

  .hero-copy {
    width: min(100%, 600px);
  }

  .hero h1 {
    font-size: clamp(38px, 7vw, 54px);
  }

  .feature-list,
  .about-values,
  .scope-services,
  .clients-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-container,
  .leadership-grid,
  .scope-intro,
  .clients-intro,
  .testimonials-layout,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .about-container,
  .leadership-container,
  .scope-container,
  .clients-container,
  .testimonials-container,
  .contact-container {
    width: min(100% - 40px, 900px);
  }

  .about-content {
    padding-right: 0;
  }

  .about-visual {
    height: 520px;
  }

  .about-quote {
    left: 20px;
  }

  .leader-card-primary {
    grid-template-columns: 1fr;
  }

  .leader-identity {
    min-height: 260px;
  }

  .leadership-team {
    grid-template-columns: 1fr;
  }

  .team-icon-wrapper,
  .team-location {
    border: 0;
  }

  .scope-statement,
  .clients-trust {
    padding-left: 0;
    border: 0;
  }

  .scope-footer-inner {
    width: calc(100% - 40px);
  }

  .scope-values {
    grid-template-columns: repeat(2, 1fr);
  }

  .clients-heading {
    padding-right: 0;
    border: 0;
  }

  .testimonial-supporting {
    grid-template-rows: auto;
  }

  .contact-information,
  .contact-form-wrapper {
    padding: 36px;
  }
}

@media (max-width: 600px) {
  .navbar {
    align-items: center;
  }

  .logo {
    width: 160px;
  }

  .nav-links {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    text-align: center;
  }

  .hero {
    background-position: 62% center;
  }

  .hero::before {
    background: rgba(40, 19, 8, 0.76);
  }

  .hero-content {
    padding: 64px 20px;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: stretch;
  }

  .button {
    width: 100%;
  }

  .features {
    padding: 48px 20px;
  }

  .feature-list,
  .about-values,
  .scope-services,
  .clients-grid,
  .scope-values {
    grid-template-columns: 1fr;
  }

  .feature {
    border-right: 0;
    border-bottom: 1px solid rgba(117, 77, 36, 0.2);
  }

  .about-container,
  .leadership-container,
  .scope-container,
  .clients-container,
  .testimonials-container,
  .contact-container {
    width: calc(100% - 28px);
  }

  .about-title,
  .leadership-heading h2,
  .scope-heading h2,
  .clients-heading h2,
  .testimonials-header h2,
  .contact-header h2 {
    font-size: clamp(34px, 11vw, 46px);
  }

  .about-visual {
    height: 430px;
  }

  .about-image {
    border-radius: 18px;
  }

  .about-quote {
    position: relative;
    left: auto;
    bottom: auto;
    width: 100%;
    margin-top: 16px;
  }

  .about-visual {
    height: auto;
  }

  .about-image {
    position: relative;
    height: 420px;
  }

  .leader-details,
  .leader-card-secondary,
  .testimonial-featured,
  .testimonial-card,
  .contact-information,
  .contact-form-wrapper {
    padding: 28px 22px;
  }

  .scope-intro {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .scope-service {
    grid-template-columns: 58px 1fr;
    padding: 24px 18px;
  }

  .scope-service:not(:nth-child(3n)) {
    border-right: 0;
  }

  .clients-panel {
    padding: 45px 12px 20px;
  }

  .clients-panel-title {
    width: 80%;
  }

  .client-item {
    grid-template-columns: 48px 1fr;
  }

  .testimonial-featured blockquote {
    font-size: 18px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .footer-container {
    grid-template-columns: 1fr !important;
    gap: 32px;
  }
}

/* Responsive navigation + sticky header + hero spacing */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
}

.menu-toggle {
  display: none;
  border: 0;
  background: transparent;
  color: var(--brown);
  font-size: 26px;
  cursor: pointer;
}

.hero {
  min-height: calc(100vh - var(--nav-height));
  height: auto;
}

.hero-content {
  padding-top: 48px;
  padding-bottom: 90px;
}

/* Mobile menu elements hidden by default */
.hamburger-btn-mobile {
  display: none;
}

.menu-container-mobile {
  display: none;
}

section[id] {
  scroll-margin-top: var(--nav-height);
}

@media (max-width: 900px) {
  .navbar {
    position: sticky;
    top: 0;
    display: grid;
    grid-template-columns: 1fr auto;
    min-height: 78px;
    padding: 12px 24px;
  }

  /* Hamburger button styles */
  .hamburger-btn-mobile {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 18px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 10000;
  }

  .hamburger-bar-mobile {
    width: 100%;
    height: 2px;
    background-color: var(--gold);
    border-radius: 2px;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s ease;
  }

  .hamburger-btn-mobile.open-mobile .hamburger-bar-mobile:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }

  .hamburger-btn-mobile.open-mobile .hamburger-bar-mobile:nth-child(2) {
    opacity: 0;
  }

  .hamburger-btn-mobile.open-mobile .hamburger-bar-mobile:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }

  /* Mobile menu container styles */
  .menu-container-mobile {
    display: block;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #faf5ed;
    border-bottom: 2px solid var(--gold);
    box-shadow: 0 10px 30px rgba(50, 30, 20, 0.15);
    z-index: 9999;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    visibility: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s ease, visibility 0.3s;
  }

  [data-theme="dark"] .menu-container-mobile {
    background: #251208;
    border-bottom-color: var(--gold);
  }

  .menu-container-mobile.open-mobile {
    max-height: 85vh;
    overflow-y: auto;
    opacity: 1;
    visibility: visible;
  }

  .nav-mobile {
    display: block !important;
    width: 100%;
  }

  .nav-list-mobile {
    list-style: none;
    padding: 20px 24px;
    display: flex;
    flex-direction: column;
    gap: 0;
  }

  .nav-item-mobile {
    border-bottom: 1px solid rgba(169, 120, 63, 0.15);
    opacity: 0;
    transform: translateY(-10px);
    transition: opacity 0.3s ease, transform 0.3s ease;
  }

  .menu-container-mobile.open-mobile .nav-item-mobile {
    opacity: 1;
    transform: translateY(0);
  }

  /* Stagger animation for links */
  .menu-container-mobile.open-mobile .nav-item-mobile:nth-child(1) {
    transition-delay: 0.05s;
  }

  .menu-container-mobile.open-mobile .nav-item-mobile:nth-child(2) {
    transition-delay: 0.1s;
  }

  .menu-container-mobile.open-mobile .nav-item-mobile:nth-child(3) {
    transition-delay: 0.15s;
  }

  .menu-container-mobile.open-mobile .nav-item-mobile:nth-child(4) {
    transition-delay: 0.2s;
  }

  .menu-container-mobile.open-mobile .nav-item-mobile:nth-child(5) {
    transition-delay: 0.25s;
  }

  .menu-container-mobile.open-mobile .nav-item-mobile:nth-child(6) {
    transition-delay: 0.30s;
  }

  .menu-container-mobile.open-mobile .nav-item-mobile:nth-child(7) {
    transition-delay: 0.35s;
  }

  .nav-item-mobile:last-child {
    border-bottom: none;
  }

  .nav-link-mobile {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 0;
    font-family: "DM Sans", sans-serif;
    font-size: 15px;
    font-weight: 600;
    text-transform: uppercase;
    text-decoration: none;
    color: var(--brown) !important;
    transition: color 0.3s ease, transform 0.3s ease;
  }

  [data-theme="dark"] .nav-link-mobile {
    color: #f7f0e5 !important;
  }

  .nav-link-mobile:hover,
  .nav-link-mobile.active-mobile {
    color: var(--gold) !important;
    transform: translateX(6px);
  }

  .icon-mobile {
    font-size: 11px;
    color: var(--gold);
    opacity: 0.8;
    transition: transform 0.3s ease;
  }

  .nav-link-mobile:hover .icon-mobile,
  .nav-link-mobile.active-mobile .icon-mobile {
    transform: translateX(4px);
  }

  .menu-toggle {
    display: block;
  }

  .navbar nav {
    display: none;
    grid-column: 1/-1;
    width: 100%;
  }

  .navbar nav.is-open {
    display: block;
  }

  .nav-links {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 14px 0;
  }

  .nav-links li a {
    color: black !important;
  }

  .nav-links li {
    border-top: 1px solid rgba(50, 24, 11, 0.1);
  }

  .nav-links a {
    display: block;
    padding: 14px 4px;
  }

  .nav-links a::after {
    bottom: 8px;
  }

  .nav-cta {
    display: none;
  }

  .hero {
    min-height: calc(100svh - 78px);
  }

  .hero-content {
    padding: 80px 28px 110px;
  }
}

@media (max-width: 600px) {
  .navbar {
    padding-inline: 18px;
  }

  .logo {
    width: 155px;
  }

  .hero {
    background-position: 64% center;
  }

  .hero::before {
    background: linear-gradient(90deg,
        rgba(40, 19, 8, 0.96),
        rgba(40, 19, 8, 0.72));
  }

  .hero-content {
    align-items: center;
    padding: 72px 20px 105px;
  }

  .hero-copy {
    margin-top: 0;
  }
}

/* Mobile UX fixes */
@media (max-width: 600px) {
  .clients-panel-title h3 {
    font-size: 14px;
  }

  .hero {
    background-image: none;
    background: #2d160b;
    min-height: auto;
  }

  .hero::before {
    display: none;
  }

  .hero-content {
    padding: 42px 20px 28px;
    display: block;
  }

  .hero-copy {
    width: 100%;
  }

  .hero-copy::before {
    content: "";
    display: block;
    width: 100%;
    aspect-ratio: 4/3;
    margin-bottom: 28px;
    border-radius: 14px;
    background: url("./assets/images/Advocate.png") center 25% / cover no-repeat;
  }

  .hero h1 {
    font-size: 40px;
    line-height: 1.12;
    letter-spacing: -1px;
  }

  .hero-description {
    font-size: 14px;
    line-height: 1.75;
  }

  .hero-buttons {
    gap: 12px;
  }

  .button {
    min-height: 52px;
  }

  .button:active,
  .client-item:active,
  .scope-service:active,
  .testimonial-card:active {
    transform: scale(0.98);
  }

  .about-values {
    gap: 0;
    margin: 20px 0;
  }

  .about-value {
    min-height: auto;
    padding: 20px 10px;
    border-bottom: 1px solid rgba(189, 135, 48, 0.25);
  }

  .about-value:not(:last-child)::after {
    display: none;
  }

  .about-description {
    margin-top: 24px;
  }

  .scope-footer-inner {
    width: 100%;
  }

  .scope-footer-message {
    display: block;
    padding: 28px 22px;
    text-align: center;
  }

  .scope-footer-icon {
    width: 68px;
    height: 68px;
    margin: 0 auto 18px;
    font-size: 28px;
  }

  .scope-footer-message p {
    font-size: 16px;
  }

  .scope-values {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .scope-value {
    min-height: 150px;
    padding: 20px 10px;
    border: 1px solid rgba(189, 135, 48, 0.18);
  }

  .scope-value:not(:last-child)::after {
    display: none;
  }

  .clients-footer {
    padding: 0 14px 24px;
  }

  .clients-footer-inner {
    display: block;
    min-height: 0;
    padding: 28px 22px;
  }

  .clients-footer-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 20px;
    font-size: 26px;
  }

  .clients-footer-inner>p {
    padding: 0;
    border: 0;
    font-size: 16px;
    line-height: 1.65;
    text-align: center;
  }

  .footer-container {
    padding: 42px 22px !important;
  }

  .footer-brand {
    background: transparent;
  }

  .footer-logo {
    display: inline-block;
    background-color: #faf5ed !important;
    border-radius: 10px;
    padding: 10px 14px;
  }

  .footer-logo img {
    display: block;
    background-color: #faf5ed !important;
    max-width: 220px;
  }

  .footer-brand>p {
    margin-top: 24px;
    font-size: 14px;
    line-height: 1.7;
  }
}

@media (max-width: 900px) {
  .navbar nav {
    display: block;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    visibility: hidden;
    transition:
      max-height 0.4s ease,
      opacity 0.3s ease,
      visibility 0.3s;
  }

  .navbar nav.is-open {
    max-height: 520px;
    opacity: 1;
    visibility: visible;
  }

  .nav-links li {
    opacity: 0;
    transform: translateY(-8px);
    transition:
      opacity 0.25s ease,
      transform 0.25s ease;
  }

  .navbar nav.is-open .nav-links li {
    opacity: 1;
    transform: none;
  }

  .navbar nav.is-open .nav-links li:nth-child(2) {
    transition-delay: 0.04s;
  }

  .navbar nav.is-open .nav-links li:nth-child(3) {
    transition-delay: 0.08s;
  }

  .navbar nav.is-open .nav-links li:nth-child(4) {
    transition-delay: 0.12s;
  }

  .navbar nav.is-open .nav-links li:nth-child(5) {
    transition-delay: 0.16s;
  }

  .navbar nav.is-open .nav-links li:nth-child(6) {
    transition-delay: 0.2s;
  }

  .navbar nav.is-open .nav-links li:nth-child(7) {
    transition-delay: 0.24s;
  }
}

/* Harmonized section headings + rebuilt legacy section */
.section-label,
.leadership-label,
.scope-label,
.clients-label,
.testimonials-label,
.contact-label {
  justify-content: flex-start;
  text-align: left;
}

.leadership-header,
.testimonials-header,
.contact-header {
  text-align: left;
}

.about-container {
  align-items: start;
}

.about-visual {
  height: auto;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.about-image {
  position: relative;
  height: auto;
  aspect-ratio: 4/3;
  object-fit: cover;
  object-position: center top;
  border-radius: 18px;
}

.about-quote {
  position: relative;
  left: auto;
  bottom: auto;
  width: 100%;
  border-radius: 14px;
  box-shadow: none;
}

.about-content {
  padding-right: 30px;
}

@media (max-width: 900px) {
  .about-container {
    grid-template-columns: 1fr 340px;
    gap: 36px;
  }

  .about-image {
    aspect-ratio: 3/4;
  }
}

@media (max-width: 700px) {
  .about-container {
    display: flex;
    flex-direction: column;
  }

  .about-content {
    padding: 0;
  }

  .about-visual {
    width: 100%;
  }

  .about-image {
    width: min(100%, 320px);
    aspect-ratio: 1/1;
    margin: 0 auto;
    object-fit: cover;
    object-position: center 18%;
  }

  .about-quote {
    padding: 24px;
  }

  .about-values {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
  }

  .about-value {
    display: grid;
    grid-template-columns: 64px 1fr;
    align-items: center;
    text-align: left;
    gap: 16px;
  }

  .about-value-icon {
    margin: 0;
  }
}

/* Final About/Legacy containment fix */
.about-container {
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.75fr);
  gap: 64px;
}

.about-content,
.about-visual {
  min-width: 0;
}

.about-description {
  max-width: 680px;
}

.about-values {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.about-value {
  min-width: 0;
}

.about-visual {
  max-width: 520px;
  justify-self: end;
}

.about-image {
  width: 100%;
  height: 430px;
  aspect-ratio: auto;
  object-fit: cover;
  object-position: center 18%;
}

.about-quote {
  box-sizing: border-box;
}

@media (max-width: 1100px) {
  .about-container {
    grid-template-columns: 1fr 380px;
    gap: 40px;
  }

  .about-visual {
    max-width: 380px;
  }

  .about-image {
    height: 380px;
  }

  .about-values {
    grid-template-columns: 1fr;
  }

  .about-value {
    display: grid;
    grid-template-columns: 64px 1fr;
    align-items: center;
    text-align: left;
    gap: 16px;
    padding: 0px;
  }

  .about-value-icon {
    margin: 0;
  }

  .about-value:not(:last-child)::after {
    display: none;
  }
}

@media (max-width: 760px) {
  .about-container {
    display: flex;
    flex-direction: column;
    gap: 32px;
  }

  .about-visual {
    max-width: 100%;
    width: 100%;
  }

  .about-image {
    width: min(100%, 320px);
    height: 320px;
    margin: auto;
  }
}

/* Explicit heading alignment */
.leadership-header,
.testimonials-header {
  text-align: left !important;
  align-items: flex-start !important;
}

.leadership-label,
.testimonials-label {
  justify-content: flex-start !important;
  text-align: left !important;
}

/* Contact link theme */
.contact-item a {
  color: #f4ede4;
  text-decoration: none;
  border-bottom: 1px solid rgba(189, 135, 48, 0.45);
  transition:
    color 0.2s,
    border-color 0.2s;
}

.contact-item a:hover,
.contact-item a:focus {
  color: #d3a158;
  border-color: currentColor;
}

/* Harmonized split headers */
.contact-header,
.testimonials-header {
  display: grid;
  grid-template-columns: minmax(320px, 0.8fr) minmax(420px, 1.2fr);
  gap: 64px;
  align-items: end;
  max-width: none;
  text-align: left;
}

.contact-header .contact-label,
.testimonials-header .testimonials-label {
  justify-content: flex-start;
}

.contact-header h2,
.testimonials-header h2 {
  text-align: left;
  margin-bottom: 0;
}

.contact-header p,
.testimonials-header p {
  margin: 0;
  text-align: left;
  max-width: 720px;
}

/* Legacy name spacing */
.about-quote-author strong {
  letter-spacing: 2px;
}

@media (max-width: 800px) {

  .contact-header,
  .testimonials-header {
    grid-template-columns: 1fr;
    gap: 18px;
    align-items: start;
  }

  .contact-header p,
  .testimonials-header p {
    max-width: 100%;
  }
}

/* Definitive contact link override */
.contact-information .contact-item a,
.contact-information a[href^="tel:"],
.contact-information a[href^="mailto:"] {
  color: #f4ede4 !important;
  text-decoration: none !important;
  border-bottom: 1px solid rgba(211, 161, 88, 0.5);
}

.contact-information .contact-item a:hover,
.contact-information .contact-item a:focus {
  color: #d3a158 !important;
}

/* Client Feedback: title left, description right */
.testimonials-header {
  display: grid !important;
  grid-template-columns: minmax(420px, 0.9fr) minmax(380px, 1.1fr) !important;
  gap: 72px !important;
  align-items: end !important;
  text-align: left !important;
}

.testimonials-header>div:first-child {
  grid-column: 1;
}

.testimonials-label {
  justify-content: flex-start !important;
}

.testimonials-header h2 {
  grid-column: 1;
  text-align: left !important;
  margin: 0 !important;
}

.testimonials-header p {
  grid-column: 2;
  grid-row: 1 / span 2;
  align-self: end;
  margin: 0 0 10px !important;
  text-align: left !important;
  max-width: 620px !important;
}

@media (max-width: 800px) {
  .testimonials-header {
    grid-template-columns: 1fr !important;
    gap: 18px !important;
  }

  .testimonials-header p {
    grid-column: 1;
    grid-row: auto;
    margin: 0 !important;
  }
}

/* Final split headers with centered desktop separator */
.contact-header,
.testimonials-header {
  position: relative;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) !important;
  gap: clamp(48px, 8vw, 120px) !important;
}

.contact-header::after,
.testimonials-header::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 1px;
  background: rgba(169, 120, 63, 0.55);
  transform: translateX(-50%);
}

.contact-header p,
.testimonials-header p {
  grid-column: 2 !important;
  align-self: center !important;
}

.contact-header h2,
.testimonials-header h2 {
  grid-column: 1 !important;
}

/* Strict responsive containment */
html,
body {
  max-width: 100%;
  overflow-x: clip;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

img {
  max-width: 100%;
}

.about-container,
.leadership-container,
.scope-container,
.clients-container,
.testimonials-container,
.contact-container {
  width: min(1180px, calc(100% - 48px));
}

@media (max-width: 1023px) {

  .contact-header,
  .testimonials-header {
    grid-template-columns: 1fr !important;
    gap: 20px !important;
  }

  .contact-header::after,
  .testimonials-header::after {
    display: none;
  }

  .contact-header p,
  .testimonials-header p,
  .contact-header h2,
  .testimonials-header h2 {
    grid-column: 1 !important;
  }
}

@media (max-width: 767px) {

  .about-container,
  .leadership-container,
  .scope-container,
  .clients-container,
  .testimonials-container,
  .contact-container {
    width: calc(100% - 32px);
  }

  h1,
  h2 {
    overflow-wrap: anywhere;
  }

  .clients-intro,
  .scope-intro,
  .contact-layout,
  .testimonials-layout {
    min-width: 0;
  }
}

@media (max-width: 480px) {

  .about-container,
  .leadership-container,
  .scope-container,
  .clients-container,
  .testimonials-container,
  .contact-container {
    width: calc(100% - 24px);
  }

  .contact-information,
  .contact-form-wrapper,
  .testimonial-featured,
  .testimonial-card {
    padding-left: 20px;
    padding-right: 20px;
  }
}

@media (min-width: 1920px) {

  .about-container,
  .leadership-container,
  .scope-container,
  .clients-container,
  .testimonials-container,
  .contact-container {
    max-width: 1440px;
  }
}

/* Compact split-section headers: Client Feedback + Contact */
.testimonials-header,
.contact-header {
  align-items: center !important;
  padding-top: 0 !important;
  padding-bottom: 0 !important;
  min-height: 0 !important;
}

.testimonials-header>div:first-child,
.contact-header>div:first-child {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: clamp(14px, 1.5vw, 24px);
}

.testimonials-header h2,
.contact-header h2 {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}

.testimonials-label,
.contact-label {
  margin-bottom: 0 !important;
}

.testimonials-header p,
.contact-header p {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
  align-self: center !important;
}

@media (max-width: 1023px) {

  .testimonials-header,
  .contact-header {
    gap: 18px !important;
  }

  .testimonials-header>div:first-child,
  .contact-header>div:first-child {
    gap: 12px;
  }
}

/* Compact Client Feedback + Contact section spacing */
.testimonials-section,
.contact-section,
#testimonials,
#contact {
  /* Spacing handled by container padding */
}

.testimonials-header,
.contact-header {
  margin-top: 0 !important;
  margin-bottom: clamp(32px, 3.5vw, 52px) !important;
  padding: 0 !important;
}

.testimonials-grid,
.testimonials-layout,
.contact-layout,
.contact-content {
  margin-top: 0 !important;
}

@media (max-width: 1023px) {

  .testimonials-section,
  .contact-section,
  #testimonials,
  #contact {
    padding-top: 48px !important;
    padding-bottom: 48px !important;
  }

  .footer,
  #contact {
    padding-bottom: 0px !important;
    padding-top: 0px !important;
  }

  .testimonials-header,
  .contact-header {
    margin-bottom: 32px !important;
  }
}

@media (max-width: 767px) {

  .testimonials-section,
  .contact-section,
  #testimonials,
  #contact {
    padding-top: 40px !important;
    padding-bottom: 40px !important;
  }

  .testimonials-header,
  .contact-header {
    margin-bottom: 24px !important;
  }
}

/* ===== FINAL ARCHITECTURE FIX: TESTIMONIALS + CONTACT ===== */
#testimonials.testimonials,
#contact.contact {
  /* Section padding is handled by container padding */
}

#testimonials .testimonials-container,
#contact .contact-container {
  display: block !important;
}

/* Header is a content-sized 2-column grid, never a tall hero */
#testimonials .testimonials-header,
#contact .contact-header {
  position: relative !important;
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) !important;
  grid-template-rows: auto !important;
  column-gap: clamp(64px, 8vw, 120px) !important;
  row-gap: 0 !important;
  align-items: center !important;
  min-height: 0 !important;
  height: auto !important;
  padding: 0 !important;
  margin: 0 0 clamp(36px, 4vw, 56px) !important;
}

/* Left side: label and title stay together */
#testimonials .testimonials-header>div:first-child,
#contact .contact-header>div:first-child {
  grid-column: 1 !important;
  display: flex !important;
  flex-direction: column !important;
  justify-content: flex-start !important;
  align-items: flex-start !important;
  gap: 20px !important;
  min-height: 0 !important;
  height: auto !important;
  margin: 0 !important;
  padding: 0 !important;
}

#testimonials .testimonials-label,
#contact .contact-label {
  margin: 0 !important;
  padding: 0 !important;
}

#testimonials .testimonials-header h2,
#contact .contact-header h2 {
  margin: 0 !important;
  padding: 0 !important;
  line-height: 1.08 !important;
}

/* Right side description */
#testimonials .testimonials-header>p,
#contact .contact-header>p {
  grid-column: 2 !important;
  grid-row: 1 !important;
  align-self: center !important;
  margin: 0 !important;
  padding: 0 !important;
  max-width: 560px !important;
}

/* Separator only spans actual header content */
#testimonials .testimonials-header::after,
#contact .contact-header::after {
  content: "" !important;
  position: absolute !important;
  top: 0 !important;
  bottom: 0 !important;
  left: 50% !important;
  width: 1px !important;
  height: auto !important;
  transform: translateX(-50%) !important;
  background: rgba(169, 120, 63, 0.55) !important;
}

/* Content starts immediately after controlled header gap */
#testimonials .testimonials-grid,
#testimonials .testimonials-layout,
#contact .contact-layout,
#contact .contact-content {
  margin-top: 0 !important;
  padding-top: 0 !important;
}

/* Tablet/mobile: natural stack, no separator */
@media (max-width: 1023px) {

  #testimonials.testimonials,
  #contact.contact {
    padding-block: 56px !important;
  }

  #testimonials .testimonials-header,
  #contact .contact-header {
    grid-template-columns: 1fr !important;
    gap: 20px !important;
    margin-bottom: 36px !important;
  }

  #testimonials .testimonials-header>p,
  #contact .contact-header>p {
    grid-column: 1 !important;
    grid-row: auto !important;
    max-width: 680px !important;
  }

  #testimonials .testimonials-header::after,
  #contact .contact-header::after {
    display: none !important;
  }
}

@media (max-width: 767px) {

  #testimonials.testimonials,
  #contact.contact {
    padding-block: 44px !important;
  }

  #testimonials .testimonials-header,
  #contact .contact-header {
    margin-bottom: 28px !important;
  }

  #testimonials .testimonials-header>div:first-child,
  #contact .contact-header>div:first-child {
    gap: 14px !important;
  }
}

/* ===== FORM VALIDATION STYLES ===== */
.field-error {
  display: block;
  min-height: 18px;
  margin-top: 5px;
  color: #c0392b;
  font-size: 11.5px;
  font-weight: 500;
}

.form-field input.input-error,
.form-field textarea.input-error {
  border-color: #c0392b;
  background: #fff8f7;
  box-shadow: 0 0 0 3px rgba(192, 57, 43, 0.1);
}

/* ===== STICKY NAVBAR GUARANTEE ===== */
header.navbar {
  position: sticky !important;
  top: 0 !important;
  z-index: 1000 !important;
}

/* Final engineering polish */
html {
  scroll-padding-top: var(--nav-height);
}

.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  height: var(--nav-height);
  box-shadow: 0 1px 0 rgba(44, 32, 20, 0.08);
}

.hero {
  min-height: calc(100vh - var(--nav-height));
}

section {
  scroll-margin-top: var(--nav-height);
}

/* FINAL CONTACT/FOOTER REDESIGN */
.testimonials-container {
  padding-bottom: 48px
}

.testimonial-closing {
  margin-top: 34px
}

.footer {
  background: linear-gradient(135deg, #261207, #3b1d0d 55%, #241106);
  color: #fff;
  border-top: 1px solid rgba(234, 184, 104, .7)
}

.footer-container {
  width: min(1400px, calc(100% - 90px));
  margin: auto;
  padding: 58px 0 46px;
  display: grid;
  grid-template-columns: 1.45fr .75fr 1fr 1.35fr;
  gap: 52px;
  align-items: start
}

.footer-brand p {
  margin-top: 20px;
  max-width: 330px;
  color: rgba(255, 255, 255, .72);
  font-size: 14px;
  line-height: 1.8
}

.footer-column h3 {
  color: var(--gold);
  font-family: 'Libre Baskerville', serif;
  font-size: 18px;
  font-weight: 400;
  margin-bottom: 22px
}

.footer-column ul {
  list-style: none
}

.footer-column li {
  margin-bottom: 12px
}

.footer-column a {
  color: rgba(255, 255, 255, .76);
  text-decoration: none;
  transition: .25s ease
}

.footer-column a:hover {
  color: var(--gold)
}

.footer-contact p {
  margin-bottom: 15px;
  color: rgba(255, 255, 255, .72);
  font-size: 13px;
  line-height: 1.7
}

.footer-contact p:last-child {
  padding-top: 12px;
  border-top: 1px solid rgba(234, 184, 104, .25)
}

.footer-bottom {
  border-top: 1px solid rgba(234, 184, 104, .22)
}

.footer-bottom-inner {
  width: min(1400px, calc(100% - 90px));
  min-height: 72px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: rgba(255, 255, 255, .55);
  font-size: 12px
}

.footer-legal {
  display: flex;
  gap: 14px;
  align-items: center
}

.footer-legal a {
  color: rgba(255, 255, 255, .6);
  text-decoration: none
}

.footer-legal a:hover {
  color: var(--gold)
}

@media(max-width:1200px) {
  .footer-container {
    width: calc(100% - 60px);
    grid-template-columns: 1.4fr .8fr 1fr 1.2fr;
    gap: 30px
  }

  .footer-bottom-inner {
    width: calc(100% - 60px)
  }
}

/* ===== FINAL CONSOLIDATED REDESIGN OVERRIDES ===== */
.navbar {
  position: sticky !important;
  top: 0;
  z-index: 9999;
  box-shadow: 0 5px 24px rgba(50, 24, 11, .08);
}

.testimonials-container {
  padding: 72px 0 64px;
}

.testimonials-header {
  margin-bottom: 38px;
}

.testimonials-label {
  justify-content: center;
}

.testimonials-header h2 {
  font-size: 52px;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.redesigned-testimonial {
  min-height: 350px;
  padding: 34px 32px;
  display: flex;
  flex-direction: column;
  background: linear-gradient(145deg, #fffdf8, #f5ead7);
}

.redesigned-testimonial blockquote {
  flex: 1;
  margin-bottom: 28px;
  font-size: 15px;
  line-height: 1.8;
}

.redesigned-testimonial:hover {
  transform: translateY(-7px);
  box-shadow: 0 18px 40px rgba(63, 34, 14, .12);
}

.footer {
  margin-top: 0;
}

.footer-container {
  padding-top: 58px;
  padding-bottom: 48px;
  align-items: start;
}

.footer-contact p {
  line-height: 1.8;
}

@media(max-width:900px) {
  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .navbar {
    position: sticky !important;
    top: 0;
  }
}


/* =========================================================
   FINAL RESPONSIVE ENGINEERING FIXES
   ========================================================= */
html {
  scroll-padding-top: var(--nav-height);
}

body {
  overflow-x: clip;
}

.navbar {
  position: sticky !important;
  top: 0 !important;
  z-index: 10000 !important;
}

.nav-cta {
  display: none !important;
}

@media (max-width: 900px) {
  :root {
    --mobile-pad: 22px;
    --nav-height: 72px;
  }

  html {
    scroll-padding-top: var(--nav-height);
  }

  /* body.menu-open: removed — JS no longer sets this class */

  /* Header + isolated dropdown menu */
  .navbar {
    height: 72px !important;
    min-height: 72px !important;
    padding: 0 var(--mobile-pad) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    background: #faf5ed !important;
    overflow: visible !important;
    box-shadow: 0 4px 18px rgba(50, 24, 11, .10);
  }

  .logo {
    width: 155px !important;
    position: relative;
    z-index: 2;
  }

  .menu-toggle {
    display: flex !important;
    width: 44px;
    height: 44px;
    align-items: center;
    justify-content: center;
    margin-left: auto;
    border: 0;
    background: transparent;
    color: var(--brown);
    font-size: 25px;
    cursor: pointer;
    position: relative;
    z-index: 2;
  }

  #site-nav {
    display: none !important;
    position: absolute !important;
    top: 72px !important;
    left: 0 !important;
    right: 0 !important;
    width: 100% !important;
    max-height: calc(100vh - 72px);
    overflow-y: auto;
    background: #faf5ed !important;
    border-top: 1px solid rgba(189, 135, 48, .25);
    box-shadow: 0 16px 30px rgba(40, 19, 8, .16);
    z-index: 9999 !important;
  }

  #site-nav.mobile-open {
    display: block !important;
  }

  .nav-links {
    display: flex !important;
    flex-direction: column !important;
    align-items: stretch !important;
    gap: 0 !important;
    padding: 10px var(--mobile-pad) 18px !important;
  }

  .nav-links li {
    width: 100%;
  }

  .nav-links a {
    display: block;
    width: 100%;
    padding: 15px 4px;
    font-size: 14px;
    border-bottom: 1px solid rgba(50, 24, 11, .10);
  }

  .nav-links a::after {
    bottom: 8px;
  }

  .nav-cta {
    display: none !important;
  }

  /* Consistent mobile section rhythm */
  .features,
  .about-container,
  .leadership-container,
  .scope-container,
  .clients-container,
  .testimonials-container,
  .footer-container {
    width: 100% !important;
    max-width: none !important;
    padding-left: var(--mobile-pad) !important;
    padding-right: var(--mobile-pad) !important;
  }

  .about-container,
  .leadership-container,
  .scope-container,
  .clients-container,
  .testimonials-container {
    padding-top: 48px !important;
    padding-bottom: 48px !important;
  }

  /* Mobile headings: centered with ornament below */
  .section-label,
  .clients-label,
  .testimonials-label {
    justify-content: center !important;
    margin-bottom: 14px !important;
  }

  .section-label .section-line {
    display: none !important;
  }

  .about-title,
  .leadership-heading h2,
  .scope-heading h2,
  .clients-heading h2,
  .testimonials-header h2 {
    text-align: center !important;
    font-size: clamp(30px, 9vw, 40px) !important;
    line-height: 1.18 !important;
    letter-spacing: -1px !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }

  .about-title::after,
  .leadership-heading h2::after,
  .scope-heading h2::after,
  .clients-heading h2::after,
  .testimonials-header h2::after {
    content: "";
    display: block;
    width: 72px;
    height: 1px;
    margin: 16px auto 0;
    background: var(--gold);
  }

  .leadership-title-line,
  .scope-title-line,
  .clients-title-decoration {
    display: none !important;
  }

  /* About */
  .about-container {
    display: flex !important;
    flex-direction: column !important;
    min-height: 0 !important;
  }

  .about-content {
    padding-right: 0 !important;
    width: 100%;
  }

  .about-intro,
  .about-description {
    font-size: 15px !important;
    line-height: 1.75 !important;
  }

  .about-values {
    grid-template-columns: 1fr !important;
    gap: 18px;
  }

  .about-value {
    min-height: 0 !important;
    padding: 16px 0 !important;
  }

  .about-value::after {
    display: none !important;
  }

  .about-visual {
    width: 100%;
    height: 460px !important;
    margin-top: 30px;
  }

  .about-quote {
    left: 14px !important;
    width: calc(100% - 28px) !important;
    min-height: 0 !important;
  }

  /* Dedicated team: clean stacked card */
  .leadership-team {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    gap: 0 !important;
    min-height: 0 !important;
    margin-top: 24px !important;
    padding: 30px 24px !important;
    text-align: center;
  }

  .team-icon-wrapper {
    width: auto !important;
    height: auto !important;
    border: 0 !important;
    margin-bottom: 20px;
  }

  .team-icon {
    width: 76px !important;
    height: 76px !important;
  }

  .team-description {
    padding: 0 !important;
  }

  .team-description h3 {
    font-size: 27px !important;
    line-height: 1.25 !important;
  }

  .team-description p,
  .team-location p {
    font-size: 15px !important;
    line-height: 1.75 !important;
  }

  .team-location {
    width: 100% !important;
    min-height: 0 !important;
    display: flex !important;
    flex-direction: column !important;
    padding: 22px 0 0 !important;
    margin-top: 22px;
    gap: 14px !important;
    border-left: 0 !important;
    border-top: 1px solid rgba(189, 135, 48, .35);
  }

  .team-location i {
    display: block !important;
    font-size: 28px !important;
  }

  .team-office-art {
    margin-top: 20px;
    font-size: 48px !important;
  }

  /* Grids */
  .leadership-grid,
  .scope-intro,
  .scope-services,
  .clients-intro,
  .clients-grid,
  .testimonials-grid {
    grid-template-columns: 1fr !important;
  }

  .clients-heading {
    padding-right: 0 !important;
    border-right: 0 !important;
  }

  .clients-trust,
  .scope-statement {
    padding-left: 0 !important;
    border-left: 0 !important;
  }

  .redesigned-testimonial {
    min-height: 0 !important;
  }

  /* Footer */
  .footer-container {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 34px !important;
    padding-top: 44px !important;
    padding-bottom: 38px !important;
  }

  .footer-brand,
  .footer-links,
  .footer-services,
  .footer-contact {
    width: 100% !important;
    padding: 0 !important;
    border: 0 !important;
  }

  .footer-contact i {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
  }

  .footer-bottom,
  .footer-bottom-inner {
    min-height: 0 !important;
    height: auto !important;
    padding: 20px var(--mobile-pad) !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 16px !important;
    text-align: center !important;
  }

  .footer-bottom p {
    max-width: none !important;
    text-align: center !important;
  }

  .footer-bottom-decoration {
    order: 2;
    width: 100%;
    justify-content: center;
  }

  .footer-legal {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
  }
}

@media (max-width: 480px) {
  :root {
    --mobile-pad: 18px;
  }

  .hero h1 {
    font-size: 40px !important;
    line-height: 1.12 !important;
  }

  .about-title,
  .leadership-heading h2,
  .scope-heading h2,
  .clients-heading h2,
  .testimonials-header h2 {
    font-size: 32px !important;
  }

  .team-description h3 {
    font-size: 25px !important;
  }
}

/* ===================================================================
   POLISHED REVAMP — Animations, Breakpoints & Responsive Audit
   =================================================================== */

/* ── 1. Mobile Nav: Animated fixed dropdown (truly sticky below header) ─ */
@media (max-width: 900px) {
  .navbar {
    position: sticky !important;
    top: 0 !important;
    z-index: 10000 !important;
    height: 72px !important;
    min-height: 72px !important;
    padding: 0 22px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    flex-wrap: nowrap !important;
    overflow: visible !important;
    background: #faf5ed !important;
    box-shadow: 0 2px 18px rgba(50, 24, 11, .10) !important;
  }

  /* Dropdown: fixed to viewport so it never moves with page scroll */
  #site-nav {
    display: block !important;
    position: fixed !important;
    top: 72px !important;
    left: 0 !important;
    right: 0 !important;
    z-index: 9999 !important;
    background: #faf5ed !important;
    border-top: 1px solid rgba(189, 135, 48, .22) !important;
    box-shadow: 0 14px 32px rgba(40, 19, 8, .14) !important;
    /* Hidden state — animate via max-height + opacity */
    max-height: 0 !important;
    overflow: hidden !important;
    opacity: 0 !important;
    transform: translateY(-8px) !important;
    pointer-events: none !important;
    transition:
      max-height 0.35s cubic-bezier(.4, 0, .2, 1),
      opacity 0.25s ease,
      transform 0.25s ease !important;
  }

  #site-nav.mobile-open {
    max-height: 70vh !important;
    overflow-y: auto !important;
    opacity: 1 !important;
    transform: translateY(0) !important;
    pointer-events: auto !important;
  }

  /* Hamburger icon spin on open */
  .menu-toggle i {
    display: inline-block;
    transition: transform 0.25s ease;
  }

  .menu-toggle.is-open i {
    transform: rotate(90deg);
  }

  /* Nav links stacked */
  .nav-links {
    display: flex !important;
    flex-direction: column !important;
    align-items: stretch !important;
    gap: 0 !important;
    padding: 10px 22px 18px !important;
  }

  .nav-links li {
    width: 100%;
  }

  .nav-links a {
    display: block;
    width: 100%;
    padding: 15px 4px;
    font-size: 14px;
    border-bottom: 1px solid rgba(50, 24, 11, .10);
  }

  .nav-links a::after {
    bottom: 8px;
  }
}

/* ── 2. Features: Tablet 3-col → Mobile 2-col with separators ── */
@media (max-width: 900px) and (min-width: 601px) {
  .features {
    padding: 54px 30px 30px !important;
  }

  .feature-list {
    grid-template-columns: repeat(3, 1fr) !important;
  }

  .feature {
    padding: 28px 20px !important;
    border-right: 1px solid rgba(117, 77, 36, .32) !important;
    border-bottom: 1px solid rgba(117, 77, 36, .2) !important;
  }

  /* Remove right border on every 3rd */
  .feature:nth-child(3n) {
    border-right: none !important;
  }

  /* Items 4 & 5 are in the last row — remove bottom border */
  .feature:nth-child(4),
  .feature:nth-child(5) {
    border-bottom: none !important;
  }
}

@media (max-width: 600px) {
  .features {
    padding: 44px 16px 24px !important;
  }

  .feature-list {
    grid-template-columns: repeat(2, 1fr) !important;
  }

  .feature {
    padding: 24px 16px !important;
    border-right: 1px solid rgba(117, 77, 36, .28) !important;
    border-bottom: 1px solid rgba(117, 77, 36, .2) !important;
    min-height: 0 !important;
  }

  /* Remove right border on every 2nd (even items) */
  .feature:nth-child(2n) {
    border-right: none !important;
  }

  /* Last item (5th in a 2-col = 3rd row) has no bottom border */
  .feature:last-child {
    border-bottom: none !important;
  }
}

/* ── 3. About: Portrait face visibility on mobile ── */
@media (max-width: 900px) {
  .about-image img {
    object-position: 50% 12% !important;
  }

  .about-visual {
    height: 420px !important;
  }
}

@media (max-width: 600px) {
  .about-image img {
    object-position: 50% 8% !important;
  }

  .about-image {
    height: 360px !important;
  }

  .about-content {
    padding-bottom: 0 !important;
  }
}

/* ── 4. Scope: Consistent separators at all breakpoints ── */
@media (max-width: 900px) {
  .scope-services {
    grid-template-columns: 1fr !important;
  }

  /* Every item: bottom border only, no right border */
  .scope-service,
  .scope-service:nth-child(-n+3),
  .scope-service:not(:nth-child(3n)) {
    border-right: none !important;
    border-bottom: 1px solid rgba(189, 135, 48, .3) !important;
    padding: 26px 20px !important;
  }

  .scope-service:last-child {
    border-bottom: none !important;
  }

  /* Scope footer stacked */
  .scope-footer-inner {
    grid-template-columns: 1fr !important;
    padding: 28px 22px !important;
  }

  .scope-footer-message {
    border-right: none !important;
    border-bottom: 1px solid rgba(189, 135, 48, .35) !important;
    padding-right: 0 !important;
    padding-bottom: 22px !important;
    margin-bottom: 0 !important;
    grid-template-columns: 72px 1fr !important;
    gap: 16px !important;
  }

  .scope-footer-icon {
    width: 66px !important;
    height: 66px !important;
    font-size: 28px !important;
  }

  .scope-values {
    grid-template-columns: repeat(2, 1fr) !important;
  }

  .scope-value {
    min-height: 88px !important;
  }
}

/* ── 5. Client References: Tablet 2-col, Mobile 1-col ── */
@media (max-width: 900px) and (min-width: 601px) {
  .clients-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }

  .client-item {
    grid-template-columns: 48px 1fr !important;
  }

  .clients-footer-inner {
    grid-template-columns: 90px 1fr !important;
    padding: 22px 24px !important;
  }

  .clients-footer-decoration {
    display: none !important;
  }
}

@media (max-width: 600px) {
  .clients-grid {
    grid-template-columns: 1fr !important;
  }

  .client-item {
    grid-template-columns: 48px 1fr !important;
  }

  .clients-panel {
    padding: 48px 14px 20px !important;
  }

  .clients-panel-title {
    width: min(320px, 85%) !important;
  }

  .clients-footer-inner {
    grid-template-columns: 1fr !important;
    text-align: center !important;
    padding: 22px 20px !important;
    gap: 16px !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
  }

  .clients-footer-inner>p {
    border-left: none !important;
    padding-left: 0 !important;
    border-top: 1px solid rgba(189, 135, 48, .35) !important;
    padding-top: 16px !important;
  }

  .clients-footer-decoration {
    display: none !important;
  }
}

/* ── 6. Client Feedback (Testimonials): Tablet 2-col, card spacing ── */
@media (max-width: 900px) and (min-width: 601px) {
  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }

  /* Third card spans full width, centered */
  .testimonials-grid .testimonial-card:nth-child(3) {
    grid-column: 1 / -1 !important;
    max-width: 480px !important;
    width: 100% !important;
    margin: 0 auto !important;
  }

  .testimonials-container {
    padding: 52px 0 44px !important;
  }
}

@media (max-width: 900px) {
  .testimonials-grid {
    gap: 20px !important;
  }

  .redesigned-testimonial {
    padding: 26px 22px !important;
    min-height: 0 !important;
  }

  .testimonials-header {
    margin-bottom: 30px !important;
  }

  .testimonials-header h2 {
    font-size: clamp(30px, 8vw, 46px) !important;
  }
}

@media (max-width: 600px) {
  .testimonials-grid {
    grid-template-columns: 1fr !important;
  }

  .testimonials-container {
    padding: 44px 0 36px !important;
  }
}

/* ── 7. Footer Contact: Icon-row layout ── */
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 15px;
}

.footer-contact-item:last-child {
  margin-bottom: 0;
}

.footer-contact-item>i {
  flex-shrink: 0;
  width: 16px;
  margin-top: 3px;
  color: var(--gold);
  font-size: 13px;
  text-align: center;
}

.footer-contact-item>div,
.footer-contact-item>address {
  font-style: normal;
  color: rgba(255, 255, 255, .72);
  font-size: 12px;
  line-height: 1.8;
}

.footer-contact-item>div a {
  display: block;
  color: rgba(255, 255, 255, .72);
  text-decoration: none;
  font-size: 12px;
  transition: color 0.2s ease;
}

.footer-contact-item>div a:hover {
  color: var(--gold);
}

/* ── 8. Contact form: Mobile stacked ── */
@media (max-width: 900px) {
  .contact-layout {
    grid-template-columns: 1fr !important;
  }

  .contact-container {
    padding: 52px 0 48px !important;
  }

  .contact-information,
  .contact-form-wrapper {
    padding: 30px 24px !important;
  }
}

/* ── 9. Leadership: Tablet card proportions ── */
@media (max-width: 900px) and (min-width: 601px) {
  .leader-card-primary {
    grid-template-columns: minmax(230px, 35%) 1fr !important;
  }

  .leader-identity {
    min-height: 280px !important;
  }
}

@media (max-width: 600px) {
  .leader-card-primary {
    grid-template-columns: 1fr !important;
  }

  .leader-identity {
    min-height: 180px !important;
  }

  .leader-details {
    padding: 28px 22px !important;
  }

  .leader-card-secondary {
    padding: 28px 22px !important;
  }
}

/* ── 10. Hero: Tablet and small mobile adjustments ── */
@media (max-width: 900px) and (min-width: 601px) {
  .hero {
    background-position: 65% center;
    min-height: 520px;
  }

  .hero-content {
    padding-left: 40px;
    padding-right: 40px;
  }

  .hero-copy {
    width: min(100%, 480px);
  }

  .hero h1 {
    font-size: clamp(36px, 6vw, 50px);
  }
}

@media (max-width: 600px) {
  .hero {
    min-height: 520px;
    background-position: 62% center;
  }

  .hero-content {
    padding: 60px 20px 80px;
  }

  .hero-copy {
    width: 100%;
  }

  .hero h1 {
    font-size: clamp(34px, 10vw, 44px) !important;
  }

  .hero-description {
    font-size: 14px;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: stretch;
    gap: 14px;
  }

  .button {
    width: 100%;
    justify-content: space-between;
  }
}

/* ── 11. Section containers: consistent tablet padding ── */
@media (max-width: 900px) and (min-width: 601px) {

  .about-container,
  .leadership-container,
  .scope-container,
  .clients-container,
  .testimonials-container,
  .contact-container {
    width: min(100% - 48px, 860px) !important;
  }

  .scope-footer-inner {
    width: calc(100% - 48px) !important;
  }
}

/* ── Smooth scroll offset for sticky nav ── */
html {
  scroll-padding-top: 72px;
}

/* ================================================================
   FINAL POLISH v2 — Theme · Progress Bar · Layout Fixes
   ================================================================ */

/* ── 1. CSS CUSTOM PROPERTIES — light + dark ─────────────────── */
:root,
[data-theme="light"] {
  --bg-page: #fbfaf7;
  --bg-alt: #faf6ee;
  --bg-card: rgba(255, 252, 246, 0.98);
  --bg-nav: #faf5ed;
  --text-primary: #26211e;
  --text-muted: rgba(38, 33, 30, 0.68);
  --heading-col: #25160e;
  --nav-text: #1e140f;
  --gold: #a9783f;
  --gold-border: rgba(189, 135, 48, 0.35);
  --footer-grad: linear-gradient(135deg, #0e0603 0%, #1d0d06 40%, #160a04 100%);
  --theme-trans: 0.35s ease;
}

[data-theme="dark"] {
  --bg-page: #1a1a1a;
  --bg-alt: #202020;
  --bg-card: #282828;
  --bg-nav: #141414;
  --text-primary: #d4d4d4;
  --text-muted: rgba(185, 185, 185, 0.65);
  --heading-col: #ebebeb;
  --nav-text: #d4d4d4;
  --gold: #967840;
  /* muted bronze — used sparingly */
  --gold-border: rgba(150, 120, 64, 0.16);
  --footer-grad: linear-gradient(135deg, #0d0d0d 0%, #181818 50%, #0d0d0d 100%);
}

/* Smooth theme transition on all elements */
*,
*::before,
*::after {
  transition:
    background-color var(--theme-trans, 0.35s ease),
    color var(--theme-trans, 0.35s ease),
    border-color var(--theme-trans, 0.35s ease),
    fill var(--theme-trans, 0.35s ease) !important;
}

/* Restore transform/opacity transitions for interactive elements */
.button,
a,
.theme-toggle,
.client-item,
.testimonial-card,
.leader-card,
.scope-service,
.footer-contact-item,
.contact-submit,
.nav-links a {
  transition:
    background-color var(--theme-trans, 0.35s ease),
    color var(--theme-trans, 0.35s ease),
    border-color var(--theme-trans, 0.35s ease),
    transform 0.25s ease,
    box-shadow 0.25s ease,
    opacity 0.25s ease !important;
}

/* Apply theme variables */
body {
  background: var(--bg-page) !important;
  color: var(--text-primary) !important;
}

.navbar {
  background: var(--bg-nav) !important;
}

.nav-links a {
  color: var(--nav-text) !important;
}

.about {
  background: var(--bg-nav) !important;
}

.leadership,
.scope,
.client-references,
.testimonials,
.contact {
  background: var(--bg-alt) !important;
}

.features {
  background: var(--bg-page) !important;
}

.leader-card-primary,
.leader-card-secondary,
.clients-panel,
.testimonial-card,
.redesigned-testimonial {
  background: var(--bg-card) !important;
}

.about-title,
.about-title span,
.leadership-heading h2,
.scope-heading h2,
.clients-heading h2,
.testimonials-header h2,
.contact-header h2,
.leader-name,
.secondary-leader-name,
.feature h2,
.feature h2.number {
  color: var(--heading-col) !important;
}

.about-intro,
.about-description,
.leader-information p,
.scope-service-content li,
.clients-description,
.testimonials-intro {
  color: var(--text-primary) !important;
}

.scope-services {
  background: var(--bg-card) !important;
}

.form-field input,
.form-field textarea {
  background: var(--bg-card) !important;
  border-color: var(--gold-border) !important;
  color: var(--text-primary) !important;
}

[data-theme="dark"] .hero::before {
  background: linear-gradient(90deg,
      rgba(3, 1, 0, .97) 0%, rgba(3, 1, 0, .93) 26%,
      rgba(3, 1, 0, .65) 42%, rgba(3, 1, 0, .1) 62%,
      rgba(3, 1, 0, 0) 78%) !important;
}

[data-theme="dark"] .scope-footer,
[data-theme="dark"] .leadership-footer-decoration,
[data-theme="dark"] .clients-footer-inner,
[data-theme="dark"] .about-stats {
  filter: brightness(0.7) !important;
}

[data-theme="dark"] .curve {
  background: var(--bg-page) !important;
}

/* ── 2. SCROLL PROGRESS BAR ──────────────────────────────────── */
#nav-progress {
  position: fixed;
  top: 72px;
  left: 0;
  height: 3px;
  width: 0%;
  background: linear-gradient(90deg, var(--gold), #e8a84d);
  z-index: 9997;
  pointer-events: none;
  transition: width 0.1s linear !important;
  border-radius: 0 2px 2px 0;
}

/* ── 3. THEME TOGGLE BUTTON ──────────────────────────────────── */
.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.theme-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: 1px solid var(--gold-border);
  border-radius: 50%;
  background: transparent;
  color: var(--gold);
  font-size: 14px;
  cursor: pointer;
  flex-shrink: 0;
}

.theme-toggle:hover {
  background: var(--gold);
  color: #fff;
}

.theme-toggle i {
  pointer-events: none;
}

@media (min-width: 901px) {
  .nav-actions {
    gap: 14px;
  }
}

/* ── 5. DOUBLE PADDING FIX ──────────────────────────────────── */
/* Sections carry zero vertical padding; all spacing lives in the container */

.leadership,
.scope,
.client-references,
.testimonials,
.contact {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}

/* ── 6. ABOUT: portrait face + quote card ────────────────────── */
.about-image img {
  object-position: 50% 10% !important;
}

@media (max-width: 900px) {
  .about-visual {
    height: 440px !important;
    overflow: visible !important;
  }

  .about-quote {
    position: absolute !important;
    left: 12px !important;
    bottom: 0 !important;
    width: calc(100% - 24px) !important;
    min-height: 0 !important;
  }
}

@media (max-width: 600px) {
  .about-visual {
    height: auto !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 0 !important;
  }

  .about-image {
    position: relative !important;
    height: 320px !important;
    border-radius: 12px !important;
  }

  .about-quote {
    position: relative !important;
    left: auto !important;
    bottom: auto !important;
    width: 100% !important;
    margin-top: 12px !important;
    border-radius: 14px !important;
  }
}

/* ── 7. HERO "OUR EXPERTISE" BUTTON ─────────────────────────── */
.hero-buttons {
  flex-wrap: wrap;
  gap: 20px;
}

.hero-buttons .button {
  width: auto !important;
  flex: 0 0 auto;
}

@media (max-width: 900px) {
  .hero-buttons {
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 14px !important;
  }

  .hero-buttons .button {
    width: auto !important;
    padding: 0 28px !important;
    gap: 28px !important;
  }
}

/* ── 8. CLIENT FEEDBACK PADDING ─────────────────────────────── */
@media (max-width: 900px) {
  .testimonials-container {
    padding: 70px 0 70px !important;
  }

  .testimonials-grid {
    gap: 18px !important;
  }

  .redesigned-testimonial {
    padding: 22px 20px !important;
    min-height: 0 !important;
  }
}

@media (max-width: 600px) {
  .testimonials-container {
    padding: 60px 0 60px !important;
  }

  .redesigned-testimonial {
    padding: 18px 16px !important;
  }

  .testimonials-header h2 {
    text-align: center !important;
  }

  .testimonials-label {
    justify-content: center !important;
  }
}

/* Client feedback header aligned center (matching Client References) */
@media (max-width: 900px) {
  #testimonials .testimonials-header {
    display: block !important;
    text-align: center !important;
    margin-bottom: 28px !important;
  }

  #testimonials .testimonials-header::after {
    display: none !important;
  }

  #testimonials .testimonials-header>p {
    grid-column: unset !important;
    margin-top: 12px !important;
    max-width: 100% !important;
  }

  .testimonials-label {
    justify-content: center !important;
  }
}

/* ── 9. FOOTER: darker background + smooth hover ─────────────── */
.footer {
  background: var(--theme-trans) !important;
}

.footer-contact-item {
  cursor: default;
  border-radius: 6px;
  padding: 4px 6px;
  margin-left: -6px;
  margin-right: -6px;
  margin-bottom: 10px !important;
}

.footer-contact-item>i {
  color: var(--gold);
  transition: transform 0.25s ease, color 0.25s ease !important;
}

.footer-contact-item:hover>i {
  transform: scale(1.25) !important;
  color: #e8a84d !important;
}

.footer-contact-item>div a,
.footer-contact-item>address {
  transition: color 0.22s ease !important;
}

.footer-contact-item:hover>div a,
.footer-contact-item:hover>address {
  color: rgba(255, 255, 255, 0.92) !important;
}

.footer-column a {
  transition: color 0.22s ease, padding-left 0.22s ease !important;
}

/* ── 10. FONT SIZES: distinct scales per breakpoint ─────────── */
/* Desktop (>1200px) — existing large sizes are fine */

/* Tablet 601–900px */
@media (max-width: 900px) and (min-width: 601px) {
  .about-title {
    font-size: 36px !important;
    letter-spacing: -1px !important;
  }

  .leadership-heading h2 {
    font-size: 36px !important;
  }

  .scope-heading h2 {
    font-size: 40px !important;
  }

  .clients-heading h2 {
    font-size: 38px !important;
  }

  .testimonials-header h2 {
    font-size: 34px !important;
  }

  .contact-header h2 {
    font-size: 38px !important;
  }

  .hero h1 {
    font-size: clamp(30px, 5.5vw, 44px) !important;
    letter-spacing: -1.5px !important;
  }

  .hero-description {
    font-size: 14px !important;
    line-height: 1.9 !important;
  }

  .hero-tagline {
    font-size: 15px !important;
  }

  .feature h2 {
    font-size: 19px !important;
  }

  .feature h2.number {
    font-size: 26px !important;
  }

  .feature p {
    font-size: 13px !important;
  }
}

/* Mobile ≤600px */
@media (max-width: 600px) {
  .about-title {
    font-size: 28px !important;
    letter-spacing: -0.8px !important;
  }

  .leadership-heading h2 {
    font-size: 28px !important;
  }

  .scope-heading h2 {
    font-size: 32px !important;
  }

  .clients-heading h2 {
    font-size: 28px !important;
  }

  .testimonials-header h2 {
    font-size: 26px !important;
  }

  .contact-header h2 {
    font-size: 28px !important;
  }

  .hero h1 {
    font-size: clamp(26px, 8.5vw, 36px) !important;
    letter-spacing: -1px !important;
  }

  .hero-description {
    font-size: 13px !important;
    line-height: 1.85 !important;
  }

  .hero-tagline {
    font-size: 13px !important;
  }

  .feature h2 {
    font-size: 17px !important;
  }

  .feature h2.number {
    font-size: 22px !important;
  }

  .feature p {
    font-size: 12px !important;
  }

  .scope-service-content h3 {
    font-size: 17px !important;
  }

  .leader-name {
    font-size: 22px !important;
  }

  .secondary-leader-name {
    font-size: 20px !important;
  }

  .clients-heading h2 {
    font-size: 26px !important;
  }
}

/* ── 11. NAV LINKS on desktop: reorder so actions group right ── */
@media (min-width: 901px) {
  .navbar {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    flex-wrap: nowrap !important;
  }

  .navbar .logo {
    flex-shrink: 0;
  }

  #site-nav {
    display: block !important;
    position: static !important;
    max-height: none !important;
    overflow: visible !important;
    opacity: 1 !important;
    transform: none !important;
    pointer-events: auto !important;
    background: transparent !important;
    box-shadow: none !important;
    border: none !important;
    visibility: visible !important;
    transition: none !important;
  }

  .nav-links {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    gap: 32px !important;
    padding: 0 !important;
  }

  .nav-links li {
    width: auto !important;
  }

  .nav-links a {
    display: inline !important;
    width: auto !important;
    padding: 0 !important;
    border: none !important;
    font-size: 14px !important;
  }

  .nav-actions {
    display: flex !important;
    align-items: center !important;
  }
}

/* ================================================================
   FINAL POLISH v3 — Animations · UX · Accessibility
   ================================================================ */



/* ── D. NAV LINKS HOVER: smooth underline animation ────────────── */
.nav-links a {
  transition: color 0.22s ease !important;
}

.nav-links a::after {
  transition: width 0.3s cubic-bezier(.4, 0, .2, 1) !important;
}

/* ── E. PROGRESS BAR: darker & more visible ────────────────────── */
#nav-progress {
  background: linear-gradient(90deg, #6b4818, #a97030, #6b4818) !important;
  height: 3px !important;
  box-shadow: 0 0 6px rgba(107, 72, 24, 0.6) !important;
}

/* ── F. SCROLL-TO-TOP BUTTON ───────────────────────────────────── */
#scroll-top-btn {
  position: fixed;
  bottom: 32px;
  right: 28px;
  z-index: 9990;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: none;
  background: var(--gold, #a9783f);
  color: #fff;
  font-size: 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(40, 18, 4, .45), 0 0 0 3px rgba(169, 120, 63, .25);
  opacity: 0;
  transform: translateY(20px);
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease, background 0.25s ease, box-shadow 0.25s ease !important;
  animation: none;
}

#scroll-top-btn.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
  animation: scrollBtnBounce 2.2s cubic-bezier(.36, .07, .19, .97) 1.5s infinite !important;
}

#scroll-top-btn:hover {
  background: var(--gold, #a9783f) !important;
  color: #fff !important;
  animation: none !important;
  transform: translateY(-4px) !important;
  box-shadow: 0 8px 28px rgba(107, 72, 24, .4) !important;
}

@keyframes scrollBtnBounce {

  0%,
  100% {
    transform: translateY(0);
  }

  40% {
    transform: translateY(-8px);
  }

  60% {
    transform: translateY(-4px);
  }
}

/* ── G. DARK MODE: NAVBAR LOGO — handled in FINAL POLISH v4 (filter: none) ── */

/* ── H. CLIENT REFERENCES: font size reduction ─────────────────── */
.client-content h4 {
  font-size: 14px !important;
  line-height: 1.4 !important;
}

.client-content p {
  font-size: 11px !important;
}

.client-number {
  font-size: 13px !important;
  width: 42px !important;
  height: 42px !important;
}

@media (max-width: 900px) {
  .client-content h4 {
    font-size: 13px !important;
  }

  .client-content p {
    font-size: 10px !important;
  }
}

/* ── I. "OUR VALUED CLIENTS" — single line, no wrap ───────────── */
.clients-panel-title {
  white-space: nowrap !important;
  width: auto !important;
  min-width: 280px !important;
  max-width: 90% !important;
  padding: 0 28px !important;
}

.clients-panel-title h3 {
  white-space: nowrap !important;
  font-size: 15px !important;
  letter-spacing: 0.8px !important;
}

/* ── J. EP MONOGRAM + "MANAGING ADVOCATE" TEXT VISIBILITY ──────── */
.leader-monogram span {
  color: #f0d48a !important;
  text-shadow: 0 0 12px rgba(240, 212, 138, .5) !important;
}

.leader-identity h3 {
  color: #f0d48a !important;
  letter-spacing: 1.5px !important;
  font-size: 11px !important;
  text-transform: uppercase;
  text-shadow: 0 1px 4px rgba(0, 0, 0, .6) !important;
}

.leader-monogram-shield {
  outline-color: #f0d48a !important;
}

/* ── K. "OUR EXPERTISE" BUTTON: hover text + arrow animation ───── */
.button {
  position: relative;
  overflow: hidden;
}

.button i.fa-arrow-down {
  transition: transform 0.3s cubic-bezier(.4, 0, .2, 1) !important;
}

.button:hover i.fa-arrow-down {
  animation: arrowBounce 0.7s ease infinite !important;
}

@keyframes arrowBounce {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(5px);
  }
}

/* Ensure text is readable on hover */
.button:hover {
  background: var(--gold, #a9783f) !important;
  color: #1e0e05 !important;
  border-color: var(--gold, #a9783f) !important;
}

.button:hover i {
  color: #1e0e05 !important;
}

/* ── L. FOOTER HOVER: smooth phone/email transitions ───────────── */
.footer-contact-item>div a,
.footer-contact-item>address {
  transition: color 0.25s cubic-bezier(.4, 0, .2, 1), letter-spacing 0.25s ease !important;
}

.footer-contact-item:hover>div a {
  color: var(--gold, #a9783f) !important;
  letter-spacing: 0.3px;
}

/* ── M. TESTIMONIALS HEADER ALIGNMENT (match client references) ── */
.testimonials-header {
  text-align: left !important;
  margin-left: 0 !important;
  max-width: 100% !important;
}

.testimonials-label {
  justify-content: center !important;
}

.testimonials-header h2 {
  text-align: center !important;
}

.testimonials-intro {
  margin-left: 0 !important;
  text-align: center !important;
}

@media (max-width: 1023px) {
  #testimonials .testimonials-header {
    display: block !important;
    grid-template-columns: unset !important;
    text-align: left !important;
  }

  #testimonials .testimonials-header::after {
    display: none !important;
  }

  #testimonials .testimonials-header>p {
    grid-column: unset !important;
    max-width: 100% !important;
  }
}

/* ── N. FOOTER: anchor for CONTACT nav scroll ───────────────────── */
footer#contact {
  scroll-margin-top: 72px;
}

/* ================================================================
   FINAL POLISH v4 — Layout, Dark Mode, Interactions
   ================================================================ */

/* ── 1. PROGRESS BAR: absolute inside navbar → always at its bottom border ── */
.navbar {
  position: sticky !important;
  overflow: visible !important;
}

#nav-progress {
  position: absolute !important;
  bottom: 0 !important;
  top: auto !important;
  left: 0 !important;
  right: 0 !important;
  height: 3px !important;
  z-index: 5 !important;
  pointer-events: none !important;
  background: linear-gradient(90deg, #6b4818, #a97030, #6b4818) !important;
  box-shadow: 0 0 5px rgba(107, 72, 24, .55) !important;
  transition: width 0.1s linear !important;
}

/* ── 2. THEME TOGGLE ──────────────────────────────────────────── */

/* ── 4. ABOUT: tablet full-width stacked layout ──────────────── */
@media (max-width: 900px) {
  .about-container {
    display: flex !important;
    flex-direction: column !important;
    width: 100% !important;
    max-width: 100% !important;
    padding: 40px 20px 36px !important;
    gap: 36px !important;
    /* <--- RESTORES CORRECT VERTICAL RHYTHM */
  }

  .about-content {
    width: 100% !important;
    padding-right: 0 !important;
  }

  .about-visual {
    width: 100% !important;
    height: 400px !important;
    margin-top: 0 !important;
    position: relative !important;
    overflow: hidden !important;
    border-top-left-radius: 100px !important;
    border-top-right-radius: 10px !important;
    border-bottom-right-radius: 10px !important;
    border-bottom-left-radius: 10px !important;
  }

  .about-image {
    position: absolute !important;
    inset: 0 !important;
    overflow: hidden !important;
    border-radius: inherit !important;
  }

  .about-image img {
    object-position: 50% 12% !important;
  }

  .about-quote {
    position: absolute !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    width: 100% !important;
    min-height: 0 !important;
    border-radius: 0 0 10px 10px !important;
  }
}

@media (max-width: 600px) {
  .about-container {
    padding: 32px 18px 28px !important;
  }

  .about-visual {
    height: 340px !important;
  }

  .about-image img {
    object-position: 50% 8% !important;
  }
}

/* ── 5. DARK MODE: LOGO — natural render (same as footer) ───── */
[data-theme="dark"] .navbar .logo img {
  filter: none !important;
  opacity: 1 !important;
}

/* ── 6. DARK MODE: comprehensive text & bg fixes ─────────────── */
/* About */
[data-theme="dark"] .about-intro,
[data-theme="dark"] .about-description {
  color: var(--text-muted) !important;
}

[data-theme="dark"] .about-value h3 {
  color: var(--text-primary) !important;
}

[data-theme="dark"] .about-value-icon {
  background: rgba(140, 110, 60, 0.08) !important;
}

[data-theme="dark"] .about-small-line {
  background: linear-gradient(90deg, var(--gold), transparent) !important;
}

[data-theme="dark"] .section-label span {
  color: var(--gold) !important;
}

/* Leadership */
[data-theme="dark"] .leadership-heading p {
  color: var(--text-muted) !important;
}

[data-theme="dark"] .leader-card-primary .leader-details {
  background: var(--bg-card) !important;
}

[data-theme="dark"] .leader-card-secondary {
  background: var(--bg-card) !important;
}

[data-theme="dark"] .leader-name {
  color: var(--heading-col) !important;
}

[data-theme="dark"] .leader-information strong {
  color: var(--text-primary) !important;
}

[data-theme="dark"] .leader-information p {
  color: var(--text-muted) !important;
}

[data-theme="dark"] .secondary-leader-name {
  color: var(--heading-col) !important;
}

[data-theme="dark"] .secondary-role {
  color: var(--gold) !important;
}

[data-theme="dark"] .secondary-qualification p {
  color: var(--text-primary) !important;
}

[data-theme="dark"] .secondary-qualification strong {
  color: var(--text-muted) !important;
}

[data-theme="dark"] .leadership-heading p {
  color: var(--text-muted) !important;
}

[data-theme="dark"] .leadership-team {
  background: var(--bg-card) !important;
  border-color: var(--gold-border) !important;
}

[data-theme="dark"] .team-description h3 {
  color: var(--heading-col) !important;
}

[data-theme="dark"] .team-description p,
[data-theme="dark"] .team-location p {
  color: var(--text-muted) !important;
}

/* Scope */
[data-theme="dark"] .scope-service-content h3 {
  color: var(--heading-col) !important;
}

[data-theme="dark"] .scope-service-content li {
  color: var(--text-muted) !important;
}

[data-theme="dark"] .scope-heading>p {
  color: var(--text-muted) !important;
}

[data-theme="dark"] .scope-statement>p {
  color: var(--heading-col) !important;
}

/* Clients */
[data-theme="dark"] .clients-description {
  color: var(--text-muted) !important;
}

[data-theme="dark"] .clients-panel {
  background: var(--bg-card) !important;
  border-color: var(--gold-border) !important;
}

[data-theme="dark"] .client-content h4 {
  color: var(--heading-col) !important;
}

[data-theme="dark"] .client-content p {
  color: var(--text-muted) !important;
}

[data-theme="dark"] .client-item {
  border-bottom-color: var(--gold-border) !important;
}

[data-theme="dark"] .client-number {
  border-color: var(--gold-border) !important;
  color: var(--gold) !important;
}

[data-theme="dark"] .clients-trust blockquote {
  color: var(--text-primary) !important;
}

/* Testimonials */
[data-theme="dark"] .redesigned-testimonial blockquote {
  color: var(--text-primary) !important;
}

[data-theme="dark"] .testimonial-card-footer h3 {
  color: var(--heading-col) !important;
}

[data-theme="dark"] .testimonial-card-footer p {
  color: var(--text-muted) !important;
}

[data-theme="dark"] .testimonials-intro {
  color: var(--text-muted) !important;
}

/* Contact form */
[data-theme="dark"] .contact-form-heading h3 {
  color: var(--heading-col) !important;
}

[data-theme="dark"] .contact-form-heading p {
  color: var(--text-muted) !important;
}

[data-theme="dark"] .form-field label {
  color: var(--text-primary) !important;
}

/* Features */
[data-theme="dark"] .feature h2.number {
  color: var(--heading-col) !important;
}

[data-theme="dark"] .feature h2,
[data-theme="dark"] .feature p {
  color: var(--text-primary) !important;
}

[data-theme="dark"] .feature {
  border-right-color: var(--gold-border) !important;
  border-bottom-color: var(--gold-border) !important;
}

[data-theme="dark"] .icon {
  background: var(--bg-alt) !important;
  color: var(--gold) !important;
}

/* Scope services card */
[data-theme="dark"] .scope-services {
  border-color: var(--gold-border) !important;
}

[data-theme="dark"] .scope-service {
  border-color: var(--gold-border) !important;
}

/* ── 7. FOOTER HOVER: only the individually hovered link ──────── */
/* Remove the old "hover all links at once" rule */
.footer-contact-item:hover>div a {
  color: inherit !important;
  padding-left: 0 !important;
  letter-spacing: normal !important;
}

/* Each link individually */
.footer-contact-item>div a {
  display: block !important;
  padding-left: 0;
  transition: color 0.22s ease, padding-left 0.22s ease !important;
}

.footer-contact-item>div a:hover {
  color: var(--gold, #a9783f) !important;
  padding-left: 5px !important;
}

/* Icon: only animate on container hover (fine — it's one icon per item) */
.footer-contact-item:hover>i {
  transform: scale(1.18) !important;
  color: #c4924e !important;
}

/* Address hover */
.footer-contact-item>address {
  transition: color 0.22s ease !important;
}

.footer-contact-item:hover>address {
  color: rgba(255, 255, 255, 0.9) !important;
}


/* ================================================================
   FINAL POLISH v5 — Menu, Dark Mode, Animations, Mobile Layout
   ================================================================ */

/* ── 1. OVERLAY: visibility+opacity (no display flicker) ──────── */
#menu-overlay {
  display: block !important;
  /* always in DOM, hidden via visibility */
  position: fixed !important;
  inset: 0 !important;
  z-index: 9997 !important;
  background: rgba(8, 3, 1, 0.52) !important;
  opacity: 0 !important;
  visibility: hidden !important;
  pointer-events: none !important;
  transition: opacity 0.28s ease, visibility 0s 0.28s !important;
}

#menu-overlay.active {
  opacity: 1 !important;
  visibility: visible !important;
  pointer-events: auto !important;
  transition: opacity 0.28s ease, visibility 0s 0s !important;
}

/* ── 2. DARK MODE: NAVBAR stays cream/light ───────────────────── */
[data-theme="dark"] .navbar {
  background: #faf5ed !important;
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.12), 0 2px 12px rgba(0, 0, 0, 0.08) !important;
}

[data-theme="dark"] .nav-links a {
  color: #1e140f !important;
}

[data-theme="dark"] .nav-links a::after {
  background: #a9783f !important;
}

[data-theme="dark"] .menu-toggle,
[data-theme="dark"] .theme-toggle {
  color: #3b2117 !important;
  border-color: rgba(169, 135, 48, 0.35) !important;
}

/* Mobile dropdown also keeps light background */
[data-theme="dark"] #site-nav {
  background: #faf5ed !important;
  border-top-color: rgba(169, 135, 48, 0.25) !important;
}

[data-theme="dark"] .nav-links a {
  border-bottom-color: rgba(50, 24, 11, 0.10) !important;
}

/* ── 3. DARK MODE: Client item hover — no goldish flash ──────── */
[data-theme="dark"] .client-item:hover {
  background: rgba(255, 255, 255, 0.04) !important;
  transform: translateY(-3px) !important;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.28) !important;
}

[data-theme="dark"] .client-item:hover .client-content h4 {
  color: var(--heading-col) !important;
  transform: none !important;
}

[data-theme="dark"] .client-item:hover .client-number {
  background: rgba(150, 120, 64, 0.15) !important;
  border-color: rgba(150, 120, 64, 0.35) !important;
  color: var(--gold) !important;
  transform: none !important;
}

[data-theme="dark"] .client-item::after {
  background: rgba(150, 120, 64, 0.4) !important;
}

/* ── 4. LAW SYMBOL (scale icon): smooth transform animation ───── */
/* Restore transform transition that was overridden by global * rule */
.clients-trust-icon,
.clients-footer-icon,
.scope-footer-icon,
.testimonial-author-icon,
.contact-detail-icon,
.about-value-icon,
.team-icon {
  transition:
    background-color var(--theme-trans, 0.35s ease),
    color var(--theme-trans, 0.35s ease),
    border-color var(--theme-trans, 0.35s ease),
    transform 0.38s cubic-bezier(.4, 0, .2, 1),
    filter 0.38s ease !important;
}

/* ── 5. ABOUT SECTION MOBILE: true stacked, image shows face ──── */
@media (max-width: 900px) {
  .about-container {
    display: flex !important;
    flex-direction: column !important;
    width: 100% !important;
    max-width: 100% !important;
    padding: 40px 20px 36px !important;
    gap: 0 !important;
  }

  .about-content {
    width: 100% !important;
    padding-right: 0 !important;
    order: 1;
  }

  .about-visual {
    order: 2;
    width: 100% !important;
    height: auto !important;
    margin-top: 28px !important;
    overflow: visible !important;
    display: flex !important;
    flex-direction: column !important;
    border-radius: 0 !important;
  }

  /* Portrait image: relative in flow, shows face */
  .about-image {
    position: relative !important;
    width: 100% !important;
    height: 300px !important;
    overflow: hidden !important;
    border-radius: 12px 12px 0 0 !important;
    border: 1px solid rgba(189, 135, 48, 0.5) !important;
    border-bottom: none !important;
    flex-shrink: 0 !important;
  }

  .about-image img {
    object-fit: cover !important;
    object-position: 50% 22% !important;
    /* show face, not just forehead */
  }

  /* Quote card: flows directly below image, no absolute overlap */
  .about-quote {
    position: relative !important;
    left: auto !important;
    bottom: auto !important;
    width: 100% !important;
    min-height: 0 !important;
    border-radius: 0 0 12px 12px !important;
    border-top: none !important;
  }
}

@media (max-width: 600px) {
  .about-container {
    padding: 32px 18px 28px !important;
  }

  .about-image {
    height: 260px !important;
  }
}

/* ── 6. TOUCH / FOCUS EFFECTS (small screens) ────────────────── */
/* Mirror hover effects as :active for mobile tap feedback */
@media (max-width: 900px) {
  .client-item:active {
    background: linear-gradient(135deg, rgba(255, 250, 240, .9), rgba(242, 225, 195, .4)) !important;
    transform: translateY(-3px) !important;
    box-shadow: 0 8px 22px rgba(63, 34, 14, .1) !important;
  }

  .client-item:active .client-number {
    border-color: var(--gold) !important;
    background: var(--bg-page, #fbfaf7) !important;
    color: var(--gold) !important;
  }

  .testimonial-card:active,
  .redesigned-testimonial:active {
    transform: translateY(-4px) !important;
    box-shadow: 0 12px 28px rgba(63, 34, 14, .12) !important;
    border-color: var(--gold) !important;
  }

  .scope-service:active {
    transform: translateY(-3px) !important;
    box-shadow: 0 10px 24px rgba(50, 30, 20, .1) !important;
  }

  .leader-card:active {
    transform: translateY(-3px) !important;
    box-shadow: 0 12px 30px rgba(50, 30, 20, .1) !important;
  }

  .button:active {
    background: var(--gold, #a9783f) !important;
    color: #1e0e05 !important;
    transform: scale(0.98) !important;
  }

  .nav-links a:active {
    color: var(--gold, #a9783f) !important;
  }

  .footer-contact-item>div a:active {
    color: var(--gold, #a9783f) !important;
    padding-left: 5px !important;
  }
}

/* ================================================================
   FINAL POLISH v6 — Scroll Reveal, Testimonials, Perf
   ================================================================ */

/* ── 1. SCROLL REVEAL — minimal opacity + translateY ─────────── */
.scroll-reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.5s ease, transform 0.5s ease !important;
  will-change: opacity, transform;
}

.scroll-reveal.revealed {
  opacity: 1 !important;
  transform: translateY(0) !important;
}

/* Stagger siblings naturally by row */
.feature-list .scroll-reveal:nth-child(2) {
  transition-delay: 0.05s !important;
}

.feature-list .scroll-reveal:nth-child(3) {
  transition-delay: 0.1s !important;
}

.feature-list .scroll-reveal:nth-child(4) {
  transition-delay: 0.15s !important;
}

.feature-list .scroll-reveal:nth-child(5) {
  transition-delay: 0.2s !important;
}

.clients-grid .scroll-reveal:nth-child(even) {
  transition-delay: 0.06s !important;
}

.testimonials-grid .scroll-reveal:nth-child(2) {
  transition-delay: 0.08s !important;
}

.testimonials-grid .scroll-reveal:nth-child(3) {
  transition-delay: 0.16s !important;
}

/* ── 2. TESTIMONIALS: centered header matching Client References ─ */
/* Override ALL previous left-align/grid overrides */
.testimonials-header {
  display: block !important;
  text-align: center !important;
  margin: 0 auto clamp(28px, 3vw, 44px) !important;
  max-width: 780px !important;
  padding: 0 !important;
}

.testimonials-label {
  justify-content: center !important;
  margin-bottom: 16px !important;
}

.testimonials-header h2 {
  text-align: center !important;
  font-size: clamp(28px, 6vw, 52px) !important;
}

.testimonials-intro {
  text-align: center !important;
  margin: 14px auto 0 !important;
  max-width: 600px !important;
}

/* Vertical separator off (was part of 2-col desktop layout) */
.testimonials-header::after {
  display: none !important;
}

/* Testimonials container: proper side padding on mobile */
.testimonials-container {
  padding-top: clamp(40px, 5vw, 72px) !important;
  padding-bottom: clamp(36px, 5vw, 60px) !important;
  /* horizontal handled by width + margin on desktop,
     var(--mobile-pad) injection from FINAL ENGINEERING on mobile */
}

@media (max-width: 900px) {
  .testimonials-container {
    padding-left: var(--mobile-pad, 22px) !important;
    padding-right: var(--mobile-pad, 22px) !important;
  }
}

/* ── 3. SMOOTH SCROLL PERFORMANCE ────────────────────────────── */
/* Scope the theme transition to only elements that need colour changes.
   Applying it to * causes scroll jank on lower-end devices. */
*,
*::before,
*::after {
  /* strip the forced !important universal transition */
  transition: initial;
}

/* Re-apply only where needed */
body,
.navbar,
.about,
.leadership,
.scope,
.client-references,
.testimonials,
.contact,
.footer,
.leader-card-primary,
.leader-card-secondary,
.clients-panel,
.testimonial-card,
.redesigned-testimonial,
.scope-services,
.scope-service,
.clients-trust-icon,
.about-value-icon,
.icon,
.feature,
.form-field input,
.form-field textarea,
.contact-layout {
  transition:
    background-color var(--theme-trans, 0.35s ease),
    color var(--theme-trans, 0.35s ease),
    border-color var(--theme-trans, 0.35s ease) !important;
}

/* Preserve interactive transitions */
.button,
a,
.theme-toggle,
.client-item,
.leader-card,
.scope-service,
.footer-contact-item,
.contact-submit,
.nav-links a,
.clients-trust-icon,
.scroll-top-btn,
#scroll-top-btn {
  transition:
    background-color var(--theme-trans, 0.35s ease),
    color var(--theme-trans, 0.35s ease),
    border-color var(--theme-trans, 0.35s ease),
    transform 0.25s ease,
    box-shadow 0.25s ease,
    opacity 0.28s ease,
    filter 0.35s ease !important;
}

/* nav links underline stays smooth */
.nav-links a::after {
  transition: width 0.3s cubic-bezier(.4, 0, .2, 1) !important;
}

/* scroll-reveal keeps its own transition */
.scroll-reveal {
  transition: opacity 0.5s ease, transform 0.5s ease !important;
}

/* ── Scroll-behaviour: instant jump (no smooth animation) ── */
html {
  scroll-behavior: auto !important;
}

/* ── Testimonials label: highest-specificity center fix ── */
#testimonials .testimonials-label {
  justify-content: center !important;
}

#testimonials .testimonials-header h2 {
  text-align: center !important;
}

#testimonials .testimonials-intro {
  text-align: center !important;
  margin-left: auto !important;
  margin-right: auto !important;
}

/* ================================================================
   FINAL CLEAN v7 — Hamburger, Testimonials Header, Footer Fonts
   ================================================================ */

/* ── 1. DESKTOP NAV: inline horizontal layout ──────────────────── */
@media (min-width: 901px) {
  .theme-toggle {
    display: flex !important;
  }

  #site-nav {
    display: block !important;
    position: static !important;
    visibility: visible !important;
    opacity: 1 !important;
    max-height: none !important;
    transform: none !important;
    pointer-events: auto !important;
    background: transparent !important;
    box-shadow: none !important;
    border: none !important;
    transition: none !important;
  }

  .nav-links {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    gap: 32px !important;
    padding: 0 !important;
  }

  .nav-links li {
    width: auto !important;
  }

  .nav-links a {
    display: inline !important;
    width: auto !important;
    padding: 0 !important;
    border: none !important;
    font-size: 14px !important;
  }

  .nav-actions {
    display: flex !important;
    align-items: center !important;
    gap: 14px !important;
  }
}

/* Progress bar stays at navbar bottom */
#nav-progress {
  position: absolute !important;
  bottom: 0 !important;
  top: auto !important;
  left: 0 !important;
  right: 0 !important;
  height: 3px !important;
  z-index: 5 !important;
  pointer-events: none !important;
  background: linear-gradient(90deg, #6b4818, #a97030, #6b4818) !important;
  transition: width 0.1s linear !important;
}


/* ── 2. CLIENT FEEDBACK — match Client References heading style ── */

/* Label: same as .clients-label (solid lines, not gradient) */
.testimonials-label span {
  width: 35px !important;
  height: 1px !important;
  background: var(--gold, #a9783f) !important;
  /* solid, not gradient */
}

.testimonials-label span:last-child {
  background: var(--gold, #a9783f) !important;
}

/* Heading: same size/style as .clients-heading h2 */
.testimonials-header h2 {
  font-size: clamp(34px, 6vw, 62px) !important;
  line-height: 1.05 !important;
  font-weight: 400 !important;
  font-family: 'Libre Baskerville', serif !important;
  letter-spacing: -1px !important;
  text-align: center !important;
  color: var(--heading-col, #28170e) !important;
}

/* Gold span inside heading */
.testimonials-header h2 span {
  color: var(--gold, #a9783f) !important;
}

/* Label line colour */
.testimonials-label p {
  color: var(--gold, #a9783f) !important;
  font-size: 14px !important;
  font-weight: 600 !important;
  letter-spacing: 0.5px !important;
}

/* Section-level label alignment */
#testimonials .testimonials-label {
  justify-content: center !important;
  display: flex !important;
  align-items: center !important;
  gap: 14px !important;
}

#testimonials .testimonials-header {
  text-align: center !important;
  margin-bottom: 36px !important;
}

#testimonials .testimonials-intro {
  font-size: 15px !important;
  line-height: 1.8 !important;
  text-align: center !important;
  color: var(--text-muted, rgba(38, 33, 30, .68)) !important;
}

/* ── 3. FOOTER FONT SIZES ───────────────────────────────────────── */

/* Column headings */
.footer-column h3 {
  font-size: 16px !important;
  margin-bottom: 20px !important;
  letter-spacing: 0.3px !important;
}

/* Column links */
.footer-column a {
  font-size: 13px !important;
  line-height: 1.65 !important;
}

.footer-column li {
  margin-bottom: 10px !important;
}

/* Contact column */
.footer-contact-item>div a {
  font-size: 13px !important;
  line-height: 1.75 !important;
}

.footer-contact-item>address {
  font-size: 13px !important;
  line-height: 1.75 !important;
}

.footer-contact-item>i {
  font-size: 14px !important;
  width: 18px !important;
  margin-top: 2px !important;
}

/* Brand paragraph */
.footer-brand>p {
  font-size: 13px !important;
  line-height: 1.85 !important;
}

/* Footer bottom bar */
.footer-bottom-inner>p {
  font-size: 12px !important;
}

.footer-legal a,
.footer-legal span {
  font-size: 12px !important;
}

/* Mobile footer */
@media (max-width: 900px) {
  .footer-column h3 {
    font-size: 15px !important;
  }

  .footer-column a {
    font-size: 13px !important;
  }

  .footer-contact-item>div a,
  .footer-contact-item>address {
    font-size: 12px !important;
  }

  .footer-brand>p {
    font-size: 12px !important;
  }
}

/* ================================================================
   FINAL POLISH v8 — Testimonials label match + Footer hover fix
   ================================================================ */

/* ── Testimonials label: exact match of .clients-label ─────────── */
.testimonials-label {
  gap: 15px !important;
  /* same gap as .clients-label */
}

.testimonials-label span {
  width: 30px !important;
  /* same width as .clients-label span */
  height: 1px !important;
  display: block !important;
  background: var(--gold, #a9783f) !important;
  flex-shrink: 0 !important;
}

.testimonials-label span:last-child {
  background: var(--gold, #a9783f) !important;
}

.testimonials-label p {
  font-size: 17px !important;
  /* same as .clients-label p */
  font-weight: 600 !important;
  color: var(--gold, #a9783f) !important;
  white-space: nowrap !important;
}

/* Heading: desktop left-aligned (two-column layout), mobile centered */
@media (min-width: 1024px) {

  #testimonials .testimonials-header h2,
  #testimonials .testimonials-header>div:first-child h2 {
    text-align: left !important;
    font-size: clamp(42px, 5.5vw, 62px) !important;
  }
}

@media (max-width: 1023px) {
  #testimonials .testimonials-header h2 {
    text-align: center !important;
    font-size: clamp(28px, 7vw, 46px) !important;
  }

  #testimonials .testimonials-label {
    justify-content: center !important;
  }
}

/* ── Footer: comprehensive smooth hover ─────────────────────────── */
/* All footer links start with transition */
.footer-column li a,
.footer-column ul a {
  display: inline-block !important;
  padding-left: 0 !important;
  color: rgba(255, 255, 255, 0.72) !important;
  text-decoration: none !important;
  transition: color 0.3s ease, padding-left 0.3s cubic-bezier(.4, 0, .2, 1) !important;
}

.footer-column li a:hover,
.footer-column ul a:hover {
  color: var(--gold, #a9783f) !important;
  padding-left: 6px !important;
}

/* Contact items */
.footer-contact-item {
  transition: background 0.25s ease !important;
}

.footer-contact-item>i {
  transition: transform 0.3s ease, color 0.3s ease !important;
  color: var(--gold, #a9783f) !important;
}

.footer-contact-item:hover>i {
  transform: scale(1.22) !important;
  color: #e8a84d !important;
}

.footer-contact-item>div a {
  display: block !important;
  padding-left: 0 !important;
  color: rgba(255, 255, 255, 0.72) !important;
  text-decoration: none !important;
  transition: color 0.3s ease, padding-left 0.3s cubic-bezier(.4, 0, .2, 1) !important;
}

.footer-contact-item>div a:hover {
  color: var(--gold, #a9783f) !important;
  padding-left: 4px !important;
}

.footer-contact-item>address {
  color: rgba(255, 255, 255, 0.72) !important;
  font-style: normal !important;
  transition: color 0.3s ease !important;
}

.footer-contact-item:hover>address {
  color: rgba(255, 255, 255, 0.9) !important;
}

/* Column h3 underline slide */
.footer-column h3::after {
  transition: width 0.35s cubic-bezier(.4, 0, .2, 1) !important;
}

/* ── Fix: testimonials-label flex-direction forced to row
   (specificity 130 beats the div:first-child rule at 121) ── */
#testimonials .testimonials-header .testimonials-label:not([id]) {
  display: flex !important;
  flex-direction: row !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 15px !important;
}

/* Remove default <p> margin that offsets the span lines */
#testimonials .testimonials-header .testimonials-label p {
  margin: 0 !important;
}

/* ================================================================
   TESTIMONIALS HEADER — Centered block, constrained widths
   ================================================================ */

/* Kill the 2-column grid at ALL sizes — max specificity */
#testimonials.testimonials .testimonials-container .testimonials-header,
#testimonials .testimonials-container .testimonials-header {
  display: block !important;
  grid-template-columns: unset !important;
  text-align: center !important;
  margin: 0 auto 52px !important;
  padding: 0 !important;
  max-width: 100% !important;
  column-gap: unset !important;
}

/* Kill vertical separator */
#testimonials.testimonials .testimonials-container .testimonials-header::after,
#testimonials .testimonials-container .testimonials-header::after {
  display: none !important;
  content: none !important;
}

/* Kill the column placement overrides */
#testimonials .testimonials-container .testimonials-header>div:first-child,
#testimonials .testimonials-container .testimonials-header>p {
  grid-column: unset !important;
  grid-row: unset !important;
}

/* Label — centered row */
#testimonials .testimonials-container .testimonials-header .testimonials-label {
  display: flex !important;
  flex-direction: row !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 15px !important;
  margin: 0 auto 18px !important;
}

/* Heading — centred, constrained, two natural lines */
#testimonials .testimonials-container .testimonials-header h2 {
  max-width: 700px !important;
  margin: 0 auto 18px !important;
  text-align: center !important;
  font-size: clamp(32px, 5vw, 58px) !important;
  line-height: 1.12 !important;
  letter-spacing: -1px !important;
}

/* Description — below heading, constrained */
#testimonials .testimonials-container .testimonials-header p,
#testimonials .testimonials-container .testimonials-header .testimonials-intro {
  max-width: 550px !important;
  margin: 0 auto !important;
  text-align: center !important;
  font-size: 15px !important;
  line-height: 1.8 !important;
}

/* Reduce section-level top padding */
#testimonials.testimonials {
  padding-block: 0 !important;
  padding-top: 0 !important;
}

#testimonials .testimonials-container {
  padding-top: 48px !important;
  padding-bottom: 56px !important;
}

/* 3 cards always in one row on desktop */
@media (min-width: 901px) {
  #testimonials .testimonials-grid {
    display: grid !important;
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    gap: 24px !important;
  }
}

@media (max-width: 900px) {
  #testimonials .testimonials-container .testimonials-header {
    margin-bottom: 36px !important;
  }

  #testimonials .testimonials-container .testimonials-header h2 {
    font-size: clamp(26px, 8vw, 40px) !important;
  }
}

/* ================================================================
   TESTIMONIALS — 100% match to design screenshot
   ================================================================ */

/* ── Section container ─────────────────────────────────────────── */
#testimonials.testimonials {
  position: relative !important;
  padding: 0 !important;
  overflow: hidden !important;
  background: var(--bg-alt, #202020) !important;
}

#testimonials .testimonials-container {
  position: relative !important;
  width: min(1200px, calc(100% - 60px)) !important;
  margin: 0 auto !important;
  padding: 64px 0 68px !important;
  z-index: 2 !important;
}

/* ── Background decorative quote marks ────────────────────────── */
.t-bg-quote {
  position: absolute !important;
  z-index: 1 !important;
  font-size: 160px !important;
  line-height: 1 !important;
  color: rgba(169, 135, 48, 0.08) !important;
  pointer-events: none !important;
  user-select: none !important;
}

.t-bg-quote-l {
  top: 40px !important;
  left: -10px !important;
}

.t-bg-quote-r {
  top: 40px !important;
  right: -10px !important;
}

/* ── Header: centered block ────────────────────────────────────── */
#testimonials .testimonials-header {
  display: block !important;
  grid-template-columns: unset !important;
  column-gap: unset !important;
  text-align: center !important;
  margin: 0 auto 52px !important;
  padding: 0 !important;
  max-width: 100% !important;
  position: relative !important;
  z-index: 2 !important;
}

#testimonials .testimonials-header::after {
  display: none !important;
  content: none !important;
}

/* ── Label row ─────────────────────────────────────────────────── */
#testimonials .testimonials-label {
  display: flex !important;
  flex-direction: row !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 15px !important;
  margin: 0 auto 20px !important;
}

#testimonials .testimonials-label p {
  margin: 0 !important;
  font-size: 17px !important;
  font-weight: 600 !important;
  color: var(--gold, #a9783f) !important;
  letter-spacing: 0.8px !important;
}

#testimonials .testimonials-label span {
  display: block !important;
  width: 30px !important;
  height: 1px !important;
  flex-shrink: 0 !important;
  background: var(--gold, #a9783f) !important;
}

/* ── Heading ───────────────────────────────────────────────────── */
#testimonials .testimonials-header h2 {
  max-width: 700px !important;
  margin: 0 auto 16px !important;
  text-align: center !important;
  font-family: 'Libre Baskerville', serif !important;
  font-size: clamp(36px, 5.5vw, 62px) !important;
  font-weight: 400 !important;
  line-height: 1.12 !important;
  letter-spacing: -1px !important;
  color: var(--heading-col, #ebebeb) !important;
}

#testimonials .testimonials-header h2 span {
  color: var(--gold, #a9783f) !important;
}

/* ── Diamond decoration (matching .clients-title-decoration) ───── */
.testimonials-title-deco {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 0 !important;
  margin: 0 auto 20px !important;
}

.testimonials-title-deco span {
  display: block !important;
  width: 80px !important;
  height: 1px !important;
  background: rgba(169, 135, 48, 0.6) !important;
}

.testimonials-title-deco i {
  display: block !important;
  width: 8px !important;
  height: 8px !important;
  border: 1px solid var(--gold, #a9783f) !important;
  transform: rotate(45deg) !important;
  flex-shrink: 0 !important;
  margin: 0 2px !important;
  background: transparent !important;
  font-style: normal !important;
}

/* ── Description ───────────────────────────────────────────────── */
#testimonials .testimonials-intro,
#testimonials .testimonials-header>p {
  grid-column: unset !important;
  grid-row: unset !important;
  max-width: 550px !important;
  margin: 0 auto !important;
  text-align: center !important;
  font-size: 15px !important;
  line-height: 1.8 !important;
  color: var(--text-muted, rgba(200, 200, 200, 0.65)) !important;
}

/* ── Grid: 3 columns on desktop ────────────────────────────────── */
#testimonials .testimonials-grid {
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  gap: 24px !important;
  margin-top: 0 !important;
  padding-top: 0 !important;
}

/* ── Cards ──────────────────────────────────────────────────────── */
#testimonials .redesigned-testimonial {
  background: linear-gradient(145deg, #1e1409, #140e06) !important;
  border: 1px solid rgba(169, 135, 48, 0.4) !important;
  border-radius: 16px !important;
  padding: 32px !important;
  display: flex !important;
  flex-direction: column !important;
  min-height: 340px !important;
  box-shadow: 0 6px 28px rgba(0, 0, 0, 0.35) !important;
  transition: transform 0.3s ease, box-shadow 0.3s ease !important;
}

#testimonials .redesigned-testimonial:hover {
  transform: translateY(-6px) !important;
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.45) !important;
}

/* Card header */
#testimonials .testimonial-card-header {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  margin-bottom: 22px !important;
}

#testimonials .testimonial-number {
  width: 46px !important;
  height: 46px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  border: 1px solid rgba(169, 135, 48, 0.7) !important;
  border-radius: 50% !important;
  font-family: 'Libre Baskerville', serif !important;
  font-size: 14px !important;
  color: var(--gold, #a9783f) !important;
  background: transparent !important;
}

#testimonials .testimonial-card-header>i {
  font-size: 36px !important;
  color: rgba(169, 135, 48, 0.35) !important;
}

/* Blockquote */
#testimonials .redesigned-testimonial blockquote {
  flex: 1 !important;
  font-family: 'Libre Baskerville', serif !important;
  font-size: 14.5px !important;
  font-style: italic !important;
  line-height: 1.8 !important;
  color: rgba(236, 229, 216, 0.88) !important;
  margin-bottom: 24px !important;
}

/* Separator */
#testimonials .redesigned-testimonial .testimonial-card-footer {
  border-top: 1px solid rgba(169, 135, 48, 0.25) !important;
  padding-top: 18px !important;
  display: flex !important;
  align-items: center !important;
  gap: 14px !important;
}

/* Footer icon */
#testimonials .testimonial-small-icon {
  width: 44px !important;
  height: 44px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  flex-shrink: 0 !important;
  border: 1px solid rgba(169, 135, 48, 0.5) !important;
  border-radius: 50% !important;
  background: transparent !important;
  color: var(--gold, #a9783f) !important;
  font-size: 17px !important;
}

/* Footer text */
#testimonials .testimonial-card-footer h3 {
  font-size: 13px !important;
  font-weight: 600 !important;
  color: var(--gold, #a9783f) !important;
  margin-bottom: 3px !important;
  line-height: 1.4 !important;
}

#testimonials .testimonial-card-footer p {
  font-size: 12px !important;
  color: rgba(200, 190, 175, 0.65) !important;
  margin: 0 !important;
}

/* ── Mobile ─────────────────────────────────────────────────────── */
@media (max-width: 900px) {
  #testimonials .testimonials-grid {
    grid-template-columns: 1fr !important;
    gap: 18px !important;
  }

  #testimonials .testimonials-container {
    width: calc(100% - 40px) !important;
    padding: 48px 0 52px !important;
  }

  #testimonials .testimonials-header {
    margin-bottom: 36px !important;
  }

  #testimonials .testimonials-header h2 {
    font-size: clamp(28px, 8vw, 42px) !important;
  }

  .t-bg-quote {
    font-size: 100px !important;
  }

  .t-bg-quote-l {
    left: -20px !important;
  }

  .t-bg-quote-r {
    right: -20px !important;
  }
}

@media (max-width: 600px) and (min-width: 481px) {
  #testimonials .testimonials-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}

/* Revert testimonials background to original warm cream */
#testimonials.testimonials {
  background:
    radial-gradient(circle at 10% 80%, rgba(189, 135, 48, 0.07), transparent 30%),
    radial-gradient(circle at 90% 15%, rgba(85, 38, 16, 0.05), transparent 32%),
    #f7f0e5 !important;
}

[data-theme="dark"] #testimonials.testimonials {
  background: var(--bg-alt, #202020) !important;
}

/* ================================================================
   MAP + WHATSAPP + TESTIMONIAL CARD COLORS
   ================================================================ */

/* ── Google Map ─────────────────────────────────────────────────── */
.footer-map {
  width: 100%;
  overflow: hidden;
  border-top: 1px solid rgba(189, 135, 48, 0.18);
  border-bottom: 1px solid rgba(189, 135, 48, 0.18);
  line-height: 0;
}

.footer-map iframe {
  display: block;
  width: 100%;
  height: 260px;
  filter: brightness(0.85) saturate(0.9);
}

@media (max-width: 600px) {
  .footer-map iframe {
    height: 200px;
  }
}

/* ── WhatsApp link in Get in Touch ──────────────────────────────── */
.footer-contact-item .fa-brands.fa-whatsapp {
  color: #25d366 !important;
  font-size: 16px !important;
}

.footer-contact-item a[href*="wa.me"] {
  color: #25d366 !important;
  font-weight: 600 !important;
  transition: opacity 0.2s ease !important;
}

.footer-contact-item a[href*="wa.me"]:hover {
  opacity: 0.8 !important;
  padding-left: 3px !important;
}

/* ── Testimonial card colors ────────────────────────────────────── */

/* Light mode: white / very light cream cards */
#testimonials .redesigned-testimonial {
  background: linear-gradient(145deg, #ffffff, #f8f2e8) !important;
  border: 1px solid rgba(189, 135, 48, 0.25) !important;
  box-shadow: 0 4px 20px rgba(50, 24, 10, 0.08) !important;
}

#testimonials .redesigned-testimonial blockquote {
  color: #2f2318 !important;
}

#testimonials .testimonial-card-header>i {
  color: rgba(169, 135, 48, 0.3) !important;
}

#testimonials .testimonial-number {
  color: var(--gold, #a9783f) !important;
  border-color: rgba(169, 135, 48, 0.55) !important;
  background: transparent !important;
}

#testimonials .testimonial-card-footer h3 {
  color: var(--gold, #a9783f) !important;
}

#testimonials .testimonial-card-footer p {
  color: #6b5840 !important;
}

#testimonials .testimonial-small-icon {
  background: rgba(189, 135, 48, 0.08) !important;
}

/* Dark mode: neutral gray cards (contrast against dark brown section) */
[data-theme="dark"] #testimonials .redesigned-testimonial {
  background: #2c2c2c !important;
  border: 1px solid rgba(255, 255, 255, 0.07) !important;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.4) !important;
}

[data-theme="dark"] #testimonials .redesigned-testimonial blockquote {
  color: rgba(230, 225, 215, 0.88) !important;
}

[data-theme="dark"] #testimonials .testimonial-card-header>i {
  color: rgba(169, 135, 48, 0.35) !important;
}

[data-theme="dark"] #testimonials .testimonial-number {
  color: var(--gold, #967840) !important;
  border-color: rgba(169, 135, 48, 0.5) !important;
}

[data-theme="dark"] #testimonials .testimonial-card-footer h3 {
  color: var(--gold, #967840) !important;
}

[data-theme="dark"] #testimonials .testimonial-card-footer p {
  color: rgba(180, 170, 155, 0.65) !important;
}

[data-theme="dark"] #testimonials .testimonial-small-icon {
  background: transparent !important;
  border-color: rgba(169, 135, 48, 0.4) !important;
}

/* ================================================================
   FOOTER REDESIGN + ABOUT FIX + ANIMATIONS
   ================================================================ */

/* ── 1. FOOTER — CTA section ──────────────────────────────────── */
.footer-cta {
  background:
    radial-gradient(circle at 80% 50%, rgba(189, 135, 48, 0.08), transparent 40%),
    linear-gradient(135deg, #1a0a03, #2c1508);
  border-bottom: 1px solid rgba(189, 135, 48, 0.2);
}

.footer-cta-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 48px 40px;
  display: grid;
  grid-template-columns: 260px 1px 1fr;
  align-items: center;
  gap: 40px;
  position: relative;
  overflow: hidden;
}

/* Brand */
.footer-cta-brand .footer-logo {
  display: block;
  width: 180px;
  margin-bottom: 16px;
}

.footer-cta-brand .footer-logo img {
  width: 100%;
  display: block;
}

.footer-cta-brand>p {
  color: rgba(255, 255, 255, 0.68);
  font-size: 13px;
  line-height: 1.8;
  max-width: 240px;
}

.footer-cta-brand .footer-brand-decoration {
  display: flex;
  align-items: center;
  margin-top: 20px;
}

.footer-cta-brand .footer-brand-decoration span {
  width: 40px;
  height: 1px;
  background: rgba(189, 135, 48, 0.5);
}

.footer-cta-brand .footer-brand-decoration i {
  width: 7px;
  height: 7px;
  border: 1px solid var(--gold, #a9783f);
  transform: rotate(45deg);
  margin: 0 6px;
}

/* Divider */
.footer-cta-divider {
  width: 1px;
  height: 160px;
  background: rgba(189, 135, 48, 0.25);
  justify-self: center;
}

/* CTA content */
.footer-cta-content h2 {
  font-family: 'Libre Baskerville', serif;
  font-size: clamp(22px, 3vw, 36px);
  font-weight: 400;
  color: #fff;
  line-height: 1.25;
  margin-bottom: 10px;
}

.footer-cta-sub {
  color: rgba(255, 255, 255, 0.65);
  font-size: 15px;
  margin-bottom: 28px;
}

.footer-cta-buttons {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.footer-cta-btn {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 22px;
  border-radius: 8px;
  text-decoration: none;
  min-width: 200px;
  transition: transform 0.25s ease, box-shadow 0.25s ease !important;
}

.footer-cta-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
}

.footer-cta-wa {
  background: var(--brown, #3b2117);
  border: 1px solid rgba(189, 135, 48, 0.4);
}

.footer-cta-call {
  background: transparent;
  border: 1px solid rgba(189, 135, 48, 0.55);
}

.footer-cta-btn-icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(189, 135, 48, 0.15);
  color: var(--gold, #a9783f);
  font-size: 20px;
  flex-shrink: 0;
}

.footer-cta-btn-text strong {
  display: block;
  color: #fff;
  font-size: 15px;
  font-weight: 600;
}

.footer-cta-btn-text span {
  display: block;
  color: rgba(255, 255, 255, 0.6);
  font-size: 12px;
  margin-top: 2px;
}

/* Background scales decoration */
.footer-cta-scales {
  position: absolute;
  right: -20px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 220px;
  color: rgba(189, 135, 48, 0.06);
  line-height: 1;
  pointer-events: none;
}

/* ── 2. FOOTER — Info section ─────────────────────────────────── */
.footer-info {
  background:
    radial-gradient(circle at 10% 50%, rgba(189, 135, 48, 0.06), transparent 30%),
    linear-gradient(110deg, #1a0a03, #261108, #1a0a03);
}

.footer-info-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 52px 40px 44px;
  display: grid;
  grid-template-columns: 1fr 1fr 1.5fr;
  gap: 52px;
  align-items: start;
}

.footer-info-col {
  width: 100%;
}

.footer-info-heading {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin: 28px 0 18px;
  color: var(--gold, #a9783f);
  font-family: 'Libre Baskerville', serif;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-align: center;
}

.footer-heading-line {
  display: none;
}

.footer-heading-diamond {
  display: none;
}

.footer-heading-diamond {
  width: 8px;
  height: 8px;
  border: 1px solid var(--gold, #a9783f);
  transform: rotate(45deg);
  flex-shrink: 0;
}

.footer-heading-text {
  display: inline-block;
  white-space: nowrap;
}

/* Quick Links */
.footer-links-list {
  list-style: none;
  padding: 0;
}

.footer-links-list li {
  margin-bottom: 12px;
}

.footer-links-list a {
  color: rgba(255, 255, 255, 0.72);
  text-decoration: none;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: color 0.22s ease, padding-left 0.22s ease !important;
}

.footer-links-list a i {
  color: var(--gold, #a9783f);
  font-size: 11px;
  transition: transform 0.22s ease !important;
}

.footer-links-list a:hover {
  color: var(--gold, #a9783f);
  padding-left: 4px;
}

.footer-links-list a:hover i {
  transform: translateX(3px);
}

/* Get in Touch */
.footer-touch-items {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.footer-touch-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.footer-touch-icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border-radius: 50%;
  background: rgba(189, 135, 48, 0.12);
  border: 1px solid rgba(189, 135, 48, 0.3);
  color: var(--gold, #a9783f);
  font-size: 16px;
  transition: background 0.25s ease, transform 0.25s ease !important;
}

.footer-touch-item:hover .footer-touch-icon {
  background: rgba(189, 135, 48, 0.22);
  transform: scale(1.08);
}

.footer-touch-item>div a,
.footer-touch-item>address {
  display: block;
  color: rgba(255, 255, 255, 0.72);
  text-decoration: none;
  font-size: 13.5px;
  font-style: normal;
  line-height: 1.8;
  transition: color 0.22s ease !important;
}

.footer-touch-item>div a:hover {
  color: var(--gold, #a9783f);
}

/* Map column */
.footer-map-embed {
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 14px;
  border: 1px solid rgba(189, 135, 48, 0.25);
}

.footer-map-embed iframe {
  display: block;
  width: 100%;
  height: 200px;
  filter: saturate(0.9) brightness(0.95);
}

.footer-directions-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  width: 100%;
  padding: 12px 18px;
  border-radius: 8px;
  background: transparent;
  border: 1px solid rgba(189, 135, 48, 0.4);
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
  font-size: 13px;
  justify-content: center;
  transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease !important;
}

.footer-directions-btn i {
  color: var(--gold, #a9783f);
}

.footer-directions-btn:hover {
  background: rgba(189, 135, 48, 0.12);
  color: #fff;
  border-color: var(--gold, #a9783f);
}

/* ── 3. FOOTER bottom bar ─────────────────────────────────────── */
.footer-bottom {
  border-top: 1px solid rgba(189, 135, 48, 0.2);
  background: rgba(10, 4, 1, 0.4);
}

.footer-bottom-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  min-height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-bottom-inner>p {
  color: rgba(255, 255, 255, 0.5);
  font-size: 13px;
}

.footer-bottom-decoration {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-bottom-decoration span {
  width: 60px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold, #a9783f));
}

.footer-bottom-decoration span:last-child {
  background: linear-gradient(90deg, var(--gold, #a9783f), transparent);
}

.footer-bottom-decoration i {
  color: var(--gold, #a9783f);
  font-size: 18px;
}

.footer-legal {
  display: flex;
  gap: 10px;
  align-items: center;
}

.footer-legal a,
.footer-legal span {
  color: rgba(255, 255, 255, 0.5);
  font-size: 13px;
  text-decoration: none;
}

.footer-legal a:hover {
  color: var(--gold, #a9783f);
}

/* ── 4. RESPONSIVE: footer ────────────────────────────────────── */
@media (max-width: 900px) {

  .about,
  .leadership,
  .scope,
  .client-references,
  .testimonials,
  .contact {
    padding: var(--section-space-tablet) 0;
  }

  .footer {
    margin-top: var(--section-space-tablet);
  }

  .footer-info-inner {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .footer-info-col {
    align-items: center;
    text-align: center;
  }

  .footer-links-list {
    display: inline-flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    text-align: left !important;
  }

  .footer-links-list a {
    justify-content: flex-start !important;
  }

  .footer-touch-items {
    display: inline-flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    text-align: left !important;
  }

  .footer-touch-item {
    justify-content: flex-start !important;
  }

  .footer-touch-item>div,
  .footer-touch-item address {
    text-align: left !important;
  }

  .footer-map-embed {
    max-width: 460px;
    margin: 0 auto 14px;
  }

  .footer-directions-btn {
    max-width: 360px;
    margin: 0 auto;
  }

  .footer-cta-inner {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 36px 24px;
    text-align: center;
  }

  .footer-cta-brand .footer-logo {
    margin: 0 auto 16px;
  }

  .footer-cta-brand>p {
    max-width: 100%;
  }

  .footer-cta-brand .footer-brand-decoration {
    justify-content: center;
  }

  .footer-cta-divider {
    display: none;
  }

  .footer-cta-buttons {
    justify-content: center;
  }

  .footer-cta-scales {
    display: none;
  }

  .footer-info-inner {
    grid-template-columns: 1fr;
    gap: 36px;
    padding: 40px 24px 36px;
  }

  .footer-bottom-inner {
    flex-direction: column;
    gap: 14px;
    padding: 18px 24px;
    text-align: center;
  }
}

@media (max-width: 600px) {

  .about,
  .leadership,
  .scope,
  .client-references,
  .testimonials,
  .contact {
    padding: var(--section-space-mobile) 0;
  }

  .footer {
    margin-top: var(--section-space-mobile);
  }

  .footer-info-heading {
    gap: 8px;
    font-size: 14px;
  }

  .footer-heading-line {
    display: none;
  }

  .footer-cta-btn {
    min-width: 0;
    width: 100%;
  }

  .footer-cta-buttons {
    flex-direction: column;
  }
}

/* Dark/light theme adaptations */
[data-theme="light"] .footer-cta,
[data-theme="light"] .footer-info,
[data-theme="light"] .footer-bottom {
  /* Footer always stays dark — do not invert for light mode */
}

/* ── 5. WHATSAPP FLOATING BUTTON ─────────────────────────────── */
#wa-float {
  position: fixed;
  bottom: 32px;
  right: 28px;
  z-index: 9989;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  text-decoration: none;
  /* Light theme: dark brown (matches site theme) */
  background: var(--brown, #3b2117);
  color: var(--gold, #a9783f);
  border: 2px solid var(--gold, #a9783f);
  box-shadow: 0 4px 18px rgba(20, 8, 2, .3);
  opacity: 0;
  transform: translateY(20px);
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease, background 0.25s ease !important;
}

#wa-float.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

#wa-float:hover {
  background: var(--gold, #a9783f) !important;
  color: #fff !important;
  transform: translateY(-3px) !important;
  box-shadow: 0 8px 24px rgba(107, 72, 24, .4) !important;
}

/* Dark mode: gray button */
[data-theme="dark"] #wa-float {
  background: #2c2c2c !important;
  color: var(--gold, #967840) !important;
  border-color: rgba(150, 120, 64, 0.4) !important;
}

[data-theme="dark"] #wa-float:hover {
  background: var(--gold, #967840) !important;
  color: #fff !important;
}

/* WhatsApp tooltip */
.wa-tooltip {
  position: absolute;
  right: calc(100% + 12px);
  top: 50%;
  transform: translateY(-50%);
  background: #1e1208;
  color: rgba(255, 255, 255, 0.88);
  font-size: 12px;
  white-space: nowrap;
  padding: 6px 12px;
  border-radius: 6px;
  border: 1px solid rgba(189, 135, 48, 0.3);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease !important;
}

.wa-tooltip::after {
  content: '';
  position: absolute;
  left: 100%;
  top: 50%;
  transform: translateY(-50%);
  border: 5px solid transparent;
  border-left-color: #1e1208;
}

#wa-float:hover .wa-tooltip {
  opacity: 1;
}

/* Stack: scroll-top above WhatsApp */
#scroll-top-btn {
  bottom: 88px !important;
}

/* ── 6. HERO BUTTON — arrow fall-through animation ───────────── */
.hero-buttons .button {
  overflow: hidden !important;
}

.btn-arrow {
  display: inline-flex;
  overflow: hidden;
  height: 1.3em;
  align-items: center;
  justify-content: center;
  width: 1em;
  vertical-align: middle;
}

.btn-arrow i {
  display: inline-block;
  font-style: normal;
}

/* Remove old bounceDown animation */
.button:hover i.fa-arrow-down {
  animation: none !important;
}

/* New fall-through on hover */
.hero-buttons .button:hover .btn-arrow i {
  animation: arrowFall 0.72s cubic-bezier(.4, 0, .2, 1) infinite !important;
}

@keyframes arrowFall {
  0% {
    transform: translateY(0);
    opacity: 1;
  }

  42% {
    transform: translateY(160%);
    opacity: 0;
  }

  43% {
    transform: translateY(-160%);
    opacity: 0;
  }

  58% {
    transform: translateY(-160%);
    opacity: 0;
  }

  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

/* ── 7. ABOUT SECTION — image responsive fix ─────────────────── */
/* All screen sizes: visual is flex-column, image fixed height */
.about-visual {
  display: flex !important;
  flex-direction: column !important;
  height: auto !important;
  overflow: visible !important;
  gap: 0 !important;
}

.about-image {
  position: relative !important;
  width: 100% !important;
  height: 380px !important;
  overflow: hidden !important;
  flex-shrink: 0 !important;
  border-radius: 180px 180px 12px 12px !important;
  border: 1px solid rgba(189, 135, 48, 0.6) !important;
}

.about-image img {
  object-fit: cover !important;
  object-position: 50% 18% !important;
  width: 100% !important;
  height: 100% !important;
}

.about-quote {
  position: relative !important;
  left: auto !important;
  bottom: auto !important;
  width: 100% !important;
  margin-top: -1px !important;
  border-radius: 0 0 12px 12px !important;
  min-height: 0 !important;
  border-top: none !important;
  padding: 24px 28px !important;
}

/* Desktop: restore two-column (about-container) with fixed visual size */
@media (min-width: 901px) {
  .about-container {
    display: grid !important;
    grid-template-columns: 48% 52% !important;
    align-items: start !important;
  }

  .about-visual {
    width: 100% !important;
  }

  .about-image {
    height: 400px !important;
  }
}

/* Mobile: full-width stacked */
@media (max-width: 600px) {
  .about-image {
    height: 300px !important;
    border-radius: 120px 120px 10px 10px !important;
  }
}

/* ================================================================
   FOOTER + WA-FLOAT FIXES
   ================================================================ */

/* ── 1. Footer: no-goldish dark for light mode, gray for dark ─── */
/* Light mode footer (always dark, no gold tint) */
.footer-cta {
  background: linear-gradient(135deg, #1c1c1c 0%, #2a2a2a 100%) !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06) !important;
}

.footer-info {
  background: linear-gradient(110deg, #161616, #202020, #161616) !important;
}

.footer-bottom {
  background: #111111 !important;
  border-top: 1px solid rgba(255, 255, 255, 0.06) !important;
}

/* Dark mode footer: lighter gray tones */
[data-theme="dark"] .footer-cta {
  background: linear-gradient(135deg, #252525 0%, #303030 100%) !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05) !important;
}

[data-theme="dark"] .footer-info {
  background: linear-gradient(110deg, #222222, #2c2c2c, #222222) !important;
}

[data-theme="dark"] .footer-bottom {
  background: #1a1a1a !important;
  border-top: 1px solid rgba(255, 255, 255, 0.05) !important;
}

/* ── 2. Footer info: responsive grid layout ──────────────────── */
/* Tablet (601–900px): Quick Links + Get in Touch side-by-side, map below */
@media (max-width: 900px) and (min-width: 601px) {
  .footer-info-inner {
    grid-template-columns: 1fr 1fr !important;
    gap: 36px !important;
    padding: 44px 28px 40px !important;
  }

  .footer-office-col {
    grid-column: 1 / -1 !important;
  }

  .footer-map-embed iframe {
    height: 180px !important;
  }

  .footer-directions-btn {
    max-width: 400px !important;
  }
}

/* Mobile (<600px): all stacked */
@media (max-width: 600px) {
  .footer-info-inner {
    grid-template-columns: 1fr !important;
    gap: 32px !important;
    padding: 36px 20px 32px !important;
  }
}

/* ── 3. No extra space below footer ──────────────────────────── */
html,
body {
  margin: 0 !important;
  padding-bottom: 0 !important;
}

footer.footer {
  margin-bottom: 0 !important;
  display: block !important;
}

.footer-bottom {
  padding-bottom: 0 !important;
}

/* ── 4. WhatsApp float: gray with light icon (both modes) ───── */
#wa-float {
  background: #2e2e2e !important;
  color: rgba(255, 255, 255, 0.85) !important;
  border: 1px solid rgba(255, 255, 255, 0.15) !important;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.35) !important;
  /* Always visible */
  opacity: 1 !important;
  transform: translateY(0) !important;
  pointer-events: auto !important;
}

#wa-float.visible {
  opacity: 1 !important;
  transform: translateY(0) !important;
}

#wa-float:hover {
  background: #3d3d3d !important;
  color: #ffffff !important;
  transform: translateY(-3px) !important;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.45) !important;
  border-color: rgba(255, 255, 255, 0.25) !important;
}

[data-theme="dark"] #wa-float {
  background: #3a3a3a !important;
  color: rgba(255, 255, 255, 0.8) !important;
  border-color: rgba(255, 255, 255, 0.12) !important;
}

[data-theme="dark"] #wa-float:hover {
  background: #4a4a4a !important;
  color: #ffffff !important;
}

/* ================================================================
   ABOUT US — 100% match to reference
   ================================================================ */

/* ── Desktop 2-column layout ─────────────────────────────────── */
@media (min-width: 901px) {
  .about-container {
    display: grid !important;
    grid-template-columns: 48% 52% !important;
    align-items: start !important;
    gap: 0 !important;
    padding: 64px 0 52px !important;
    width: min(1320px, calc(100% - 100px)) !important;
  }

  .about-content {
    padding-right: 60px !important;
  }
}

/* ── Section label: diamond at END of line ─────────────────── */
.section-line::after {
  left: auto !important;
  right: -4px !important;
  transform: translateX(0) rotate(45deg) !important;
}

/* ── Values: 3-column horizontal ──────────────────────────── */
.about-values {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr) !important;
  gap: 0 !important;
  margin-bottom: 28px !important;
}

.about-value {
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  text-align: center !important;
  padding: 16px 20px !important;
  min-height: 0 !important;
  position: relative !important;
}

.about-value:not(:last-child)::after {
  content: "" !important;
  position: absolute !important;
  right: 0 !important;
  top: 20px !important;
  width: 1px !important;
  height: 80px !important;
  background: rgba(189, 135, 48, 0.4) !important;
  display: block !important;
}

.about-value-icon {
  width: 68px !important;
  height: 68px !important;
  margin-bottom: 14px !important;
}

.about-value h3 {
  font-size: 14px !important;
  line-height: 1.5 !important;
  font-weight: 600 !important;
}

/* ── About visual: centered oval portrait + card below ──── */
.about-visual.legacy-visual {
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  height: auto !important;
  overflow: visible !important;
  position: relative !important;
  padding-top: 12px !important;
  gap: 0 !important;
}

/* ── Leaf branch decorations ──────────────────────────────── */
.about-leaf {
  position: absolute !important;
  z-index: 0 !important;
  pointer-events: none !important;
  opacity: 0.18 !important;
  width: 130px !important;
  height: 200px !important;
  top: 20px !important;
}

.about-leaf::before,
.about-leaf::after {
  content: '' !important;
  position: absolute !important;
  border-radius: 50% 0 50% 0 !important;
  background: var(--gold, #a9783f) !important;
}

/* Left branch */
.about-leaf-l {
  left: 14px !important;
  transform: scaleX(-1) !important;
}

.about-leaf-r {
  right: 14px !important;
}

/* Leaf shapes via stacked pseudo-elements */
.about-leaf::before {
  width: 45px !important;
  height: 20px !important;
  top: 60px !important;
  left: 10px !important;
  transform: rotate(-40deg) !important;
}

.about-leaf::after {
  width: 38px !important;
  height: 16px !important;
  top: 30px !important;
  left: 18px !important;
  transform: rotate(-60deg) !important;
}

/* Extra leaf layers via box-shadow */
.about-leaf-l::before {
  box-shadow: 20px 50px 0 rgba(169, 120, 63, 1), -5px 90px 0 rgba(169, 120, 63, 0.8), 30px 110px 0 rgba(169, 120, 63, 0.6);
}

.about-leaf-r::before {
  box-shadow: 20px 50px 0 rgba(169, 120, 63, 1), -5px 90px 0 rgba(169, 120, 63, 0.8), 30px 110px 0 rgba(169, 120, 63, 0.6);
}

/* ── Portrait: true ellipse frame ──────────────────────────── */
.about-image {
  position: relative !important;
  width: 290px !important;
  height: 370px !important;
  border-radius: 50% !important;
  /* perfect ellipse */
  overflow: hidden !important;
  border: 2px solid rgba(189, 135, 48, 0.65) !important;
  background: #f0e8d8 !important;
  margin: 0 auto !important;
  align-self: center !important;
  flex-shrink: 0 !important;
  z-index: 1 !important;
}

.about-image img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  object-position: 50% 18% !important;
  /* show face */
}

/* ── Diamond separator between portrait and quote card ───── */
.about-visual-sep {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 100% !important;
  margin: 16px 0 !important;
  z-index: 1 !important;
  position: relative !important;
}

.about-visual-sep span {
  display: block !important;
  width: 60px !important;
  height: 1px !important;
  background: rgba(189, 135, 48, 0.55) !important;
}

.about-visual-sep i {
  display: block !important;
  width: 8px !important;
  height: 8px !important;
  border: 1px solid var(--gold, #a9783f) !important;
  transform: rotate(45deg) !important;
  margin: 0 4px !important;
  flex-shrink: 0 !important;
  font-style: normal !important;
  background: var(--bg-page, #faf5eb) !important;
}

/* ── Quote card ──────────────────────────────────────────── */
.about-quote {
  position: relative !important;
  left: auto !important;
  bottom: auto !important;
  width: 100% !important;
  max-width: 380px !important;
  margin: 0 auto !important;
  border-radius: 16px !important;
  min-height: 0 !important;
  padding: 26px 28px 24px !important;
  background: linear-gradient(145deg, #32190d, #1e1009) !important;
  box-shadow: 0 10px 32px rgba(20, 8, 2, 0.22) !important;
  z-index: 1 !important;
}

.about-quote .quote-mark {
  height: 40px !important;
  font-size: 60px !important;
  color: var(--gold, #a9783f) !important;
  font-family: Georgia, serif !important;
  line-height: 1 !important;
  margin-bottom: 8px !important;
}

.about-quote p {
  font-size: 14px !important;
  line-height: 1.85 !important;
  color: rgba(255, 255, 255, 0.9) !important;
  font-family: 'Libre Baskerville', serif !important;
  font-style: italic !important;
  margin-bottom: 0 !important;
}

.about-quote .quote-divider {
  width: 100% !important;
  height: 1px !important;
  margin: 16px 0 12px !important;
  background: linear-gradient(90deg, var(--gold, #a9783f), rgba(189, 135, 48, 0.1)) !important;
}

.about-quote h4 {
  color: #ffffffd1 !important;
  font-size: 16px !important;
  letter-spacing: 2px !important;
  margin-bottom: 4px !important;
  font-weight: 800 !important;
}

.about-quote span {
  font-size: 12px !important;
  color: rgba(255, 255, 255, 0.72) !important;
}

/* ── Mobile: full-width stacked ──────────────────────────── */
@media (max-width: 900px) {
  .about-container {
    display: flex !important;
    flex-direction: column !important;
    width: 100% !important;
    padding: 40px 20px 36px !important;
  }

  .about-content {
    padding-right: 0 !important;
  }

  .about-visual.legacy-visual {
    width: 100% !important;
    margin-top: 32px !important;
  }

  .about-image {
    width: 240px !important;
    height: 300px !important;
  }

  .about-quote {
    max-width: 100% !important;
  }

  .about-leaf {
    display: none !important;
  }
}

@media (max-width: 600px) {
  .about-image {
    width: 200px !important;
    height: 254px !important;
  }

  .about-values {
    grid-template-columns: 1fr !important;
    gap: 12px !important;
  }

  .about-value:not(:last-child)::after {
    display: none !important;
  }
}

/* ================================================================
   FINAL POLISH — Arrow once, Toggle, Navbar, Leaf SVG, About medium
   ================================================================ */

/* ── 1. OUR EXPERTISE arrow: animate ONCE on hover ───────────── */
.hero-buttons .button:hover .btn-arrow i {
  animation: arrowFall 0.72s cubic-bezier(.4, 0, .2, 1) 1 forwards !important;
}

/* ── 2. Bouncy theme toggle (iOS pill switch) ─────────────────── */
.theme-toggle {
  display: flex !important;
  align-items: center !important;
  gap: 6px !important;
  width: auto !important;
  height: 28px !important;
  border-radius: 0 !important;
  border: none !important;
  background: transparent !important;
  padding: 0 !important;
  cursor: pointer !important;
}

.toggle-sun,
.toggle-moon {
  font-size: 13px !important;
  color: var(--gold, #a9783f) !important;
  display: flex !important;
  align-items: center !important;
  opacity: 0.55 !important;
  transition: opacity 0.3s ease !important;
}

/* Active icon gets full opacity */
[data-theme="light"] .toggle-sun {
  opacity: 1 !important;
}

[data-theme="dark"] .toggle-moon {
  opacity: 1 !important;
}

.toggle-track {
  position: relative !important;
  display: flex !important;
  align-items: center !important;
  width: 44px !important;
  height: 24px !important;
  border-radius: 12px !important;
  background: rgba(169, 120, 63, 0.25) !important;
  border: 1px solid rgba(169, 120, 63, 0.45) !important;
  transition: background 0.35s ease !important;
  flex-shrink: 0 !important;
}

[data-theme="dark"] .toggle-track {
  background: rgba(169, 120, 63, 0.5) !important;
}

.toggle-thumb {
  position: absolute !important;
  left: 3px !important;
  width: 18px !important;
  height: 18px !important;
  border-radius: 50% !important;
  background: var(--gold, #a9783f) !important;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.25) !important;
  transition: transform 0.35s cubic-bezier(.34, 1.56, .64, 1) !important;
  /* bouncy */
}

[data-theme="dark"] .toggle-thumb {
  transform: translateX(20px) !important;
}

/* Desktop: show toggle, hide hamburger */
@media (min-width: 901px) {
  .theme-toggle {
    display: flex !important;
  }
}

/* Mobile: keep toggle visible but compact */
@media (max-width: 900px) {

  .toggle-sun,
  .toggle-moon {
    display: none !important;
  }

  .toggle-track {
    width: 36px !important;
    height: 20px !important;
  }

  .toggle-thumb {
    width: 14px !important;
    height: 14px !important;
  }

  [data-theme="dark"] .toggle-thumb {
    transform: translateX(16px) !important;
  }

  .theme-toggle {
    gap: 0 !important;
  }
}

/* ── 3. Navbar hide-on-scroll-down / show-on-scroll-up ────────── */
.navbar {
  transition: transform 0.3s cubic-bezier(.4, 0, .2, 1), box-shadow 0.3s ease !important;
}

.navbar.navbar-hidden {
  transform: translateY(-100%) !important;
  box-shadow: none !important;
}

/* ── 4. About section: medium screens (portrait + card side-by-side) */
@media (max-width: 900px) and (min-width: 601px) {
  .about-visual.legacy-visual {
    flex-direction: row !important;
    align-items: flex-start !important;
    gap: 24px !important;
    justify-content: center !important;
    max-width: 100% !important;
  }

  .about-image {
    width: 210px !important;
    height: 265px !important;
    flex-shrink: 0 !important;
    margin: 0 !important;
  }

  .about-visual-sep {
    display: none !important;
  }

  .about-quote {
    flex: 1 !important;
    max-width: none !important;
    margin: 0 !important;
    align-self: center !important;
  }

  .about-leaf {
    display: none !important;
  }
}

/* ── 5. Leaf SVG decorations (laurel branch matching reference) ─ */
/* Replace CSS box-shadow leaves with SVG background-image */
.about-leaf-l,
.about-leaf-r {
  position: absolute !important;
  z-index: 0 !important;
  pointer-events: none !important;
  width: 110px !important;
  height: 300px !important;
  top: 10px !important;
  background-size: contain !important;
  background-repeat: no-repeat !important;
  background-position: center top !important;
  opacity: 0.22 !important;
}

/* Clear old pseudo-element leaves */
.about-leaf-l::before,
.about-leaf-l::after,
.about-leaf-r::before,
.about-leaf-r::after {
  display: none !important;
}

/* Left branch (mirrored) */
.about-leaf-l {
  left: 10px !important;
  transform: scaleX(-1) !important;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 80 280' fill='%23a9783f'%3E%3Cpath d='M40 275 C41 220 39 160 40 90 C41 30 40 5 40 5' fill='none' stroke='%23a9783f' stroke-width='1.5' opacity='0.5'/%3E%3Cellipse cx='28' cy='245' rx='15' ry='7' transform='rotate(-32 28 245)' opacity='0.9'/%3E%3Cellipse cx='53' cy='228' rx='15' ry='7' transform='rotate(32 53 228)' opacity='0.9'/%3E%3Cellipse cx='25' cy='208' rx='14' ry='6.5' transform='rotate(-38 25 208)' opacity='0.85'/%3E%3Cellipse cx='56' cy='190' rx='14' ry='6.5' transform='rotate(38 56 190)' opacity='0.85'/%3E%3Cellipse cx='23' cy='170' rx='13' ry='6' transform='rotate(-44 23 170)' opacity='0.8'/%3E%3Cellipse cx='58' cy='152' rx='13' ry='6' transform='rotate(44 58 152)' opacity='0.8'/%3E%3Cellipse cx='24' cy='132' rx='12' ry='5.5' transform='rotate(-50 24 132)' opacity='0.75'/%3E%3Cellipse cx='57' cy='114' rx='12' ry='5.5' transform='rotate(50 57 114)' opacity='0.75'/%3E%3Cellipse cx='26' cy='94' rx='11' ry='5' transform='rotate(-56 26 94)' opacity='0.7'/%3E%3Cellipse cx='55' cy='76' rx='11' ry='5' transform='rotate(56 55 76)' opacity='0.7'/%3E%3Cellipse cx='29' cy='56' rx='10' ry='4.5' transform='rotate(-62 29 56)' opacity='0.65'/%3E%3Cellipse cx='52' cy='40' rx='10' ry='4.5' transform='rotate(62 52 40)' opacity='0.65'/%3E%3Cellipse cx='35' cy='22' rx='9' ry='4' transform='rotate(-68 35 22)' opacity='0.6'/%3E%3C/svg%3E") !important;
}

/* Right branch (same SVG, not mirrored) */
.about-leaf-r {
  right: 10px !important;
  transform: none !important;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 80 280' fill='%23a9783f'%3E%3Cpath d='M40 275 C41 220 39 160 40 90 C41 30 40 5 40 5' fill='none' stroke='%23a9783f' stroke-width='1.5' opacity='0.5'/%3E%3Cellipse cx='28' cy='245' rx='15' ry='7' transform='rotate(-32 28 245)' opacity='0.9'/%3E%3Cellipse cx='53' cy='228' rx='15' ry='7' transform='rotate(32 53 228)' opacity='0.9'/%3E%3Cellipse cx='25' cy='208' rx='14' ry='6.5' transform='rotate(-38 25 208)' opacity='0.85'/%3E%3Cellipse cx='56' cy='190' rx='14' ry='6.5' transform='rotate(38 56 190)' opacity='0.85'/%3E%3Cellipse cx='23' cy='170' rx='13' ry='6' transform='rotate(-44 23 170)' opacity='0.8'/%3E%3Cellipse cx='58' cy='152' rx='13' ry='6' transform='rotate(44 58 152)' opacity='0.8'/%3E%3Cellipse cx='24' cy='132' rx='12' ry='5.5' transform='rotate(-50 24 132)' opacity='0.75'/%3E%3Cellipse cx='57' cy='114' rx='12' ry='5.5' transform='rotate(50 57 114)' opacity='0.75'/%3E%3Cellipse cx='26' cy='94' rx='11' ry='5' transform='rotate(-56 26 94)' opacity='0.7'/%3E%3Cellipse cx='55' cy='76' rx='11' ry='5' transform='rotate(56 55 76)' opacity='0.7'/%3E%3Cellipse cx='29' cy='56' rx='10' ry='4.5' transform='rotate(-62 29 56)' opacity='0.65'/%3E%3Cellipse cx='52' cy='40' rx='10' ry='4.5' transform='rotate(62 52 40)' opacity='0.65'/%3E%3Cellipse cx='35' cy='22' rx='9' ry='4' transform='rotate(-68 35 22)' opacity='0.6'/%3E%3C/svg%3E") !important;
}

/* ================================================================
   CLEANUP — Remove leaves, fix medium-screen layouts
   ================================================================ */

/* ── 1. Hide all leaf elements ──────────────────────────────── */
.about-leaf,
.about-leaf-l,
.about-leaf-r {
  display: none !important;
}

/* ── 2. About section medium screens: portrait + card aligned ── */
@media (max-width: 900px) and (min-width: 601px) {

  /* Container: full-width, centred two-column */
  .about-visual.legacy-visual {
    flex-direction: row !important;
    align-items: stretch !important;
    /* both columns same height */
    justify-content: center !important;
    gap: 28px !important;
    width: 100% !important;
    margin-top: 32px !important;
  }

  /* Portrait: fixed-size, top-aligned */
  .about-image {
    width: 200px !important;
    height: 256px !important;
    flex-shrink: 0 !important;
    margin: 0 !important;
    align-self: flex-start !important;
  }

  /* Hide the diamond sep between portrait & card */
  .about-visual-sep {
    display: none !important;
  }

  /* Quote card: fills remaining space, same top edge as portrait */
  .about-quote {
    flex: 1 !important;
    max-width: none !important;
    margin: 0 !important;
    align-self: flex-start !important;
    /* top-aligned with portrait */
  }
}

/* ── 3. Testimonials: 2-col on medium screens ───────────────── */
@media (max-width: 900px) and (min-width: 601px) {
  #testimonials .testimonials-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 20px !important;
  }

  /* 3rd card: centred, half-width */
  #testimonials .redesigned-testimonial:nth-child(3) {
    grid-column: 1 / -1 !important;
    max-width: 50% !important;
    margin: 0 auto !important;
    width: 100% !important;
  }

  #testimonials .testimonials-container {
    padding-left: 24px !important;
    padding-right: 24px !important;
  }
}

/* ================================================================
   TOGGLE REDESIGN + ABOUT FULL-WIDTH FIX
   ================================================================ */

/* ── 1. Theme toggle: icon-inside-track design ──────────────── */
.theme-toggle {
  background: transparent !important;
  border: none !important;
  padding: 0 !important;
  cursor: pointer !important;
  display: flex !important;
  align-items: center !important;
  gap: 0 !important;
  width: auto !important;
  height: auto !important;
  border-radius: 0 !important;
}

/* The pill track */
.toggle-track {
  position: relative !important;
  display: block !important;
  width: 58px !important;
  height: 28px !important;
  border-radius: 14px !important;
  background: var(--gold, #a9783f) !important;
  border: none !important;
  flex-shrink: 0 !important;
  transition: background 0.35s ease !important;
  overflow: hidden !important;
}

[data-theme="dark"] .toggle-track {
  background: #5a4220 !important;
}

/* Icons inside the track */
.toggle-icon {
  position: absolute !important;
  top: 50% !important;
  transform: translateY(-50%) !important;
  width: 20px !important;
  height: 20px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  font-size: 13px !important;
  transition: opacity 0.25s ease !important;
  z-index: 1 !important;
  pointer-events: none !important;
  background: transparent !important;
}

/* Sun: left side, visible in light mode */
.toggle-sun {
  left: 5px !important;
  color: #ffe066 !important;
  opacity: 1 !important;
}

/* Moon: right side, visible in dark mode */
.toggle-moon {
  right: 5px !important;
  color: #ffe066 !important;
  opacity: 0 !important;
}

[data-theme="dark"] .toggle-sun {
  opacity: 0 !important;
}

[data-theme="dark"] .toggle-moon {
  opacity: 1 !important;
}

/* White thumb slides L ↔ R */
.toggle-thumb {
  position: absolute !important;
  top: 3px !important;
  left: 3px !important;
  width: 22px !important;
  height: 22px !important;
  border-radius: 50% !important;
  background: #ffffff !important;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.3) !important;
  z-index: 2 !important;
  /* Light mode: thumb on RIGHT (covering the right/moon area) */
  transform: translateX(30px) !important;
  transition: transform 0.35s cubic-bezier(.34, 1.56, .64, 1) !important;
}

/* Dark mode: thumb on LEFT (covering the left/sun area) */
[data-theme="dark"] .toggle-thumb {
  transform: translateX(0px) !important;
}

/* Mobile: slightly smaller */
@media (max-width: 900px) {
  .toggle-track {
    width: 48px !important;
    height: 24px !important;
    border-radius: 12px !important;
  }

  .toggle-thumb {
    width: 18px !important;
    height: 18px !important;
    top: 3px !important;
  }

  /* Light: translateX = 48 - 18 - 6 = 24 */
  .toggle-thumb {
    transform: translateX(24px) !important;
  }

  [data-theme="dark"] .toggle-thumb {
    transform: translateX(0) !important;
  }

  .toggle-sun {
    left: 4px !important;
    font-size: 11px !important;
  }

  .toggle-moon {
    right: 4px !important;
    font-size: 11px !important;
  }
}

/* ── 2. About visual: grid layout for reliable full-width ───── */
@media (max-width: 900px) and (min-width: 601px) {
  .about-visual.legacy-visual {
    /* Switch from flex to grid for precise column control */
    display: grid !important;
    grid-template-columns: 200px 1fr !important;
    grid-template-rows: auto !important;
    gap: 28px !important;
    width: 100% !important;
    align-items: start !important;
    margin-top: 32px !important;
    flex-direction: unset !important;
  }

  .about-image {
    width: 100% !important;
    height: 256px !important;
    grid-column: 1 !important;
    grid-row: 1 !important;
    margin: 0 !important;
    align-self: start !important;
  }

  .about-visual-sep {
    display: none !important;
  }

  .about-quote {
    grid-column: 2 !important;
    grid-row: 1 !important;
    width: 100% !important;
    max-width: 100% !important;
    flex: unset !important;
    margin: 0 !important;
    align-self: start !important;
  }
}

/* ================================================================
   NAV — Desktop authoritative layer
   ================================================================ */

/* ── Desktop: inline nav ───────────────────────────────────────── */
@media (min-width: 901px) {
  #site-nav {
    position: static !important;
    top: auto !important;
    right: auto !important;
    width: auto !important;
    height: auto !important;
    transform: none !important;
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
    background: transparent !important;
    box-shadow: none !important;
    border: none !important;
    transition: none !important;
    display: block !important;
    overflow: visible !important;
  }

  .nav-links {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    gap: 32px !important;
    padding: 0 !important;
  }

  .nav-links li {
    width: auto !important;
  }

  .nav-links a {
    display: inline !important;
    width: auto !important;
    padding: 0 !important;
    border: none !important;
  }
}

/* ── Remove Gold Highlights from Section Titles in Dark Mode ── */
[data-theme="dark"] .about-title span,
[data-theme="dark"] .leadership-heading h2 span,
[data-theme="dark"] .scope-heading h2 span,
[data-theme="dark"] .clients-heading h2 span,
[data-theme="dark"] .testimonials-header h2 span {
  color: var(--heading-col, #ebebeb) !important;
}

/* ================================================================
   NAVBAR — ALWAYS LIGHT (exclude dark theme from sticky header)
   ================================================================ */
/* Override the dark-mode bg-nav variable only for the navbar */
[data-theme="dark"] .navbar {
  background: #faf5ed !important;
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.10), 0 2px 16px rgba(0, 0, 0, 0.06) !important;
  color: #1e140f !important;
}

[data-theme="dark"] .navbar .logo img {
  filter: none !important;
}

/* On desktop: nav is transparent & links use dark text against cream navbar */
@media (min-width: 901px) {
  [data-theme="dark"] #site-nav {
    background: transparent !important;
    box-shadow: none !important;
    border: none !important;
  }

  [data-theme="dark"] .nav-links a {
    color: #1e140f !important;
    background: transparent !important;
  }

  [data-theme="dark"] .nav-links a:hover,
  [data-theme="dark"] .nav-links a.active {
    color: var(--gold, #a9783f) !important;
    background: transparent !important;
  }
}



/* ================================================================
   LEADER NAME — CLICKABLE BIO TRIGGER
   ================================================================ */
.leader-name {
  margin: 0;
}

.leader-bio-trigger {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
  letter-spacing: inherit;
  color: inherit;
  text-align: left;
  width: 100%;
  transition: color 0.2s ease;
}

.leader-bio-trigger:hover {
  color: var(--gold, #a9783f);
}

.bio-trigger-hint {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  border: 1px solid rgba(169, 120, 63, 0.4);
  border-radius: 4px;
  padding: 3px 8px;
  transition: background 0.2s ease, color 0.2s ease;
}

.leader-bio-trigger:hover .bio-trigger-hint {
  background: var(--gold, #a9783f);
  color: #fff;
}

/* ================================================================
   ACHIEVEMENTS BLOCK — inside leader-details
   ================================================================ */
.leader-achievement-block {
  margin-top: 20px;
  padding: 16px 18px;
  background: linear-gradient(135deg, rgba(174, 134, 58, 0.12), rgba(174, 134, 58, 0.04));
  border: 1px solid rgba(169, 120, 63, 0.28);
  border-left: 4px solid var(--gold, #a9783f);
  border-radius: 8px;
}

.leader-achievement-header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
  font-family: 'Libre Baskerville', Georgia, serif;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.4px;
  color: var(--gold, #8a6428);
  text-transform: uppercase;
}

/* 
.leader-title {
  font-size: 16px !important;
  color: #ffffffd1 !important;
  font-weight: 800;
} */


.leader-achievement-header i {
  font-size: 14px;
  color: var(--gold, #a9783f);
}

.leader-achievement-intro {
  font-size: 12.5px;
  line-height: 1.6;
  color: #4a3828;
  margin-bottom: 10px;
}

[data-theme="dark"] .leader-achievement-intro {
  color: rgba(232, 220, 200, 0.75) !important;
}

.leader-achievement-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.leader-achievement-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 6px 0;
  border-bottom: 1px dashed rgba(169, 120, 63, 0.18);
  font-size: 12.5px;
}

.leader-achievement-list li:last-child {
  border-bottom: none;
}

.achievement-acreage {
  font-family: 'Libre Baskerville', Georgia, serif;
  font-weight: 700;
  font-size: 15px;
  color: var(--gold, #8a6428);
  min-width: 60px;
  flex-shrink: 0;
}

.achievement-client {
  flex: 1;
  font-weight: 600;
  color: #32180b;
}

[data-theme="dark"] .achievement-client {
  color: #e8dcc8 !important;
}

.achievement-year {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: rgba(100, 70, 30, 0.65);
  background: rgba(169, 120, 63, 0.10);
  border-radius: 4px;
  padding: 2px 7px;
}

[data-theme="dark"] .achievement-year {
  color: rgba(232, 220, 200, 0.55) !important;
  background: rgba(169, 120, 63, 0.15) !important;
}

/* ================================================================
   BIO MODAL — R.L. Narayanan's write-up popup
   ================================================================ */
.bio-modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 99990;
  background: rgba(10, 5, 0, 0.72);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  animation: bioOverlayIn 0.25s ease forwards;
}

.bio-modal-overlay[hidden] {
  display: none !important;
}

@keyframes bioOverlayIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.bio-modal-box {
  position: relative;
  background: #fffdf8;
  border-radius: 12px;
  max-width: 680px;
  width: 100%;
  max-height: 88vh;
  overflow-y: auto;
  box-shadow: 0 24px 80px rgba(50, 24, 11, 0.35), 0 2px 0 rgba(169, 120, 63, 0.25) inset;
  border: 1px solid rgba(169, 120, 63, 0.20);
  animation: bioBoxIn 0.3s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
  /* Custom thin scrollbar — light mode */
  scrollbar-width: thin;
  scrollbar-color: rgba(169, 120, 63, 0.45) rgba(169, 120, 63, 0.08);
}

/* WebKit thin scrollbar — light mode */
.bio-modal-box::-webkit-scrollbar {
  width: 5px;
}

.bio-modal-box::-webkit-scrollbar-track {
  background: rgba(169, 120, 63, 0.08);
  border-radius: 0 12px 12px 0;
}

.bio-modal-box::-webkit-scrollbar-thumb {
  background: rgba(169, 120, 63, 0.45);
  border-radius: 3px;
}

.bio-modal-box::-webkit-scrollbar-thumb:hover {
  background: rgba(169, 120, 63, 0.70);
}

@keyframes bioBoxIn {
  from {
    opacity: 0;
    transform: scale(0.92) translateY(20px);
  }

  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

[data-theme="dark"] .bio-modal-box {
  background: #1e1510 !important;
  border-color: rgba(169, 120, 63, 0.25) !important;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.65) !important;
  /* Custom thin scrollbar — dark mode */
  scrollbar-color: rgba(169, 120, 63, 0.55) rgba(255, 255, 255, 0.05) !important;
}

[data-theme="dark"] .bio-modal-box::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.04);
}

[data-theme="dark"] .bio-modal-box::-webkit-scrollbar-thumb {
  background: rgba(169, 120, 63, 0.55);
}

[data-theme="dark"] .bio-modal-box::-webkit-scrollbar-thumb:hover {
  background: rgba(169, 120, 63, 0.80);
}

.bio-modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(169, 120, 63, 0.30);
  background: transparent;
  color: #32180b;
  font-size: 16px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease, color 0.2s ease;
  z-index: 1;
}

.bio-modal-close:hover {
  background: var(--gold, #a9783f);
  color: #fff;
  border-color: transparent;
}

[data-theme="dark"] .bio-modal-close {
  color: #e8dcc8 !important;
}

.bio-modal-header {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 28px 28px 20px;
  border-bottom: 1px solid rgba(169, 120, 63, 0.15);
}

.bio-modal-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(169, 120, 63, 0.18), rgba(169, 120, 63, 0.06));
  border: 1px solid rgba(169, 120, 63, 0.28);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: var(--gold, #a9783f);
  flex-shrink: 0;
}

.bio-modal-header h2 {
  font-family: 'Libre Baskerville', Georgia, serif;
  font-size: 19px;
  font-weight: 700;
  color: #1e140f;
  margin: 0 0 5px;
  line-height: 1.3;
}

[data-theme="dark"] .bio-modal-header h2 {
  color: #ffffff !important;
}

.bio-modal-byline {
  font-size: 12.5px;
  color: rgba(80, 50, 20, 0.65);
  margin: 0;
  font-style: italic;
  letter-spacing: 0.2px;
}

[data-theme="dark"] .bio-modal-byline {
  color: rgba(220, 200, 160, 0.55) !important;
}

.bio-modal-body {
  padding: 24px 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.bio-modal-body p {
  font-size: 14.5px;
  line-height: 1.78;
  color: #3a2818;
  margin: 0;
}

[data-theme="dark"] .bio-modal-body p {
  color: #f0f0f0 !important;
}

.bio-modal-wish {
  font-style: italic;
  color: #6a4820 !important;
  font-size: 14px !important;
}

[data-theme="dark"] .bio-modal-wish {
  color: rgba(220, 200, 160, 0.80) !important;
}

.bio-modal-footer {
  padding: 16px 28px 24px;
  border-top: 1px solid rgba(169, 120, 63, 0.15);
}

.bio-modal-signature {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
}

.bio-modal-signature-wrapper-mobile {
  position: relative;
  display: flex;
  align-items: center;
  height: 48px;
  margin-top: 4px;
  margin-bottom: 2px;
}

.bio-modal-signature-light-mobile {
  display: none;
  height: 100%;
  max-width: 150px;
  object-fit: contain;
}

.bio-modal-signature-dark-mobile {
  display: block;
  height: 100%;
  max-width: 150px;
  object-fit: contain;
}

[data-theme="dark"] .bio-modal-signature-light-mobile {
  display: block;
}

[data-theme="dark"] .bio-modal-signature-dark-mobile {
  display: none;
}

.bio-modal-sig-line {
  width: 80px;
  height: 2px;
  background: var(--gold, #a9783f);
  margin-bottom: 4px;
  border-radius: 1px;
}

.bio-modal-signature strong {
  font-family: 'Libre Baskerville', Georgia, serif;
  font-size: 13px;
  letter-spacing: 1px;
  color: #32180b;
}

[data-theme="dark"] .bio-modal-signature strong {
  color: #e8dcc8 !important;
}

.bio-modal-signature span {
  font-size: 12px;
  color: rgba(80, 50, 20, 0.55);
  font-style: italic;
}

[data-theme="dark"] .bio-modal-signature span {
  color: rgba(200, 170, 110, 0.50) !important;
}

@media (max-width: 600px) {
  .bio-modal-box {
    border-radius: 10px;
    max-height: 90vh;
  }

  .bio-modal-header {
    padding: 20px 18px 16px;
    gap: 12px;
  }

  .bio-modal-body {
    padding: 18px 18px;
  }

  .bio-modal-footer {
    padding: 14px 18px 20px;
  }

  .bio-modal-header h2 {
    font-size: 16px;
  }

  .bio-modal-body p {
    font-size: 13.5px;
  }
}

/* ================================================================
   GLOBAL LAYOUT STANDARDIZATION & ALIGNMENT OVERRIDES
   ================================================================ */

/* ── 1. Global Container Spacing & Alignment (Desktop: > 1200px) ── */
.hero-content,
.about-container,
.leadership-container,
.scope-container,
.clients-container,
.testimonials-container,
.footer-info-inner {
  max-width: 1280px !important;
  width: 100% !important;
  margin-left: auto !important;
  margin-right: auto !important;
  box-sizing: border-box !important;
  padding-top: 0 !important;
  padding-bottom: 0 !important;
  padding-left: 64px !important;
  padding-right: 64px !important;
  padding-inline: 64px !important;
}

.footer-cta-inner {
  max-width: 1280px !important;
  width: 100% !important;
  margin-left: auto !important;
  margin-right: auto !important;
  box-sizing: border-box !important;
  padding-top: 52px !important;
  padding-bottom: 52px !important;
  padding-left: 64px !important;
  padding-right: 64px !important;
  padding-inline: 64px !important;
}

/* ── 2. Laptop Container Spacing (901px to 1200px) ── */
@media (max-width: 1200px) and (min-width: 901px) {

  .hero-content,
  .about-container,
  .leadership-container,
  .scope-container,
  .clients-container,
  .testimonials-container,
  .footer-info-inner {
    padding-left: 48px !important;
    padding-right: 48px !important;
    padding-inline: 48px !important;
  }

  .footer-cta-inner {
    padding: 52px 48px !important;
  }
}

/* ── 3. Tablet Container Spacing (601px to 900px - e.g. iPad Mini) ── */
@media (max-width: 900px) and (min-width: 601px) {

  .hero-content,
  .about-container,
  .leadership-container,
  .scope-container,
  .clients-container,
  .testimonials-container,
  .footer-info-inner {
    padding-left: 32px !important;
    padding-right: 32px !important;
    padding-inline: 32px !important;
  }

  .footer-cta-inner {
    padding: 40px 32px !important;
  }
}

/* ── 4. Mobile Container Spacing (<= 600px) ── */
@media (max-width: 600px) {

  .hero-content,
  .about-container,
  .leadership-container,
  .scope-container,
  .clients-container,
  .testimonials-container,
  .footer-info-inner {
    padding-left: 20px !important;
    padding-right: 20px !important;
    padding-inline: 20px !important;
  }

  .footer-cta-inner {
    padding: 36px 20px !important;
  }
}

/* ── 5. Standardized Section Vertical Spacing ── */
.about,
.leadership,
.scope,
.client-references,
.testimonials {
  padding-top: 90px !important;
  padding-bottom: 90px !important;
}

@media (max-width: 900px) {

  .about,
  .leadership,
  .scope,
  .client-references,
  .testimonials {
    padding-top: 64px !important;
    padding-bottom: 64px !important;
  }
}

@media (max-width: 600px) {

  .about,
  .leadership,
  .scope,
  .client-references,
  .testimonials {
    padding-top: 48px !important;
    padding-bottom: 48px !important;
  }
}

/* ── 6. Mobile & Tablet Spacing Centering Overrides ── */
@media (max-width: 900px) {

  /* Center heading blocks */
  .scope-heading,
  .clients-heading,
  .leadership-heading,
  .testimonials-header,
  .contact-header,
  .about-content {
    max-width: 720px !important;
    margin-left: auto !important;
    margin-right: auto !important;
    text-align: center !important;
  }

  /* Center the label elements */
  .scope-heading .section-label,
  .clients-heading .section-label,
  .leadership-heading .section-label,
  .testimonials-header .section-label,
  .contact-header .section-label,
  .about-content .section-label {
    justify-content: center !important;
  }

  /* Center short gold divider lines */
  .scope-title-line,
  .clients-title-line,
  .about-small-line {
    margin-left: auto !important;
    margin-right: auto !important;
  }

  /* Center description paragraphs and make them look consistent */
  .scope-heading>p,
  .clients-heading>p,
  .leadership-heading>p,
  .testimonials-intro,
  .contact-header>p,
  .about-intro,
  .about-description {
    text-align: center !important;
    margin-left: auto !important;
    margin-right: auto !important;
    max-width: 600px !important;
  }



  /* Stack layouts correctly on tablet */
  .about-container {
    display: flex !important;
    flex-direction: column !important;
    gap: 36px !important;
  }

  .about-content {
    width: 100% !important;
    padding-right: 0 !important;
  }
}

/* ── 7. Authoritative Mobile Menu Visibility & Collapse Fixes ── */
@media (max-width: 900px) {
  .menu-container-mobile {
    display: block !important;
    position: absolute !important;
    top: 100% !important;
    left: 0 !important;
    width: 100% !important;
    background: #faf5ed !important;
    border-bottom: 2px solid var(--gold) !important;
    box-shadow: 0 10px 30px rgba(50, 30, 20, 0.15) !important;
    z-index: 99999 !important;
    max-height: 0 !important;
    opacity: 0 !important;
    overflow: hidden !important;
    visibility: hidden !important;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s ease, visibility 0.3s !important;
  }

  [data-theme="dark"] .menu-container-mobile {
    background: #251208 !important;
    border-bottom-color: var(--gold) !important;
  }

  .menu-container-mobile.open-mobile {
    max-height: 85vh !important;
    opacity: 1 !important;
    visibility: visible !important;
    overflow-y: auto !important;
  }

  /* Fade-in and slide mobile menu links */
  .menu-container-mobile.open-mobile .nav-item-mobile {
    opacity: 1 !important;
    transform: translateY(0) !important;
  }

  /* Prevent mobile nav wrapper .nav-mobile from collapsing */
  .nav-mobile {
    display: block !important;
    max-height: none !important;
    opacity: 1 !important;
    visibility: visible !important;
    overflow: visible !important;
    width: 100% !important;
  }
}

/* ── 8. Hero Spacing, Spacing Rhythm & Advocate Image Overrides ── */

/* Desktop Hero height, top space below navbar, and image framing */
.hero {
  height: auto !important;
  min-height: 700px !important;
  background-position: right top !important;
}

.hero-content {
  padding-top: 80px !important;
  /* space below navbar */
  padding-bottom: 106px !important;
  /* CTA button sits exactly 60px above bottom curve */
  height: auto !important;
}

/* Precise spacing vertical rhythm for Hero elements */
.hero h1 {
  margin: 0 0 0 !important;
}

.ornament {
  margin: 10px 0 22px !important;
  /* 10px + 22px = 32px gap from heading to description */
}

.hero-description {
  margin-top: 0 !important;
  margin-bottom: 32px !important;
  /* 32px gap to tagline */
}

.hero-tagline {
  margin-top: 0 !important;
  margin-bottom: 40px !important;
  /* 40px gap to CTA button */
}

.hero-buttons {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}

/* Mobile Hero adjustments */
@media (max-width: 600px) {
  .hero {
    min-height: auto !important;
  }

  .hero-content {
    padding-top: 60px !important;
    padding-bottom: 106px !important;
  }

  /* Prevent forehead cropping on mobile image */
  .hero-copy::before {
    background-position: center top !important;
  }

  /* Center spacing elements on mobile */
  .ornament {
    margin: 10px auto 22px !important;
  }
}

/* ── 9. Mentor Biography Signature Size Increase ── */
.bio-modal-signature-wrapper-mobile {
  height: 60px !important;
  /* increased from 48px */
}

.bio-modal-signature-light-mobile,
.bio-modal-signature-dark-mobile {
  max-width: 180px !important;
  /* increased from 150px */
}

/* ── 10. Contact Details +1px Font Size Overrides ── */
.footer-cta-call span strong {
  font-size: 13px !important;
  /* increased by 1px from 12px */
}

.footer-touch-item strong {
  font-size: 14.5px !important;
  /* increased by 1px from 13.5px */
}

/* ===================================================
   UNIFIED RESPONSIVE SECTION PADDING CONSOLIDATION
   =================================================== */

/* Tablet breakpoint (max-width: 900px) � 70px top/bottom padding */
@media (max-width: 900px) {

  .about-container,
  .leadership-container,
  .scope-container,
  .clients-container,
  .testimonials-container,
  .contact-container {
    padding: 70px 40px 70px !important;
  }

  .leader-identity {
    padding-left: 10px !important;
    padding-right: 30px !important;
  }

  .leader-identity h3 {
    font-size: 9.5px !important;
    letter-spacing: 0.3px !important;
    white-space: nowrap !important;
  }
}

/* Mobile breakpoint (max-width: 600px) � 60px top/bottom padding */
@media (max-width: 600px) {

  .about-container,
  .leadership-container,
  .scope-container,
  .clients-container,
  .testimonials-container,
  .contact-container {
    padding: 60px 24px 60px !important;
  }

  .leader-identity {
    padding-left: 10px !important;
    padding-right: 30px !important;
  }

  .leader-identity h3 {
    font-size: 9.5px !important;
    letter-spacing: 0.3px !important;
    white-space: nowrap !important;
  }
}

/* ── 11. Heading Underlines Diamond Divider Standardization ── */

.about-title-decoration,
.scope-title-decoration {
  display: flex;
  align-items: center;
  margin: 23px 0;
}

.about-title-decoration span,
.scope-title-decoration span {
  width: 80px;
  height: 1px;
  background: rgba(189, 135, 48, 0.65);
}

.about-title-decoration i,
.scope-title-decoration i {
  width: 8px;
  height: 8px;
  border: 1px solid var(--gold);
  transform: rotate(45deg);
}

/* Tablet & Mobile Centering Overrides for Heading Underlines */
@media (max-width: 900px) {

  .about-title-decoration,
  .scope-title-decoration,
  .clients-title-decoration {
    justify-content: center !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }
}

/* ── 12. Standardize Section Label top lines to match Client References ── */

.section-label {
  display: flex !important;
  align-items: center !important;
  gap: 15px !important;
  /* same gap as .clients-label */
  margin-bottom: 17px !important;
  /* same vertical spacing as .clients-label */
}

.section-label span {
  display: block !important;
  width: 30px !important;
  /* same width as .clients-label span */
  height: 1px !important;
  /* same height/thickness */
  background: var(--gold) !important;
  /* same color */
}

.section-label p {
  color: var(--gold) !important;
  font-size: 15px !important;
  /* keep original section label typography as requested */
  font-weight: 600 !important;
  letter-spacing: 0.4px !important;
  margin: 0 !important;
  text-transform: uppercase !important;
  white-space: nowrap !important;
}

/* Remove leaf background-image icon graphic on hover for about-quote */
.about-quote:hover {
  background-image: linear-gradient(145deg, #32190d, #1e1009) !important;
}

/* Note inside secondary leader card under qualifications */
.secondary-qualification .secondary-note {
  font-family: inherit !important;
  font-size: 13.5px !important;
  line-height: 1.6 !important;
  color: #2d2723 !important;
  margin-top: 15px !important;
}

[data-theme="dark"] .secondary-qualification .secondary-note {
  color: var(--text-muted) !important;
}

/* Center dividing line in Client References, keep original alignments (Desktop only) */
@media (min-width: 901px) {
  .clients-intro {
    grid-template-columns: 1fr 1fr !important;
  }

  .clients-heading {
    padding-left: 0 !important;
    padding-right: 40px !important;
    text-align: left !important;
    display: block !important;
  }

  .clients-label {
    justify-content: flex-start !important;
  }

  .clients-title-decoration {
    justify-content: flex-start !important;
    margin: 23px 0 !important;
  }

  .clients-description {
    margin-left: 0 !important;
    margin-right: 0 !important;
    text-align: left !important;
  }

  .clients-trust {
    padding-left: 40px !important;
    padding-right: 0 !important;
  }
}