/* ==========================================================================
   SMP Buildcrete — Main Stylesheet
   Brand Colours: Charcoal #1a1a1a, Orange #e87a1e, White #ffffff
   ========================================================================== */

/* ---------- CSS Variables ---------- */
:root {
  /* Brand palette */
  --color-primary: #FF7202;
  --color-primary-dark: #c96510;
  --color-primary-light: #f5a54a;
  --color-dark: #1a1a1a;
  --color-dark-alt: #2a2a2a;
  --color-grey-900: #333333;
  --color-grey-700: #555555;
  --color-grey-500: #888888;
  --color-grey-300: #cccccc;
  --color-grey-100: #f4f4f4;
  --color-grey-050: #f8f8f8;
  --color-white: #ffffff;
  --color-success: #2ecc71;
  --color-error: #e74c3c;

  /* Typography */
  --font-heading: 'Inter', 'Arial Narrow', sans-serif;
  --font-body: 'Inter', 'Helvetica Neue', Arial, sans-serif;
  --font-accent: 'Inter', sans-serif;

  /* Spacing */
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 2rem;
  --space-lg: 4rem;
  --space-xl: 6rem;
  --space-2xl: 8rem;

  /* Layout */
  --container-width: 1200px;
  --container-narrow: 800px;
  --header-utility-height: 40px;
  --header-nav-height: 70px;
  --header-height: 110px;

  /* Borders & Radius */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-pill: 100px;

  /* Shadows */
  --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.1);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.15);
  --shadow-lg: 0 8px 30px rgba(0, 0, 0, 0.2);
  --shadow-glow: 0 0 20px rgba(232, 122, 30, 0.3);

  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-base: 0.3s ease;
  --transition-slow: 0.5s ease;
}

/* ---------- Reset & Base ---------- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.7;
  color: var(--color-grey-900);
  background-color: var(--color-white);
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--color-primary);
  text-decoration: none;
  transition: color var(--transition-fast);
}

a:hover {
  color: var(--color-primary-dark);
}

/* ---------- Typography ---------- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  color: var(--color-dark);
  letter-spacing: 0.02em;
}

h1 { font-size: clamp(2rem, 5vw, 3.5rem); margin-bottom: var(--space-md); }
h2 { font-size: clamp(1.75rem, 4vw, 2.75rem); margin-bottom: var(--space-sm); }
h3 { font-size: clamp(1.25rem, 3vw, 1.75rem); margin-bottom: var(--space-sm); }
h4 { font-size: 1.25rem; margin-bottom: var(--space-xs); }
h5 { font-size: 1.1rem; margin-bottom: var(--space-xs); }

p {
  margin-bottom: var(--space-sm);
  color: var(--color-grey-700);
}

/* ---------- Layout ---------- */
.container {
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 var(--space-md);
}

.container--narrow {
  max-width: var(--container-narrow);
}

.section {
  padding: var(--space-xl) 0;
}

.section--dark {
  background-color: var(--color-dark);
  color: var(--color-white);
}

.section--dark h2,
.section--dark h3,
.section--dark h4 {
  color: var(--color-white);
}

.section--dark p {
  color: var(--color-grey-300);
}

.section--grey {
  background-color: var(--color-grey-100);
}

.section__header {
  text-align: center;
  margin-bottom: var(--space-lg);
}

.section__subtitle {
  font-family: var(--font-accent);
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--color-primary);
  margin-bottom: var(--space-xs);
  display: block;
}

/* ---------- Header ---------- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
}

.site-header.scrolled .header-nav {
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.10);
}

/* ---- Top Utility Bar ---- */
.header-utility {
  height: var(--header-utility-height);
  background-color: #f5f5f5;
  border-bottom: 1px solid var(--color-grey-300);
  display: flex;
  align-items: center;
}

.header-utility .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header-utility__tagline {
  font-size: 0.75rem;
  font-weight: 400;
  color: var(--color-grey-700);
  margin: 0;
  line-height: 1;
}

.header-utility__right {
  display: flex;
  align-items: center;
  gap: 0.875rem;
}

.header-utility__link {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.75rem;
  color: var(--color-grey-700);
  font-weight: 400;
  transition: color var(--transition-fast);
}

.header-utility__link:hover {
  color: var(--color-primary);
}

.header-utility__link svg {
  width: 13px;
  height: 13px;
  fill: var(--color-grey-700);
  flex-shrink: 0;
}

.header-utility__social {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background-color var(--transition-fast);
}

.header-utility__social svg {
  width: 24px;
  height: 24px;
}

/* ---- Main Nav Bar ---- */
.header-nav {
  background-color: var(--color-white);
  height: var(--header-nav-height);
  border-bottom: 1px solid var(--color-grey-300);
  transition: box-shadow var(--transition-base);
}

.header-nav .container {
  display: flex;
  align-items: center;
  height: 100%;
  gap: var(--space-sm);
}

.site-logo {
  flex-shrink: 0;
  margin-right: var(--space-sm);
}

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

/* Navigation */
.nav-primary {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.nav-primary__list {
  display: flex;
  list-style: none;
  gap: 2rem;
  align-items: center;
}

.nav-primary__list a {
  display: block;
  padding: 0 0;
  color: var(--color-grey-900);
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
  transition: color var(--transition-fast);
  position: relative;
  white-space: nowrap;
}

.nav-primary__list a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0.875rem;
  right: 0.875rem;
  height: 2px;
  background-color: var(--color-primary);
  transform: scaleX(0);
  transition: transform var(--transition-base);
}

.nav-primary__list a:hover,
.nav-primary__list .current-menu-item > a,
.nav-primary__list .current-menu-ancestor > a {
  color: var(--color-primary);
}

.nav-primary__list .current-menu-item > a,
.nav-primary__list .current-menu-ancestor > a {
  font-weight: 700;
}

.nav-primary__list a:hover::after {
  transform: scaleX(1);
}

/* Dropdown caret for parent menu items */
.nav-primary__list .menu-item-has-children > a {
  padding-right: 1.25rem;
}

.nav-primary__list .menu-item-has-children > a::before {
  content: '▾';
  position: absolute;
  right: 0.25rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 0.65rem;
  line-height: 1;
  color: var(--color-grey-500);
}

/* Dropdown sub-menu */
.nav-primary__list .sub-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 220px;
  background-color: var(--color-white);
  border-top: 2px solid var(--color-primary);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  padding: 0.5rem 0;
  z-index: 100;
  list-style: none;
}

.nav-primary__list .menu-item-has-children {
  position: relative;
}

.nav-primary__list .menu-item-has-children:hover > .sub-menu {
  display: block;
}

.nav-primary__list .sub-menu li {
  padding: 0;
}

.nav-primary__list .sub-menu a {
  display: block;
  padding: 0.5rem 1.25rem;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--color-grey-900);
  white-space: nowrap;
}

.nav-primary__list .sub-menu a::after {
  display: none;
}

.nav-primary__list .sub-menu a:hover {
  background-color: rgba(255, 114, 2, 0.08);
  color: var(--color-primary);
}

/* ---- Header CTA (Call button) ---- */
.header-cta {
  flex-shrink: 0;
  margin-left: auto;
}

.header-cta__btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border-radius: 100px;
  white-space: nowrap;
}

.header-cta__icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

/* Mobile menu toggle */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  flex-shrink: 0;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--color-dark);
  margin: 5px 0;
  transition: var(--transition-base);
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 2rem;
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  border: 2px solid transparent;
  border-radius: var(--radius-pill);
  cursor: pointer;
  transition: all var(--transition-base);
  text-decoration: none;
  line-height: 1;
}

.btn--primary {
  background-color: var(--color-primary);
  color: var(--color-white);
  border-color: var(--color-primary);
}

.btn--primary:hover {
  background-color: var(--color-primary-dark);
  border-color: var(--color-primary-dark);
  color: var(--color-white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-glow);
}

.btn--outline {
  background-color: transparent;
  color: var(--color-white);
  border-color: var(--color-white);
}

.btn--outline:hover {
  background-color: var(--color-white);
  color: var(--color-dark);
}

.btn--dark {
  background-color: var(--color-dark);
  color: var(--color-white);
  border-color: var(--color-dark);
}

.btn--dark:hover {
  background-color: var(--color-grey-900);
  transform: translateY(-2px);
  color: var(--color-white);
}

.btn--lg {
  padding: 1.125rem 2.5rem;
  font-size: 1.05rem;
}

.btn--sm {
  padding: 0.625rem 1.25rem;
  font-size: 0.8rem;
}

.btn--compact {
  padding: 0.625rem 1.375rem;
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: none;
  letter-spacing: 0.01em;
  white-space: nowrap;
}

/* ---------- Hero (Variation 3: Personalised + Exposed Aggregate) ---------- */
.hero {
  position: relative;
  height: 600px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  padding-top: var(--header-height);
  background-color: var(--color-dark);
}

/* Exposed aggregate background image */
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Dark gradient overlay — covers bg image area only, not the orange panel */
.hero__overlay {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 33%;
  background: linear-gradient(
    to right,
    rgba(0, 0, 0, 0.3) 0%,
    rgba(0, 0, 0, 0.025) 100%
  );
  z-index: 2;
}

/* Solid orange right panel */
.hero__panel {
  position: absolute;
  top: 0;
  right: 0;
  width: 25%;
  height: 100%;
  background-color: #FF7202;
  z-index: 2;
}

/* Person cut-out image — sits within the right orange panel */
.hero__person {
  position: absolute;
  bottom: 0;
  left: calc(75% - 224px);
  z-index: 4;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  width: 449px;
  height: 85%;
}

.hero__person img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: bottom center;
}

/* Container */
.hero .container {
  position: relative;
  z-index: 5;
  flex: 1;
  display: flex;
  flex-direction: column;
  padding-top: var(--space-md);
  padding-bottom: var(--space-md);
}


/* BPC badge shown on the right when panel and person are both hidden */
.hero__bpc-aside {
  margin-left: auto;
  padding-top: var(--space-xl);
  flex-shrink: 0;
  align-self: flex-start;
}

/* Badge pill — small label above the heading */
.hero__badge {
  display: inline-block;
  align-self: flex-start;
  padding: 0.4rem 0.875rem;
  background-color: rgba(255, 255, 255, 0.8);
  border-radius: 4px;
  color: #000000;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 100%;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.01em;
}

.hero__title {
  color: var(--color-white);
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 900;
  line-height: 1.15;
  margin-bottom: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.hero__title span {
  color: var(--color-primary);
}

.hero__text {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.5;
  margin-bottom: 0;
  width: 75%;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.hero__actions {
  display: flex;
  gap: var(--space-sm);
  flex-wrap: wrap;
  align-self: flex-start;
  margin-top: 24px;
}

.hero__actions .btn {
  text-transform: none;
  letter-spacing: 0;
  font-size: 0.85rem;
  padding: 16px 32px;
  border-radius: 100px;
  background-color: #FF7202;
  border-color: #FF7202;
  color: #FFFFFF;
}

/* Inner wrapper */
.hero__inner {
  display: flex;
  align-items: flex-start;
  flex: 1;
}

/* ---- BPC Registered Building Practitioner Badge ---- */
/* Self-contained Figma SVG export — no sub-element styling needed */
.bpc-badge {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
}

.bpc-badge svg {
  display: block;
  height: 32px;
  width: 247px;
}


/* ---- Hero Testimonial Card ---- */
.hero .testimonial-card {
  position: absolute;
  bottom: var(--space-lg);
  left: 56%;
  z-index: 6;
  width: 420px;
}

/* ---------- Service Cards ---------- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: var(--space-md);
}

.services-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-xxl);
}

.services-list__item {
  padding-bottom: var(--space-xxl);
  border-bottom: 1px solid var(--color-grey-200);
}

.services-list__item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.services-list__service {
  margin-bottom: var(--space-sm);
}

.services-list__title {
  font-size: 1.75rem;
  margin-bottom: var(--space-xs);
}

.services-list__title a {
  color: var(--color-primary);
  text-decoration: none;
}

.services-list__title a:hover {
  color: var(--color-primary-dark);
}

.services-list__desc {
  color: var(--color-grey-600);
  max-width: 640px;
  margin-bottom: var(--space-sm);
}

.service-card {
  position: relative;
  background-color: var(--color-white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.service-card__image {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.service-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.service-card:hover .service-card__image img {
  transform: scale(1.06);
}

.service-card__image::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 60%;
  background: linear-gradient(to top, rgba(26, 26, 26, 0.7), transparent);
}

.service-card__icon {
  position: absolute;
  top: var(--space-sm);
  right: var(--space-sm);
  width: 48px;
  height: 48px;
  background-color: var(--color-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

.service-card__icon svg {
  width: 24px;
  height: 24px;
  fill: var(--color-white);
}

.service-card__body {
  padding: var(--space-md);
}

.service-card__title {
  font-size: 1.25rem;
  margin-bottom: var(--space-xs);
}

.service-card__title a {
  color: var(--color-dark);
  transition: color var(--transition-fast);
}

.service-card__title a:hover {
  color: var(--color-primary);
}

.service-card__excerpt {
  font-size: 0.9rem;
  color: var(--color-grey-700);
  margin-bottom: var(--space-sm);
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.service-card__link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--color-primary);
}

.service-card__link svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
  transition: transform var(--transition-fast);
}

.service-card__link:hover svg {
  transform: translateX(4px);
}

/* ---------- Services Summary (Homepage) ---------- */
.services-summary {
  padding: var(--space-lg) 0;
}

.services-summary__row {
  display: grid;
  gap: var(--space-sm);
}

.services-summary__row--2 {
  grid-template-columns: 1fr 1fr;
  margin-bottom: var(--space-sm);
}

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

.services-summary__card {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 296px;
  border-radius: var(--radius-md);
  overflow: hidden;
  text-decoration: none;
  color: var(--color-white);
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.20) 0%, rgba(0, 0, 0, 0.05) 50%, rgba(0, 0, 0, 0.20) 100%),
              linear-gradient(135deg, #999 0%, #ccc 100%);
  transition: box-shadow var(--transition-base);
}

.services-summary__card:hover {
  box-shadow: var(--shadow-lg);
}

.services-summary__content {
  padding: 96px 24px 24px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  flex: 1;
  justify-content: flex-end;
}

.services-summary__title {
  font-size: 1.75rem;
  color: var(--color-white);
  margin-bottom: 0;
}

.services-summary__desc {
  font-size: 0.9rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.5;
  margin-bottom: var(--space-sm);
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.services-summary__btn {
  align-self: flex-start;
}

@media (max-width: 1024px) {
  .services-summary__row--3 {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .services-summary__row--2,
  .services-summary__row--3 {
    grid-template-columns: 1fr;
  }

  .services-summary__card {
    min-height: 260px;
  }
}

/* ---------- Section Border ---------- */
.section-border__line {
  border: none;
  border-top: 1px solid #D9D9D9;
  margin: 0;
}

/* ---------- Experience Section (Homepage) ---------- */
.experience {
  padding: var(--space-xl) 0;
}

.experience__grid {
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: 48px;
  align-items: stretch;
}

.experience__image-col {
  position: relative;
}

.experience__img {
  width: 100%;
  height: 100%;
  display: block;
  border-radius: var(--radius-md);
  object-fit: cover;
}

.experience__content {
  display: flex;
  flex-direction: column;
}

.experience__badge {
  position: absolute;
  bottom: var(--space-md);
  left: var(--space-md);
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  background-color: var(--color-white);
  padding: var(--space-sm) var(--space-md);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-sm);
}

.experience__badge strong {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  line-height: 1;
  color: var(--color-dark);
}

.experience__badge span {
  font-size: 0.85rem;
  line-height: 1.3;
  color: var(--color-grey-700);
  border-left: 2px solid var(--color-grey-300);
  padding-left: var(--space-sm);
}

.experience__heading {
  font-size: 2.25rem;
  margin-bottom: var(--space-sm);
}

.experience__intro {
  font-size: 0.95rem;
  font-weight: 400;
  color: var(--color-grey-700);
  line-height: 1.6;
  margin-bottom: var(--space-md);
}

.experience__divider {
  border: none;
  border-top: 1px solid var(--color-grey-300);
  margin: 0 0 var(--space-md);
}

.experience__columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-md);
  margin-bottom: var(--space-md);
  flex: 1;
}

.experience__col-title {
  font-size: 1.25rem;
  margin-bottom: var(--space-xs);
}

.experience__col p {
  font-size: 0.9rem;
  color: var(--color-grey-700);
  line-height: 1.6;
  margin-bottom: var(--space-sm);
}

.experience__col p:last-child {
  margin-bottom: 0;
}

.experience__cta {
  margin-top: auto;
  align-self: flex-start;
}

@media (max-width: 1024px) {
  .experience__columns {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .experience__grid {
    grid-template-columns: 1fr;
    gap: var(--space-md);
  }

  .experience__image-col {
    height: auto;
  }

  .experience__img {
    width: 100%;
    height: auto;
  }

  .experience__heading {
    font-size: 1.75rem;
  }
}

/* ---------- Why Us ---------- */
.why-us {
  padding: var(--space-xl) 0;
}

.why-us__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.why-us__heading {
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  margin-bottom: var(--space-sm);
}

.why-us__intro {
  font-size: 0.95rem;
  color: var(--color-grey-700);
  line-height: 1.6;
  margin-bottom: var(--space-md);
}

.why-us__list {
  list-style: disc;
  padding-left: 1.25rem;
  margin-bottom: var(--space-lg);
}

.why-us__list li {
  font-size: 0.95rem;
  color: var(--color-dark);
  line-height: 1.6;
  margin-bottom: var(--space-sm);
}

.why-us__list li:last-child {
  margin-bottom: 0;
}

.why-us__badge {
  display: block;
  height: auto;
  max-width: 315px;
}

.why-us__image {
  border-radius: var(--radius-md);
  overflow: hidden;
}

.why-us__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.why-us__img-placeholder {
  width: 100%;
  aspect-ratio: 6 / 5;
  background-color: var(--color-grey-100);
  border-radius: var(--radius-md);
}

@media (max-width: 768px) {
  .why-us__grid {
    grid-template-columns: 1fr;
    gap: var(--space-md);
  }
}

/* ---------- About Section ---------- */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-lg);
  align-items: center;
}

.about__image {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
}

.about__image::after {
  content: '';
  position: absolute;
  bottom: -10px;
  right: -10px;
  width: 60%;
  height: 60%;
  border: 3px solid var(--color-primary);
  border-radius: var(--radius-md);
  z-index: -1;
}

.about__experience {
  position: absolute;
  bottom: var(--space-md);
  left: var(--space-md);
  background-color: var(--color-primary);
  color: var(--color-white);
  padding: var(--space-sm) var(--space-md);
  border-radius: var(--radius-sm);
}

.about__experience strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 2.5rem;
  line-height: 1;
}

.about__experience span {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.about__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background-color: var(--color-grey-100);
  padding: 0.75rem 1.25rem;
  border-radius: var(--radius-sm);
  border-left: 4px solid var(--color-primary);
  margin-top: var(--space-md);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--color-dark);
}

/* ---------- Process Steps ---------- */
.process-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
  counter-reset: step;
}

.process-step {
  text-align: center;
  padding: var(--space-md);
  position: relative;
}

.process-step__number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background-color: var(--color-primary);
  color: var(--color-white);
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 700;
  margin: 0 auto var(--space-sm);
  position: relative;
  z-index: 2;
}

.process-step:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 36px;
  left: calc(50% + 36px);
  width: calc(100% - 72px);
  height: 2px;
  background: repeating-linear-gradient(
    90deg,
    var(--color-primary) 0,
    var(--color-primary) 8px,
    transparent 8px,
    transparent 16px
  );
  z-index: 1;
}

.process-step__title {
  font-size: 1.15rem;
  margin-bottom: var(--space-xs);
}

.process-step__text {
  font-size: 0.9rem;
}

/* ---------- Project Gallery ---------- */
.gallery-filters {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: var(--space-xs);
  margin-bottom: var(--space-md);
}

.gallery-filter {
  background: none;
  border: 2px solid var(--color-grey-300);
  padding: 0.5rem 1.25rem;
  font-family: var(--font-heading);
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  color: var(--color-grey-700);
  cursor: pointer;
  border-radius: var(--radius-sm);
  transition: all var(--transition-fast);
}

.gallery-filter:hover,
.gallery-filter.active {
  background-color: var(--color-primary);
  border-color: var(--color-primary);
  color: var(--color-white);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: var(--space-sm);
}

.gallery-item {
  position: relative;
  aspect-ratio: 4 / 3;
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.gallery-item:hover img {
  transform: scale(1.08);
}

.gallery-item__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26, 26, 26, 0.8), transparent 50%);
  opacity: 0;
  transition: opacity var(--transition-base);
  display: flex;
  align-items: flex-end;
  padding: var(--space-sm);
}

.gallery-item:hover .gallery-item__overlay {
  opacity: 1;
}

.gallery-item__caption {
  color: var(--color-white);
  font-family: var(--font-heading);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* ---------- Testimonial Slider ---------- */
.testimonial-slider {
  position: relative;
  height: 600px;
  overflow: hidden;
  background: var(--color-dark);
  max-width: var(--container-width);
  margin-left: auto;
  margin-right: auto;
}

.testimonial-slider__slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 0.9s ease;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding-top: 8%;
  padding-right: 10%;
}

.testimonial-slider__slide::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 40%, rgba(0, 0, 0, 0.45) 100%);
  pointer-events: none;
}

.testimonial-slider__slide.is-active {
  opacity: 1;
}

/* Card — Frame 37: #FAFAFA bg, 8px padding, 8px gap, vertical */
.testimonial-card {
  position: relative;
  z-index: 1;
  background: rgba(250, 250, 250, 0.80);
  border-radius: var(--radius-md);
  padding: 8px;
  gap: 8px;
  display: flex;
  flex-direction: column;
  margin: 0;
  width: 420px;
  height: 220px;
  max-width: calc(100% - var(--space-md));
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}

/* Header — Frame 32: #EFEFEF bg, fill width, 10px padding, 8px gap */
.testimonial-card__header {
  background: #EFEFEF;
  border-radius: 4px;
  padding: 10px;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
  min-height: 60px;
}

.testimonial-card__avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.testimonial-card__avatar-fallback {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-white);
  flex-shrink: 0;
}

.testimonial-card__identity {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.testimonial-card__name {
  font-family: Inter, sans-serif;
  font-size: 16px;
  font-weight: 600;
  font-style: normal;
  line-height: 1;
  letter-spacing: 0;
  color: #000000;
}

.testimonial-card__stars {
  color: #FFA500;
  font-size: 1.1rem;
  letter-spacing: 0.05em;
  line-height: 1;
}

/* Body — Frame 35/36: 8px padding, 10px gap between text and footer */
.testimonial-card__body {
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 10px;
  padding: 8px;
  overflow: hidden;
}

.testimonial-card__text {
  flex: 1;
}

.testimonial-card__text {
  font-family: Inter, sans-serif;
  font-size: 16px;
  font-weight: 400;
  font-style: normal;
  line-height: 1.4;
  letter-spacing: 0;
  color: #5E5E5E;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Footer — Frame 34: horizontal, space-between for source/date */
.testimonial-card__footer {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 0;
}

.testimonial-card__source {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  font-family: Inter, sans-serif;
  font-size: 12px;
  font-weight: 400;
  font-style: normal;
  line-height: 1;
  letter-spacing: 0;
  color: #000000;
}

.testimonial-card__source svg {
  flex-shrink: 0;
}

.testimonial-card__date {
  font-family: Inter, sans-serif;
  font-size: 12px;
  font-weight: 400;
  font-style: normal;
  line-height: 1;
  letter-spacing: 0;
  color: #888888;
  white-space: nowrap;
  text-align: right;
}

.testimonial-slider__dots {
  position: absolute;
  bottom: var(--space-md);
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.5rem;
  z-index: 2;
}

.testimonial-slider__dot {
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  line-height: 0;
  opacity: 0.55;
  transition: opacity var(--transition-fast);
}

.testimonial-slider__dot:hover,
.testimonial-slider__dot:focus-visible {
  opacity: 0.85;
  outline: none;
}

.testimonial-slider__dot.is-active {
  opacity: 1;
}

.testimonial-slider__dot.is-active svg circle {
  fill: white;
}

/* ---------- Form Base ---------- */
.form-group {
  margin-bottom: var(--space-sm);
}

.form-group label,
.form-group .form-label {
  display: block;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--color-dark);
  margin-bottom: 0.375rem;
}

.form-group label strong,
.form-group .form-label strong {
  font-weight: 700;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--color-dark);
  background-color: var(--color-grey-100, #f5f5f5);
  border: 1px solid var(--color-grey-300);
  border-radius: var(--radius-sm);
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(232, 122, 30, 0.15);
}

.form-group textarea {
  resize: vertical;
  min-height: 100px;
}

.form-group select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23888' fill='none' stroke-width='1.5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}

/* ---------- Footer ---------- */
.site-footer {
  background-color: var(--color-white);
  color: var(--color-grey-700);
  padding-top: var(--space-xl);
  border-top: 1px solid var(--color-grey-200);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.4fr;
  gap: 6rem;
  padding-bottom: var(--space-lg);
  border-bottom: 1px solid var(--color-grey-200);
}

.footer__title {
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: var(--space-sm);
}

.footer__logo img {
  height: 60px;
  width: auto;
  margin-bottom: var(--space-sm);
}

.footer__description {
  font-size: 0.9rem;
  line-height: 1.7;
  color: var(--color-grey-600);
  margin-bottom: var(--space-sm);
}

.footer__nav {
  list-style: none;
}

.footer__nav li {
  margin-bottom: 0.5rem;
}

.footer__nav a {
  color: var(--color-grey-700);
  font-size: 0.9rem;
  transition: color var(--transition-fast);
}

.footer__nav a:hover {
  color: var(--color-primary);
}

.footer__contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  font-size: 0.9rem;
}

.footer__contact-item svg {
  width: 18px;
  height: 18px;
  fill: var(--color-primary);
  flex-shrink: 0;
  margin-top: 2px;
}

.footer__contact-item a {
  color: var(--color-grey-700);
}

.footer__contact-item a:hover {
  color: var(--color-primary);
}

.footer__cta {
  margin-top: var(--space-sm);
}

.footer__latest-work {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
}

.footer__latest-work-item {
  display: block;
  overflow: hidden;
  border-radius: var(--radius-sm);
  aspect-ratio: 4/3;
}

.footer__latest-work-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-base);
}

.footer__latest-work-item:hover img {
  transform: scale(1.05);
}

.footer-bottom {
  padding: var(--space-sm) 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.8rem;
  color: var(--color-grey-500);
}

.footer-bottom a {
  color: var(--color-grey-500);
}

.footer-bottom a:hover {
  color: var(--color-primary);
}

/* ---------- Breadcrumbs ---------- */
/* Rank Math outputs .rank-math-breadcrumb — styled for hero context (white-on-dark) */
.rank-math-breadcrumb {
  font-size: 0.8rem;
  margin-bottom: var(--space-xs, 0.75rem);
}

.rank-math-breadcrumb p {
  margin: 0;
  color: rgba(255, 255, 255, 0.65);
}

.rank-math-breadcrumb a {
  color: rgba(255, 255, 255, 0.65);
  text-decoration: none;
}

.rank-math-breadcrumb a:hover {
  color: var(--color-white);
}

.rank-math-breadcrumb .separator {
  margin: 0 0.4rem;
  color: rgba(255, 255, 255, 0.4);
}

.rank-math-breadcrumb .last {
  color: rgba(255, 255, 255, 0.9);
}

/* ---------- Blog ---------- */
.blog-grid {
  display: grid;
  grid-template-columns: 1fr 350px;
  gap: var(--space-lg);
}

.post-card {
  background-color: var(--color-white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.post-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.post-card__image {
  height: 200px;
  overflow: hidden;
}

.post-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.post-card:hover .post-card__image img {
  transform: scale(1.05);
}

.post-card__body {
  padding: var(--space-sm) var(--space-md);
}

.post-card__date {
  font-family: var(--font-accent);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-primary);
  margin-bottom: var(--space-xs);
}

.post-card__title {
  font-size: 1.1rem;
  margin-bottom: var(--space-xs);
}

.post-card__title a {
  color: var(--color-dark);
}

.post-card__title a:hover {
  color: var(--color-primary);
}

.post-card__excerpt {
  font-size: 0.875rem;
  color: var(--color-grey-700);
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* ---------- Sidebar ---------- */
.sidebar .widget {
  margin-bottom: var(--space-md);
  background-color: var(--color-white);
  border-radius: var(--radius-md);
  padding: var(--space-md);
  box-shadow: var(--shadow-sm);
}

.widget__title {
  font-size: 1rem;
  margin-bottom: var(--space-sm);
  padding-bottom: var(--space-xs);
  border-bottom: 2px solid var(--color-primary);
}

/* ---------- 404 ---------- */
.error-404 {
  text-align: center;
  padding: var(--space-2xl) 0;
}

.error-404__code {
  font-family: var(--font-heading);
  font-size: 8rem;
  font-weight: 900;
  color: var(--color-primary);
  line-height: 1;
  opacity: 0.2;
}

/* ---------- Page Header ---------- */
.page-header {
  background-color: var(--color-dark);
  padding: calc(var(--header-height) + var(--space-lg)) 0 var(--space-lg);
  text-align: center;
}

.page-header h1 {
  color: var(--color-white);
  margin-bottom: var(--space-xs);
}

.page-header p {
  color: var(--color-grey-300);
  max-width: 600px;
  margin: 0 auto;
}

/* ---------- Single Service ---------- */
.service-hero {
  position: relative;
  height: 50vh;
  min-height: 400px;
  display: flex;
  align-items: flex-end;
  padding-bottom: var(--space-lg);
  margin-top: var(--header-height);
}

.service-hero__bg {
  position: absolute;
  inset: 0;
}

.service-hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, var(--color-dark), transparent 70%);
}

.service-hero .container {
  position: relative;
  z-index: 2;
}

.service-content {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: var(--space-lg);
  padding: var(--space-lg) 0;
}

.service-content__main h2 {
  margin-top: var(--space-md);
}

/* ---------- FAQ Section ---------- */
.faq-item {
  border-bottom: 1px solid var(--color-grey-300);
}

.faq-item__question {
  width: 100%;
  padding: var(--space-sm) 0;
  background: none;
  border: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--color-dark);
  cursor: pointer;
  text-align: left;
  transition: color var(--transition-fast);
}

.faq-item__question:hover {
  color: var(--color-primary);
}

.faq-item__question svg {
  width: 20px;
  height: 20px;
  fill: var(--color-primary);
  transition: transform var(--transition-base);
}

.faq-item.active .faq-item__question svg {
  transform: rotate(180deg);
}

.faq-item__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-base);
}

.faq-item__answer p {
  padding-bottom: var(--space-sm);
}

/* ---------- Service Icon Cards (Homepage) ---------- */
.services-icon-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-md);
}


/* ---------- Registered Building Practitioner Section ---------- */
.bp-section {
  /* inherits .section--dark styles */
}

.bp-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-lg);
  align-items: center;
}

.bp-grid__image {
  border-radius: var(--radius-md);
  overflow: hidden;
}

.bp-grid__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.bp-grid__content h2 {
  color: var(--color-white);
}

.bp-grid__content p {
  color: var(--color-grey-300);
}

.bp-list {
  list-style: none;
  margin: var(--space-md) 0 0;
}

.bp-list li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.5rem;
  color: var(--color-grey-300);
  font-size: 0.95rem;
}

.bp-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--color-primary);
}

/* ---------- Restoration Gallery ---------- */
.restoration-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: var(--space-sm);
}

.restoration-grid__item {
  position: relative;
  aspect-ratio: 4 / 3;
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: pointer;
}

.restoration-grid__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
  display: block;
}

.restoration-grid__item:hover img {
  transform: scale(1.06);
}

/* ---------- Privacy Policy ---------- */
.privacy-content {
  max-width: 800px;
  margin: 0 auto;
}

.privacy-content__updated {
  font-size: 0.875rem;
  color: var(--color-grey-500);
  margin-bottom: var(--space-lg);
}

.privacy-content h2 {
  font-size: 1.25rem;
  margin-top: var(--space-lg);
  margin-bottom: var(--space-xs);
}

.privacy-content ul {
  padding-left: 1.5rem;
  margin-bottom: var(--space-sm);
}

.privacy-content ul li {
  margin-bottom: 0.4rem;
}

.privacy-content__contact {
  list-style: none;
  padding-left: 0;
}

/* ---------- Sitemap ---------- */
.sitemap {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-xl) var(--space-2xl);
}

.sitemap__heading {
  font-size: 1.125rem;
  font-family: var(--font-heading);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--color-primary);
  margin-bottom: var(--space-sm);
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--color-primary);
}

.sitemap__list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.sitemap__list li {
  padding: 0.35rem 0;
  border-bottom: 1px solid var(--color-grey-200);
}

.sitemap__list li:last-child {
  border-bottom: none;
}

.sitemap__list a {
  color: var(--color-dark);
  text-decoration: none;
  font-size: 0.95rem;
}

.sitemap__list a:hover {
  color: var(--color-primary);
}

/* ---------- Form Checkboxes ---------- */
.form-checkboxes {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem 1rem;
  margin-top: 0.375rem;
}

.form-group label.form-checkbox {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0.625rem;
  font-size: 0.9rem;
  color: var(--color-dark);
  cursor: pointer;
  font-family: var(--font-body);
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
  margin-bottom: 0;
  line-height: 1;
}

.form-checkbox input[type="checkbox"] {
  width: 16px;
  height: 16px;
  min-width: 16px;
  flex-shrink: 0;
  accent-color: var(--color-primary);
  cursor: pointer;
  margin: 0;
}

.form-checkbox img {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-lg);
  }

  .about-grid {
    gap: var(--space-md);
  }

  .service-content {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 1024px) {
  .hero__panel {
    width: 25%;
  }

  .hero__person {
    width: 40%;
  }

  .hero--v1 .hero__col--content {
    max-width: 480px;
  }

}


@media (max-width: 768px) {
  /* ---- Mobile header: hide utility bar, reduce header height ---- */
  :root {
    --header-height: 70px;
  }

  .header-utility {
    display: none;
  }

  .nav-primary {
    flex: 0;
    overflow: visible;
  }

  .nav-primary__list {
    display: none;
    position: fixed;
    top: var(--header-height);
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--color-dark);
    flex-direction: column;
    padding: var(--space-md);
    gap: 0;
    z-index: 999;
  }

  .nav-primary__list.active {
    display: flex;
  }

  .nav-primary__list a {
    padding: 1rem 0;
    font-size: 1.05rem;
    font-weight: 600;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    color: var(--color-white);
    text-transform: none;
    letter-spacing: 0;
  }

  .nav-primary__list a:hover,
  .nav-primary__list .current-menu-item > a,
  .nav-primary__list .current-menu-ancestor > a {
    color: var(--color-primary);
  }

  .nav-primary__list a::after {
    display: none;
  }

  .nav-primary__list .menu-item-has-children > a::before {
    display: none;
  }

  .nav-primary__list .sub-menu {
    position: static;
    display: block;
    background: none;
    box-shadow: none;
    border: none;
    padding: 0 0 0 1rem;
    min-width: 0;
  }

  .nav-primary__list .sub-menu a {
    color: rgba(255, 255, 255, 0.7);
    padding: 0.5rem 0;
    font-size: 0.95rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  }

  .nav-primary__list .sub-menu a:hover {
    background: none;
    color: var(--color-primary);
  }

  .header-cta {
    display: none;
  }

  .nav-toggle {
    display: block;
    margin-left: auto;
  }

  /* ---- Mobile hero: collapse split layout ---- */
  .hero__panel {
    display: none;
  }

  .hero__person {
    display: none;
  }

  .hero__bpc-aside {
    margin-left: 0;
    padding-top: 0;
  }

  .hero__overlay {
    right: 0;
    background: linear-gradient(
      to bottom,
      rgba(0, 0, 0, 0.65) 0%,
      rgba(0, 0, 0, 0.3) 100%
    );
  }


  .hero__inner {
    flex-direction: column;
    align-items: flex-start;
    gap: var(--space-sm);
  }

  .hero .testimonial-card {
    display: none;
  }

  .hero__actions {
    flex-direction: column;
  }

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

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

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

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

  .process-step:not(:last-child)::after {
    display: none;
  }

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

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

  .footer-bottom {
    flex-direction: column;
    gap: var(--space-xs);
    text-align: center;
  }

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

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

  .services-icon-grid {
    gap: var(--space-sm);
  }

}

@media (max-width: 480px) {
  .gallery-grid {
    grid-template-columns: 1fr;
  }

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

}

/* ==========================================================================
   REDESIGN ADDITIONS — Matches design files
   ========================================================================== */

/* ---------- Quote Section (Two-Column) ---------- */
.quote-section {
  background-color: var(--color-white);
  padding: var(--space-xl) 0;
}

.quote-section .container {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: var(--space-xl);
  align-items: start;
}

.quote-section__cta {
  position: sticky;
  top: calc(var(--header-height) + var(--space-md));
}

.quote-section__cta h2 {
  color: var(--color-dark);
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  margin-bottom: var(--space-md);
}

.quote-section__cta .btn {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  margin-bottom: var(--space-sm);
}

.quote-section__cta .btn svg {
  width: 18px;
  height: 18px;
  fill: var(--color-white);
  flex-shrink: 0;
}

.quote-section__cta p {
  color: var(--color-grey-700);
  font-size: 0.9rem;
  margin: 0;
}

.quote-section__cta p a {
  color: var(--color-primary);
  text-decoration: underline;
}

.quote-section__form-heading {
  font-size: 1.5rem;
  text-transform: none;
  letter-spacing: 0;
  margin-bottom: 0.25rem;
}

.quote-section__form-subheading {
  font-size: 0.9rem;
  color: var(--color-grey-700);
  margin-bottom: var(--space-md);
}

.quote-section__form .form-group input.is-invalid,
.quote-section__form .form-group textarea.is-invalid,
.quote-section__form .form-group select.is-invalid {
  border-color: var(--color-error);
}

.form-error {
  display: block;
  color: var(--color-error);
  font-size: 0.8rem;
  margin-top: 0.25rem;
}

.quote-section__form .btn--submit {
  margin-top: var(--space-sm);
}

.form-notice {
  position: relative;
  padding: var(--space-sm) var(--space-md);
  padding-right: 2.5rem;
  border-radius: var(--radius-sm);
  margin-bottom: var(--space-md);
}

.form-notice strong {
  display: block;
  margin-bottom: 0.25rem;
}

.form-notice p {
  margin: 0;
  font-size: 0.9rem;
}

.form-notice__dismiss {
  position: absolute;
  top: 0.5rem;
  right: 0.75rem;
  background: none;
  border: none;
  font-size: 1.25rem;
  line-height: 1;
  cursor: pointer;
  opacity: 0.6;
  padding: 0;
  color: inherit;
}

.form-notice__dismiss:hover {
  opacity: 1;
}

.form-notice--success {
  background-color: #ecfdf5;
  border: 1px solid #6ee7b7;
  color: #065f46;
}

.form-notice--error {
  background-color: #fef2f2;
  border: 1px solid #fca5a5;
  color: #991b1b;
}

/* ---------- Latest Posts Section ---------- */
.latest-posts {
  padding: var(--space-xl) 0;
  background-color: var(--color-white);
}

/* Header: heading left, intro + link right */
.latest-posts__header {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 48px;
  align-items: start;
  margin-bottom: var(--space-lg);
}

.latest-posts__heading {
  font-size: clamp(2rem, 4vw, 2.75rem);
  margin: 0;
  line-height: 1.15;
}

.latest-posts__intro p {
  font-size: 0.95rem;
  color: var(--color-grey-700);
  line-height: 1.6;
  margin-bottom: var(--space-sm);
}

.latest-posts__link {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--color-primary);
  text-decoration: underline;
}

.latest-posts__link:hover {
  color: var(--color-primary-dark);
}

/* Layout: featured left, 2 side cards right */
.latest-posts__layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-md);
  align-items: stretch;
}

/* Featured card (left) — image with overlay text */
.latest-posts__featured {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  border-radius: var(--radius-md);
  overflow: hidden;
  text-decoration: none;
  color: var(--color-white);
  background-color: var(--color-grey-500);
}

.latest-posts__featured-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.latest-posts__featured:hover .latest-posts__featured-img {
  transform: scale(1.05);
}

.latest-posts__featured-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.75) 0%, rgba(0, 0, 0, 0.15) 60%, transparent 100%);
}

.latest-posts__featured-content {
  position: relative;
  z-index: 1;
  padding: var(--space-md);
  margin-top: auto;
}

.latest-posts__featured-title {
  font-size: 1.5rem;
  color: var(--color-white);
  margin-bottom: var(--space-xs);
}

.latest-posts__featured-excerpt {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.5;
  margin-bottom: var(--space-md);
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Side cards (right column, stacked) */
.latest-posts__side {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.latest-posts__side-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-md);
  flex: 1;
}

.latest-posts__side-img-link {
  display: block;
  border-radius: var(--radius-md);
  overflow: hidden;
}

.latest-posts__side-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform var(--transition-slow);
}

.latest-posts__side-img-link:hover .latest-posts__side-img {
  transform: scale(1.05);
}

.latest-posts__side-content {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
}

.latest-posts__side-title {
  font-size: 1.25rem;
  margin-bottom: var(--space-xs);
}

.latest-posts__side-title a {
  color: var(--color-dark);
  text-decoration: none;
}

.latest-posts__side-title a:hover {
  color: var(--color-primary);
}

.latest-posts__side-excerpt {
  font-size: 0.9rem;
  color: var(--color-grey-700);
  line-height: 1.5;
  margin-bottom: var(--space-md);
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* ---------- End-to-End Partner Steps ---------- */
.e2e-partner {
  padding: var(--space-xl) 0;
  background-color: var(--color-white);
}

.e2e-partner__header {
  text-align: center;
  margin-bottom: var(--space-lg);
}

.e2e-partner__title {
  font-size: clamp(1.6rem, 3vw, 2.25rem);
  margin: 0 0 var(--space-xs);
}

.e2e-partner__subtitle {
  font-family: var(--font-body);
  font-size: 1rem;
  font-style: italic;
  color: var(--color-primary);
  margin: 0;
}

.service-process-intro {
  padding: var(--space-md) 0;
  background: var(--color-grey-050);
}

.service-process-intro__quote {
  margin: 0;
  padding: 0;
  display: flex;
  align-items: stretch;
  gap: var(--space-md);
  background: transparent;
}

.service-process-intro__quote::before {
  content: "";
  flex: 0 0 4px;
  width: 4px;
  align-self: stretch;
  background: var(--color-dark);
  border-radius: 999px;
}

.service-process-intro__quote .service-process-intro__text {
  flex: 1;
  display: block;
  max-width: 900px;
  font-family: var(--font-body);
  font-size: clamp(1.125rem, 1.6vw, 1.5rem);
  color: var(--color-dark);
  line-height: 1.5;
  margin: 0;
}

.service-process-intro__text > :first-child {
  margin-top: 0;
}

.service-process-intro__text > :last-child {
  margin-bottom: 0;
}

/* Highlight helper used by editors: wrap words in <span class="highlight">...</span> */
.highlight {
  color: var(--color-primary);
  font-weight: 700;
}

@media (max-width: 768px) {
  .service-process-intro {
    padding: var(--space-md) 0;
  }

  .service-process-intro__quote {
    gap: var(--space-sm);
  }

  .service-process-intro__quote::before {
    flex-basis: 3px;
    width: 3px;
  }

  .service-process-intro__quote .service-process-intro__text {
    font-size: 1.125rem;
  }
}

.e2e-partner__steps {
  display: flex;
  justify-content: center;
  gap: var(--space-lg);
  flex-wrap: wrap;
}

.e2e-partner__step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  flex: 0 1 160px;
}

.e2e-partner__icon {
  width: 152px;
  height: 152px;
  margin-bottom: var(--space-sm);
}

.e2e-partner__step-title {
  font-size: 1rem;
  margin: 0 0 var(--space-xs);
}

.e2e-partner__step-desc {
  font-family: var(--font-body);
  font-size: 0.875rem;
  color: var(--color-grey-600);
  line-height: 1.5;
  margin: 0;
}

@media (max-width: 768px) {
  .e2e-partner__steps {
    gap: var(--space-md);
  }
  .e2e-partner__step {
    flex: 0 1 calc(50% - var(--space-md));
  }
}

@media (max-width: 480px) {
  .e2e-partner__step {
    flex: 0 1 100%;
  }
}

/* ---------- Hero — Simple Variant (blog) ---------- */
.hero--simple .hero__overlay {
  background: linear-gradient(to right, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0.3) 100%);
}

.hero--simple {
  min-height: 360px;
}

.hero--simple .hero__content {
  max-width: 700px;
}

.hero--simple .hero__inner {
  max-width: 100%;
  justify-content: flex-start;
}

/* ---------- Hero two-column layout (Variants 1, 2, 3, 4) ---------- */
/* Shared column structure: content left, BPC badge right */

.hero--v1 .hero__inner,
.hero--v2 .hero__inner,
.hero--v3 .hero__inner,
.hero--v4 .hero__inner {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: var(--space-md);
  flex: 0 0 auto;
}

.hero--v1 .container,
.hero--v2 .container,
.hero--v3 .container,
.hero--v4 .container {
  flex: 0 0 auto;
}


.hero__col--content {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.hero__col--badge {
  flex-shrink: 0;
  align-self: flex-start;
}

/* ---------- Hero Variant 1 — Split ---------- */

.hero--v1 .hero__inner {
  align-items: stretch;
  flex: 1;
}

.hero--v1 .container {
  flex: 1;
}

.hero--v1 .hero__col--content {
  justify-content: flex-start;
  padding-top: var(--space-sm);
  padding-bottom: var(--space-md);
}

.hero--v1 .bpc-badge {
  margin-top: auto;
}

.hero--v1 .hero__col--badge {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-self: stretch;
  padding-top: var(--space-sm);
  padding-bottom: var(--space-md);
}

.hero--v1 .testimonial-card {
  position: static;
}

/* ---------- Hero Variant 2 — Full Image ---------- */

.hero--v2 {
  height: 500px;
}

.hero--v2 .hero__inner {
  align-items: stretch;
}

.hero--v2 .hero__col--content {
  justify-content: flex-start;
  padding-top: var(--space-md);
  padding-bottom: var(--space-md);
}

.hero--v2 .hero__actions {
  margin-top: 24px;
}

.hero--v2 .hero__col--badge {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-self: stretch;
  align-items: flex-end;
  padding-top: var(--space-sm);
  padding-bottom: var(--space-md);
}

.hero--v2 .testimonial-card {
  position: static;
}

.hero--v2.hero > .container {
  flex: 1;
}

.hero--v2 .hero__inner {
  flex: 1;
}

.hero--v2 .hero__overlay {
  right: 0;
  background: linear-gradient(
    to right,
    rgba(0, 0, 0, 0.65) 0%,
    rgba(0, 0, 0, 0.2) 100%
  );
}

.hero--v2 .hero__col--content {
  max-width: 600px;
}


/* ---------- Hero Variant 3 — Slim Strip ---------- */

.hero--v3 {
  height: auto;
  min-height: 0;
  background-color: var(--color-dark);
  padding-top: var(--header-height);
  padding-bottom: 0;
}

.hero--v3 .container {
  padding-top: var(--space-md);
  padding-bottom: var(--space-md);
}


.hero--v3__subtitle {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.5;
  margin: 0;
  max-width: 600px;
}

/* ---------- Hero Variant 4 — Content Banner ---------- */

.hero--v4 {
  height: 250px;
  overflow: hidden;
}

.hero--v4 .container {
  flex: 0 0 auto;
  margin-top: auto;
  margin-bottom: auto;
  padding-top: 0;
  padding-bottom: 0;
}

.hero--v4 .hero__overlay {
  right: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.7) 0%,
    rgba(0, 0, 0, 0.4) 100%
  );
}

.hero--v4 .hero__inner {
  align-items: center;
}

.hero--v4 .hero__col--content {
  max-width: 600px;
}


@media (max-width: 768px) {
  .hero--v1 .hero__inner,
  .hero--v2 .hero__inner,
  .hero--v3 .hero__inner,
  .hero--v4 .hero__inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
  }

  /* Left content column fills available space so badge can push to bottom */
  .hero--v1 .hero__col--content,
  .hero--v2 .hero__col--content,
  .hero--v3 .hero__col--content,
  .hero--v4 .hero__col--content {
    flex: 1;
    width: 100%;
  }

  /* Badge column: move below content, left-aligned, pushed to bottom */
  .hero--v1 .hero__col--badge,
  .hero--v2 .hero__col--badge,
  .hero--v3 .hero__col--badge,
  .hero--v4 .hero__col--badge {
    align-self: flex-start;
    align-items: flex-start;
    order: 2;
    margin-top: auto;
    padding-bottom: var(--space-sm);
  }

  /* v1 + v2: container and inner must stretch to full hero height */
  .hero--v1.hero > .container,
  .hero--v1 .hero__inner,
  .hero--v2.hero > .container,
  .hero--v2 .hero__inner {
    flex: 1;
  }

  /* v4: fixed height with overflow:hidden — hide badge if it doesn't fit */
  .hero--v4 .hero__col--badge {
    display: none;
  }
}

/* ---------- Blog Article Layout ---------- */
.article-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: var(--space-xl);
  align-items: start;
  padding-top: var(--space-xl);
  padding-bottom: var(--space-xl);
}

.article-sidebar {
  position: sticky;
  top: calc(var(--header-height) + var(--space-md));
}

.article-sidebar__cta {
  background-color: var(--color-dark);
  border-radius: var(--radius-md);
  padding: var(--space-md);
  margin-bottom: var(--space-md);
}

.article-sidebar__cta h3 {
  color: var(--color-white);
  font-size: 1.25rem;
  margin-bottom: var(--space-sm);
}

.article-sidebar__cta .btn {
  width: 100%;
  justify-content: center;
  margin-bottom: var(--space-xs);
  font-size: 0.9rem;
}

.article-sidebar__cta .btn svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

.article-sidebar__cta p {
  font-size: 0.8rem;
  color: var(--color-grey-500);
  margin: 0;
  text-align: center;
}

/* Experience Small — blog sidebar */
.experience-small__title {
  font-size: 1.25rem;
  margin-bottom: var(--space-sm);
}

.experience-small__desc {
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--color-grey-700);
  margin-bottom: var(--space-md);
}

.experience-small__cta {
  display: inline-block;
  margin-bottom: var(--space-md);
}

.experience-small__bpc {
  display: flex;
}

/* Article featured image (inside article content) */
.article-featured-image {
  margin-bottom: var(--space-md);
}

.article-featured-image img {
  width: 100%;
  height: auto;
  display: block;
}

/* Article meta — author icon */
.article-meta__icon {
  color: var(--color-grey-500);
  flex-shrink: 0;
}

.article-meta__author {
  font-weight: 600;
  color: var(--color-dark);
}

/* Article hero (featured image full-width, no dark bg) */
.article-hero {
  margin-top: var(--header-height);
  width: 100%;
  max-height: 420px;
  overflow: hidden;
}

.article-hero img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  display: block;
}

.article-meta {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-size: 0.85rem;
  color: var(--color-grey-500);
  margin-bottom: var(--space-md);
  flex-wrap: wrap;
}

.article-meta time {
  color: var(--color-grey-500);
}

.article-meta .article-meta__cat a {
  color: var(--color-primary);
  font-weight: 600;
}

.entry-content h2,
.entry-content h3 {
  margin-top: var(--space-lg);
}

.entry-content img {
  border-radius: var(--radius-md);
  margin: var(--space-md) 0;
}

.entry-content ul,
.entry-content ol {
  padding-left: 1.5rem;
  margin-bottom: var(--space-sm);
}

.entry-content ul li,
.entry-content ol li {
  margin-bottom: 0.4rem;
}

/* ---------- Blog Archive (full-width 2-col grid) ---------- */
.posts-archive {
  padding: var(--space-xl) 0;
}

.posts-archive__intro {
  margin-bottom: var(--space-lg);
  color: var(--color-grey-700);
}

.posts-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-md);
}

.posts-grid .post-card {
  display: flex;
  flex-direction: column;
  border-radius: 0;
  box-shadow: none;
}

.posts-grid .post-card:hover {
  transform: none;
  box-shadow: none;
}

.posts-grid .post-card:hover .post-card__image img {
  transform: none;
}

.posts-grid .post-card__image {
  height: 240px;
  flex-shrink: 0;
}

.posts-grid .post-card__body {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: var(--space-md);
}

.posts-grid .post-card__excerpt {
  flex: 1;
  margin-bottom: var(--space-sm);
}

.posts-pagination {
  margin-top: var(--space-xl);
}

.posts-pagination ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.posts-pagination li {
  margin: 0;
  padding: 0;
}

.posts-pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2rem;
  height: 2rem;
  padding: 0 0.25rem;
  border: none;
  border-radius: 50%;
  background: none;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--color-grey-700);
  text-decoration: none;
  transition: color var(--transition-fast), background-color var(--transition-fast);
}

.posts-pagination .page-numbers:hover {
  color: var(--color-primary);
}

.posts-pagination .page-numbers.current {
  background-color: var(--color-primary);
  color: var(--color-white);
}

.posts-pagination .page-numbers.dots {
  width: auto;
  cursor: default;
}

.posts-pagination .page-numbers.prev,
.posts-pagination .page-numbers.next {
  font-size: 1.1rem;
  color: var(--color-dark);
}

.posts-pagination .page-numbers.prev:hover,
.posts-pagination .page-numbers.next:hover {
  color: var(--color-primary);
}

/* ---------- Project Before/After Cards ---------- */
.projects-section {
  padding: var(--space-xl) 0;
}

.projects-section__title {
  font-family: var(--font-heading);
  font-style: italic;
  font-weight: 700;
  font-size: clamp(1.25rem, 2.5vw, 1.5rem);
  color: var(--color-primary);
  margin-bottom: var(--space-md);
}

.project-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

.project-ba-card {
  padding: var(--space-md) 0;
}

.project-ba-card__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: var(--space-md);
  margin-bottom: var(--space-md);
}

.project-ba-card__title-group {
  flex: 1;
  min-width: 0;
}

.project-ba-card__title {
  font-family: var(--font-heading);
  font-size: clamp(1.1rem, 2.5vw, 1.4rem);
  font-weight: 700;
  color: var(--color-dark);
  margin: 0 0 0.25rem;
}

.project-ba-card__title a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition-fast);
}

.project-ba-card__title a:hover {
  color: var(--color-primary);
}

.project-ba-card__meta {
  display: block;
  font-size: 0.85rem;
  color: var(--color-grey-500);
}

.project-ba-card__tag {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  flex-shrink: 0;
  font-family: var(--font-heading);
  font-size: clamp(1rem, 2vw, 1.2rem);
  font-weight: 700;
  color: var(--color-primary);
  text-decoration: none;
  white-space: nowrap;
}

.project-ba-card__tag:hover {
  color: var(--color-primary-dark);
}

.project-ba-card__tag-icon {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}

.project-ba-card__columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-sm);
}

.project-ba-card__image {
  border-radius: var(--radius-sm);
  overflow: hidden;
  aspect-ratio: 3 / 2;
  margin-bottom: var(--space-sm);
}

.project-ba-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.project-ba-card__desc strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--color-dark);
  margin-bottom: 0.35rem;
}

.project-ba-card__desc p {
  font-size: 0.85rem;
  color: var(--color-grey-700);
  line-height: 1.6;
  margin: 0;
}

/* ---------- About Page — Why Clients Section ---------- */
.why-clients {
  padding: var(--space-xl) 0;
}

.why-clients__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: center;
}

.why-clients__content h2 {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  margin-bottom: var(--space-md);
}

.why-clients__content p {
  margin-bottom: var(--space-sm);
}

.why-clients__image {
  border-radius: var(--radius-md);
  overflow: hidden;
}

.why-clients__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ---------- About BPC Band ---------- */
.bpc-band {
  background-color: var(--color-grey-100);
  padding: var(--space-lg) 0;
}

.bpc-band .container {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
  flex-wrap: wrap;
}

.bpc-band__content {
  flex: 1;
  min-width: 200px;
}

.bpc-band__content p {
  font-size: 0.95rem;
  color: var(--color-grey-700);
  margin: 0;
}

/* ---------- Service Page — Full Width (No Sidebar) ---------- */
.service-full {
  padding: 0;
}

.service-full .entry-content {
  max-width: 820px;
  margin: 0 auto var(--space-xl);
}

/* ---------- Contact Page ---------- */

/* ---------- Responsive additions ---------- */
@media (max-width: 1024px) {
  .testimonial-slider {
    height: 520px;
  }

  .testimonial-card {
    width: 360px;
  }

  .quote-section .container {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }

  .quote-section__cta {
    position: static;
    top: auto;
  }

  .article-layout {
    grid-template-columns: 240px 1fr;
  }

  .why-clients__grid {
    grid-template-columns: 1fr;
  }

  .latest-posts__layout {
    grid-template-columns: 1fr;
  }

  .latest-posts__featured {
    min-height: 400px;
  }

  .latest-posts__side-card {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .testimonial-slider {
    height: auto;
    min-height: 480px;
  }

  .testimonial-slider__slide {
    align-items: center;
    justify-content: center;
    padding-right: var(--space-sm);
    padding-left: var(--space-sm);
    padding-bottom: calc(var(--space-md) + 2rem); /* clear the dots */
  }

  .testimonial-card {
    max-width: 100%;
    margin: 0;
    padding: var(--space-sm);
  }

  .testimonial-card__footer {
    flex-wrap: wrap;
    gap: var(--space-xs);
  }

  .article-layout {
    grid-template-columns: 1fr;
  }

  .article-sidebar {
    position: static;
  }

  .article-hero img {
    height: 240px;
  }

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

  .project-ba-card__columns {
    grid-template-columns: 1fr;
  }

  .project-ba-card {
    padding: var(--space-sm) 0;
  }

  .project-ba-card__header {
    flex-direction: column;
    gap: var(--space-xs);
  }

  .latest-posts__header {
    grid-template-columns: 1fr;
    gap: var(--space-md);
  }

  .latest-posts__side-card {
    grid-template-columns: 1fr;
  }


  .bpc-band .container {
    flex-direction: column;
    text-align: center;
  }

}

/* ---------- Accessibility Utility ---------- */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}
