﻿:root {
  --gfr-red: #d5253f;
  --gfr-red-dark: #a7132b;
  --gfr-navy: #081c33;
  --gfr-navy-soft: #0f2744;
  --gfr-blue: #123d6b;
  --gfr-ink: #12243a;
  --gfr-text: #44566c;
  --gfr-line: rgba(17, 43, 70, 0.12);
  --gfr-surface: #ffffff;
  --gfr-surface-soft: #f3f6fb;
  --gfr-surface-alt: #eef3f9;
  --gfr-shadow-lg: 0 32px 70px rgba(8, 28, 51, 0.16);
  --gfr-shadow-md: 0 22px 50px rgba(8, 28, 51, 0.1);
  --gfr-radius-xl: 30px;
  --gfr-radius-lg: 22px;
  --gfr-radius-md: 16px;
  --gfr-radius-sm: 12px;
  --gfr-container: 1320px;
  --color-primary: var(--gfr-red);
  --color-secondary: var(--gfr-blue);
  --color-accent: var(--gfr-navy);
  --color-surface: var(--gfr-surface);
  --color-surface-alt: var(--gfr-surface-soft);
  --color-text: var(--gfr-ink);
  --color-text-muted: var(--gfr-text);
  --color-border: var(--gfr-line);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body.vibe-site {
  margin: 0;
  font-family: "Barlow", sans-serif;
  color: var(--gfr-ink);
  background:
    radial-gradient(circle at top left, rgba(213, 37, 63, 0.06), transparent 24%),
    linear-gradient(180deg, #fbfcfe 0%, #f4f7fb 100%);
  overflow-x: clip;
}

a {
  color: inherit;
  text-decoration: none;
}

img,
video {
  display: block;
  max-width: 100%;
}

.vibe-main--landing {
  overflow: clip;
}

.container-xxl {
  max-width: calc(var(--gfr-container) + 2rem);
}

.gs-reveal {
  opacity: 0;
  transform: translateY(24px);
}

.gfr-section-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gfr-red);
}

.gfr-section-tag::before {
  content: "";
  width: 2.8rem;
  height: 2px;
  background: currentColor;
}

.gfr-section-tag--light {
  color: var(--gfr-red);
}

.gfr-section-tag--red {
  color: var(--gfr-red);
}

.gfr-section-title {
  margin: 0;
  font-family: "Barlow Condensed", sans-serif;
  font-size: clamp(2.35rem, 4vw, 4.4rem);
  line-height: 0.94;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--gfr-blue);
}

.gfr-section-title--light {
  color: #ffffff;
}

.gfr-section-body {
  margin: 1.15rem 0 0;
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--gfr-text);
}

.gfr-section-body--wide {
  max-width: 46rem;
}

.gfr-section-body--light {
  color: rgba(255, 255, 255, 0.78);
}

.gfr-section-body--compact {
  margin-top: 0.85rem;
}

.gfr-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.5rem;
  padding: 0.9rem 1.65rem;
  border-radius: 999px;
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

.gfr-btn:hover {
  transform: translateY(-2px);
}

.gfr-btn--primary {
  color: #ffffff;
  background: linear-gradient(135deg, #eb2747 0%, #c81835 100%);
  box-shadow: 0 20px 34px rgba(213, 37, 63, 0.28);
}

.gfr-btn--primary:hover {
  box-shadow: 0 26px 40px rgba(213, 37, 63, 0.34);
}

.gfr-btn--ghost {
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.42);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
}

.gfr-btn--ghost:hover {
  background: rgba(255, 255, 255, 0.16);
}

.gfr-btn--ghost-light {
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.08);
}

.gfr-btn--outline {
  color: var(--color-secondary);
  border: 1px solid var(--color-border);
  background: var(--color-surface);
}

.gfr-btn--outline:hover {
  color: var(--color-primary);
  border-color: var(--color-primary);
  background: var(--color-surface-alt);
}

.gfr-admin-shortcut {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.35rem;
  margin-top: 0.95rem;
  padding: 0.5rem 0.9rem;
  border-radius: 999px;
  background: rgba(18, 61, 107, 0.08);
  border: 1px solid rgba(18, 61, 107, 0.14);
  color: var(--gfr-blue);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.gfr-admin-shortcut:hover {
  background: rgba(18, 61, 107, 0.12);
}

.gfr-admin-shortcuts {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 0.95rem;
}

.gfr-text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gfr-red);
}

.gfr-text-link::after {
  content: "->";
  transition: transform 0.2s ease;
}

.gfr-text-link:hover::after {
  transform: translateX(0.2rem);
}

.gfr-topbar {
  position: relative;
  z-index: 25;
  background: #061423;
  color: rgba(255, 255, 255, 0.68);
}

.gfr-topbar__item,
.gfr-topbar__social {
  font-size: 0.75rem;
  letter-spacing: 0.08em;
}

.gfr-topbar__social:hover {
  color: #ffffff;
}

.gfr-header {
  position: sticky;
  top: 0;
  z-index: 40;
}

body.admin-bar .gfr-header {
  top: 32px;
}

.gfr-navbar {
  min-height: 5.25rem;
  background: rgba(7, 23, 40, 0.92);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(14px);
  box-shadow: 0 14px 40px rgba(8, 28, 51, 0.18);
}

.gfr-navbar.is-scrolled {
  background: rgba(7, 23, 40, 0.98);
}

.gfr-brand__logo {
  width: auto;
  height: 2.65rem;
}

.gfr-brand__fallback {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 1.65rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #ffffff;
}

.gfr-nav-list {
  --bs-nav-link-padding-y: 0.65rem;
}

.gfr-nav-list .menu-item {
  list-style: none;
  position: relative;
}

.gfr-nav-list .nav-link,
.gfr-nav-list > li > a {
  display: inline-flex;
  align-items: center;
  min-height: 2.75rem;
  padding: 0.65rem 1rem;
  border-radius: 999px;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.82);
}

.gfr-nav-list .nav-link:hover,
.gfr-nav-list > li > a:hover,
.gfr-nav-list .current-menu-item > a,
.gfr-nav-list .current-menu-ancestor > a,
.gfr-nav-list .current-page-ancestor > a {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.08);
}

.gfr-nav-list .menu-item-has-children > a::after {
  content: "";
  width: 0.5rem;
  height: 0.5rem;
  margin-left: 0.55rem;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: translateY(-0.1rem) rotate(45deg);
}

.gfr-nav-list .sub-menu {
  position: absolute;
  top: calc(100% + 0.6rem);
  left: 0;
  min-width: 13rem;
  margin: 0;
  padding: 0.8rem;
  list-style: none;
  border-radius: 1.1rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(7, 23, 40, 0.98);
  box-shadow: 0 24px 44px rgba(8, 28, 51, 0.28);
  opacity: 0;
  visibility: hidden;
  transform: translateY(0.5rem);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
}

.gfr-nav-list .menu-item-has-children:hover > .sub-menu,
.gfr-nav-list .menu-item-has-children:focus-within > .sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.gfr-nav-list .sub-menu .menu-item + .menu-item {
  margin-top: 0.35rem;
}

.gfr-nav-list .sub-menu a {
  display: block;
  padding: 0.7rem 0.85rem;
  border-radius: 0.85rem;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 0.98rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.8);
}

.gfr-nav-list .sub-menu a:hover,
.gfr-nav-list .sub-menu .current-menu-item > a {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.08);
}

.gfr-navbar-toggler {
  display: inline-flex;
  flex-direction: column;
  gap: 0.35rem;
  border: 0;
  padding: 0;
  box-shadow: none !important;
}

.gfr-navbar-toggler span {
  width: 1.5rem;
  height: 2px;
  background: #ffffff;
  border-radius: 999px;
}

.gfr-offcanvas {
  background: linear-gradient(180deg, #0a2038 0%, #081a2d 100%);
  color: #ffffff;
}

.gfr-mobile-nav {
  gap: 0.3rem;
}

.gfr-mobile-nav .menu-item {
  list-style: none;
}

.gfr-mobile-nav a {
  display: block;
  padding: 0.85rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  font-family: "Barlow Condensed", sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.gfr-mobile-nav .menu-item-has-children > a {
  border-bottom: 0;
  padding-bottom: 0.45rem;
}

.gfr-mobile-nav .sub-menu {
  margin: 0 0 0.75rem;
  padding: 0 0 0 1rem;
  list-style: none;
}

.gfr-mobile-nav .sub-menu a {
  padding: 0.55rem 0;
  font-size: 0.98rem;
  color: rgba(255, 255, 255, 0.72);
}

/* gfr-gallery-hero is now rendered via the shared .gfr-page-banner partial.
   These legacy rules are kept only for any cached markup. */
.gfr-gallery-hero {
  padding: 6.5rem 0 3rem;
  background: var(--gfr-navy);
}

.gfr-gallery-hero::after { display: none; }

.gfr-gallery-hero__content {
  position: relative;
  z-index: 1;
  max-width: 52rem;
}

.gfr-gallery-hero__title {
  margin: 0.6rem 0 0;
  /* font properties unified via the global inner-page H1 rule */
}

/* Gallery hero media strip (project images below banner) */
.gfr-gallery-hero-media {
  background: var(--gfr-navy);
  padding-bottom: 2.5rem;
}

.gfr-gallery-hero-media__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  border-radius: var(--gfr-radius-lg);
  overflow: hidden;
}

.gfr-gallery-hero-media__item {
  height: 16rem;
  overflow: hidden;
}

.gfr-gallery-hero-media__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gfr-gallery-hero__body {
  max-width: 33rem;
  margin: 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 1.08rem;
}

.gfr-gallery-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 2rem;
}

.gfr-gallery-hero__media {
  position: relative;
  min-height: 33rem;
}

.gfr-gallery-hero__card {
  position: absolute;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 1.75rem;
  background: rgba(7, 23, 40, 0.22);
  box-shadow: 0 24px 60px rgba(5, 19, 34, 0.26);
}

.gfr-gallery-hero__card--1 {
  inset: 0 auto auto 0;
  width: min(58%, 20rem);
  height: 21rem;
}

.gfr-gallery-hero__card--2 {
  inset: 2.5rem 0 auto auto;
  width: min(42%, 14rem);
  height: 14rem;
}

.gfr-gallery-hero__card--3 {
  inset: auto auto 0 2.2rem;
  width: min(34%, 11.5rem);
  height: 11.5rem;
}

.gfr-gallery-hero__card--4 {
  inset: auto 1.2rem 1rem auto;
  width: min(48%, 16rem);
  height: 16rem;
}

.gfr-gallery-hero__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gfr-gallery-showcase {
  padding: 4.5rem 0 5rem;
  background: linear-gradient(180deg, #f6f1e8 0%, #ffffff 18%);
}

.gfr-gallery-showcase__header {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(18rem, 0.8fr);
  gap: 2rem 3rem;
  align-items: end;
  margin-bottom: 2.5rem;
}

.gfr-gallery-showcase__intro {
  max-width: 28rem;
}

.gfr-gallery-masonry {
  column-count: 4;
  column-gap: 1.25rem;
}

.gfr-gallery-card {
  break-inside: avoid;
  margin: 0 0 1.25rem;
}

.gfr-gallery-card__link {
  position: relative;
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  overflow: hidden;
  border-radius: 1.35rem;
  background: #0b2037;
  box-shadow: 0 18px 40px rgba(9, 29, 50, 0.14);
  text-align: left;
  cursor: zoom-in;
}

.gfr-gallery-card__link::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(6, 19, 33, 0.72) 100%);
  opacity: 0;
  transition: opacity 0.2s ease;
}

.gfr-gallery-card__link:hover::after,
.gfr-gallery-card__link:focus-visible::after {
  opacity: 1;
}

.gfr-gallery-card__image {
  width: 100%;
  height: auto;
  display: block;
}

.gfr-gallery-card__badge {
  position: absolute;
  left: 0.9rem;
  right: 0.9rem;
  bottom: 0.9rem;
  z-index: 1;
  display: inline-flex;
  width: fit-content;
  max-width: calc(100% - 1.8rem);
  padding: 0.5rem 0.75rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(10px);
  color: #ffffff;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.gfr-gallery-lightbox .modal-content {
  border: 0;
  border-radius: 1.75rem;
  background: #071728;
  color: #ffffff;
  overflow: hidden;
}

.gfr-gallery-lightbox .modal-body {
  padding: 1.25rem;
}

.gfr-gallery-lightbox__close {
  position: absolute;
  top: 0.9rem;
  right: 0.9rem;
  z-index: 3;
  width: 2.75rem;
  height: 2.75rem;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
}

.gfr-gallery-lightbox__close::before,
.gfr-gallery-lightbox__close::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 1rem;
  height: 2px;
  border-radius: 999px;
  background: #ffffff;
}

.gfr-gallery-lightbox__close::before {
  transform: translate(-50%, -50%) rotate(45deg);
}

.gfr-gallery-lightbox__close::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.gfr-gallery-lightbox__stage {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 1rem;
}

.gfr-gallery-lightbox__media {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: min(72vh, 48rem);
  border-radius: 1.25rem;
  background: rgba(255, 255, 255, 0.04);
  overflow: hidden;
}

.gfr-gallery-lightbox__media img {
  display: block;
  width: 100%;
  max-height: 72vh;
  object-fit: contain;
}

.gfr-gallery-lightbox__nav {
  width: 3.2rem;
  height: 3.2rem;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  font-size: 1.2rem;
}

.gfr-gallery-lightbox__meta {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 0 0.25rem;
}

.gfr-gallery-lightbox__title {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.gfr-gallery-lightbox__caption {
  margin-top: 0.35rem;
  color: rgba(255, 255, 255, 0.72);
}

.gfr-gallery-lightbox__count {
  color: rgba(255, 255, 255, 0.72);
  font-family: "Barlow Condensed", sans-serif;
  font-size: 1rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.gfr-projects-showcase {
  padding: 4.75rem 0 5.5rem;
  background:
    radial-gradient(circle at top left, rgba(213, 37, 63, 0.08), transparent 24%),
    linear-gradient(180deg, #ffffff 0%, #f4f7fb 100%);
}

.gfr-projects-showcase__header {
  margin-bottom: 2.75rem;
}

.gfr-projects-stack {
  display: grid;
  gap: 1.75rem;
}

.gfr-project-card {
  padding: clamp(1.25rem, 2vw, 1.65rem);
  border-radius: var(--gfr-radius-xl);
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(8, 28, 51, 0.08);
  box-shadow: var(--gfr-shadow-md);
}

.gfr-project-card__copy {
  height: 100%;
  padding: clamp(1rem, 1.6vw, 1.4rem);
}

.gfr-project-card__eyebrow,
.gfr-project-card__location {
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.gfr-project-card__eyebrow {
  color: var(--gfr-red);
}

.gfr-project-card__title {
  margin: 0.85rem 0 0;
  font-family: "Barlow Condensed", sans-serif;
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 0.95;
  text-transform: uppercase;
  color: var(--gfr-blue);
}

.gfr-project-card__location {
  margin-top: 1rem;
  color: rgba(18, 36, 58, 0.56);
}

.gfr-project-card__body {
  margin: 1.15rem 0 0;
  color: var(--gfr-text);
  font-size: 1rem;
  line-height: 1.82;
}

.gfr-project-card__highlights {
  display: grid;
  gap: 0.75rem;
  margin: 1.45rem 0 0;
  padding: 0;
  list-style: none;
}

.gfr-project-card__highlights li {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  padding: 0.9rem 1rem;
  border-radius: 14px;
  background: var(--gfr-surface-soft);
  color: var(--gfr-ink);
  line-height: 1.6;
}

.gfr-project-card__highlights li::before {
  content: "";
  width: 0.62rem;
  height: 0.62rem;
  margin-top: 0.45rem;
  border-radius: 999px;
  background: var(--gfr-red);
  flex: none;
}

.gfr-project-card__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 1.5rem;
}

.gfr-project-card__media-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(0, 1fr);
  grid-template-rows: repeat(2, minmax(10rem, 1fr));
  gap: 1rem;
  min-height: 100%;
}

.gfr-project-card__media {
  overflow: hidden;
  border-radius: 1.45rem;
  background: #0b2037;
  box-shadow: 0 18px 40px rgba(9, 29, 50, 0.14);
}

.gfr-project-card__media--1 {
  grid-row: 1 / span 2;
}

.gfr-project-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gfr-mobile-nav .sub-menu {
  margin: 0 0 0.75rem;
  padding: 0 0 0 1rem;
  list-style: none;
  border-left: 1px solid rgba(255, 255, 255, 0.18);
}

.gfr-mobile-nav .sub-menu a {
  padding: 0.6rem 0;
  font-size: 0.92rem;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.74);
}

.gfr-offcanvas__meta {
  margin-top: 2rem;
  padding: 1.25rem;
  border-radius: var(--gfr-radius-md);
  background: rgba(255, 255, 255, 0.06);
}

.gfr-offcanvas__meta p {
  margin: 0 0 0.55rem;
  color: rgba(255, 255, 255, 0.7);
}

.gfr-offcanvas__meta a {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 1.35rem;
  font-weight: 700;
}

.vibe-generic-page,
.vibe-content-area {
  padding: clamp(4rem, 6vw, 6.25rem) 0;
}

.vibe-content-card {
  padding: clamp(2rem, 4vw, 3.4rem);
  border-radius: var(--gfr-radius-xl);
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(8, 28, 51, 0.08);
  box-shadow: var(--gfr-shadow-md);
}

.vibe-content-card--generic {
  max-width: 62rem;
  margin: 0 auto;
}

.vibe-page-title {
  margin: 0 0 1.2rem;
  font-family: "Barlow Condensed", sans-serif;
  font-size: clamp(2.6rem, 5vw, 4.2rem);
  line-height: 0.94;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--gfr-blue);
}

.vibe-entry__content {
  color: var(--gfr-text);
  font-size: 1.02rem;
  line-height: 1.8;
}

.vibe-entry__content > *:first-child {
  margin-top: 0;
}

.vibe-entry__content h2,
.vibe-entry__content h3 {
  margin-top: 1.8rem;
  margin-bottom: 0.7rem;
  font-family: "Barlow Condensed", sans-serif;
  line-height: 1;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--gfr-blue);
}

.vibe-entry__content ul {
  padding-left: 1.15rem;
}

.gfr-financing-section {
  padding: clamp(4.2rem, 6vw, 6.5rem) 0;
}

.gfr-financing-card,
.gfr-financing-visual {
  height: 100%;
  padding: clamp(1.8rem, 3vw, 2.8rem);
  border-radius: var(--gfr-radius-xl);
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(8, 28, 51, 0.08);
  box-shadow: var(--gfr-shadow-md);
}

.gfr-financing-highlights {
  display: grid;
  gap: 0.9rem;
  margin: 1.7rem 0 0;
  padding: 0;
  list-style: none;
}

.gfr-financing-highlights__item {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  padding: 0.95rem 1rem;
  border-radius: var(--gfr-radius-md);
  background: var(--gfr-surface-soft);
  color: var(--gfr-ink);
  font-weight: 600;
}

.gfr-financing-highlights__mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.6rem;
  height: 1.6rem;
  border-radius: 999px;
  background: var(--gfr-red);
  color: #ffffff;
  font-size: 1rem;
  line-height: 1;
  flex: 0 0 auto;
}

.gfr-financing-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 1.7rem;
}

.gfr-btn--ghost-light-alt {
  color: var(--gfr-blue);
  border-color: rgba(18, 61, 107, 0.16);
  background: rgba(18, 61, 107, 0.08);
}

.gfr-btn--ghost-light-alt:hover {
  background: rgba(18, 61, 107, 0.14);
}

.gfr-financing-disclaimer {
  margin: 1.5rem 0 0;
  font-size: 0.84rem;
  line-height: 1.7;
  color: var(--gfr-text);
}

.gfr-financing-visual {
  display: flex;
  flex-direction: column;
  gap: 1.15rem;
  background:
    radial-gradient(circle at top left, rgba(213, 37, 63, 0.08), transparent 32%),
    linear-gradient(180deg, rgba(243, 246, 251, 0.96) 0%, rgba(255, 255, 255, 0.96) 100%);
}

.gfr-financing-visual__media {
  overflow: hidden;
  border-radius: calc(var(--gfr-radius-xl) - 8px);
  background: #ffffff;
}

.gfr-financing-visual__image {
  width: 100%;
  height: auto;
}

.gfr-financing-support {
  padding: 1.3rem 1.35rem;
  border-radius: var(--gfr-radius-lg);
  background: var(--gfr-navy);
  color: #ffffff;
}

.gfr-financing-support__eyebrow {
  margin-bottom: 0.7rem;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.64);
}

.gfr-financing-support h3 {
  margin: 0;
  font-family: "Barlow Condensed", sans-serif;
  font-size: clamp(1.6rem, 3vw, 2.15rem);
  line-height: 0.98;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.gfr-financing-support p {
  margin: 0.85rem 0 0;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.7;
}

.gfr-about-hero-section {
  position: relative;
  overflow: hidden;
  padding: clamp(5rem, 8vw, 7.5rem) 0 clamp(4rem, 7vw, 6rem);
  background:
    radial-gradient(ellipse 50% 120% at 100% 50%, rgba(223, 21, 58, 0.35) 0%, rgba(223, 21, 58, 0.08) 45%, transparent 70%),
    radial-gradient(ellipse 35% 60% at 0% 100%, rgba(180, 10, 40, 0.20) 0%, transparent 55%),
    linear-gradient(118deg, rgba(7, 23, 40, 0.98) 0%, rgba(11, 39, 71, 0.97) 52%, rgba(7, 23, 40, 0.99) 100%);
}

.gfr-about-hero-copy,
.gfr-about-hero-panel {
  position: relative;
  z-index: 1;
}

.gfr-about-hero-copy {
  max-width: 44rem;
  padding-top: 1.5rem;
}

.gfr-about-hero-title {
  margin: 0;
  /* font properties unified via the global inner-page H1 rule */
}

.gfr-about-hero-kicker {
  margin: 1.2rem 0 0;
  max-width: 34rem;
  font-family: "Barlow Condensed", sans-serif;
  font-size: clamp(1.3rem, 2.5vw, 1.95rem);
  line-height: 1.02;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.86);
}

.gfr-about-hero-trust {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.9rem;
  margin-top: 2rem;
}

.gfr-about-hero-trust__item {
  padding: 1rem 1rem 1.05rem;
  border-radius: var(--gfr-radius-md);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
}

.gfr-about-hero-trust__label {
  margin-bottom: 0.4rem;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #ffffff;
}

.gfr-about-hero-trust__item p {
  margin: 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.95rem;
  line-height: 1.6;
}

.gfr-about-hero-panel {
  display: grid;
  gap: 1rem;
  padding: clamp(1.5rem, 3vw, 2.2rem);
  transform: translateY(-2.35rem);
  border-radius: calc(var(--gfr-radius-xl) + 2px);
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.36);
  box-shadow: var(--gfr-shadow-lg);
}

.gfr-about-hero-panel__eyebrow,
.gfr-about-standard-card__kicker {
  margin-bottom: 0.75rem;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gfr-red);
}

.gfr-about-hero-panel__title {
  margin: 0;
  font-family: "Barlow Condensed", sans-serif;
  font-size: clamp(2rem, 3vw, 2.8rem);
  line-height: 0.96;
  text-transform: uppercase;
  color: var(--gfr-blue);
}

.gfr-about-hero-panel__body {
  margin: 0.9rem 0 0;
  color: var(--gfr-text);
  line-height: 1.8;
}

.gfr-about-hero-milestones {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.85rem;
}

.gfr-about-hero-milestone {
  padding: 1rem;
  border-radius: 18px;
  background: linear-gradient(180deg, #f4f7fb 0%, #edf2f8 100%);
  border: 1px solid rgba(18, 61, 107, 0.08);
}

.gfr-about-hero-milestone__value {
  font-family: "Barlow Condensed", sans-serif;
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 700;
  line-height: 0.96;
  text-transform: uppercase;
  color: var(--gfr-blue);
}

.gfr-about-hero-milestone__label {
  margin-top: 0.45rem;
  color: var(--gfr-text);
  font-size: 0.9rem;
  line-height: 1.55;
}

.gfr-about-story-section,
.gfr-about-standards-section,
.gfr-about-credentials-section {
  position: relative;
  padding: 6rem 0;
}

.gfr-about-story-section {
  background: linear-gradient(180deg, #f4f7fb 0%, #ffffff 100%);
}

.gfr-about-story-copy {
  max-width: 38rem;
}

.gfr-about-story-lead {
  margin: 1.2rem 0 0;
  font-family: "Barlow Condensed", sans-serif;
  font-size: clamp(1.35rem, 2.4vw, 1.9rem);
  line-height: 1.08;
  text-transform: uppercase;
  color: var(--gfr-blue);
}

.gfr-about-story-checklist,
.gfr-about-credentials-list {
  display: grid;
  gap: 0.85rem;
  padding: 0;
  margin: 1.7rem 0 0;
  list-style: none;
}

.gfr-about-story-checklist li,
.gfr-about-credentials-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  padding: 1rem 1.05rem;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(18, 61, 107, 0.08);
  box-shadow: 0 16px 30px rgba(8, 28, 51, 0.06);
  color: var(--gfr-ink);
  line-height: 1.6;
}

.gfr-about-story-checklist li::before,
.gfr-about-credentials-list li::before {
  content: "";
  width: 0.72rem;
  height: 0.72rem;
  margin-top: 0.35rem;
  border-radius: 999px;
  background: var(--gfr-red);
  flex: none;
}

.gfr-about-story-visual {
  position: relative;
  min-height: 38rem;
}

.gfr-about-story-visual__primary,
.gfr-about-story-visual__secondary {
  position: absolute;
  overflow: hidden;
  border-radius: calc(var(--gfr-radius-xl) + 2px);
  background: #ffffff;
  border: 1px solid rgba(18, 61, 107, 0.08);
  box-shadow: var(--gfr-shadow-md);
}

.gfr-about-story-visual__primary {
  inset: 0 5.5rem 7rem 0;
}

.gfr-about-story-visual__secondary {
  right: 0;
  bottom: 4rem;
  width: 48%;
  aspect-ratio: 0.95 / 1.05;
}

.gfr-about-story-visual__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gfr-about-story-milestones {
  position: absolute;
  right: 1.5rem;
  bottom: 0;
  left: 3.5rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.85rem;
}

.gfr-about-story-milestone {
  padding: 1rem;
  border-radius: 18px;
  background: rgba(8, 28, 51, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 20px 36px rgba(8, 28, 51, 0.2);
}

.gfr-about-story-milestone__value {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #ffffff;
}

.gfr-about-story-milestone p {
  margin: 0.4rem 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.9rem;
  line-height: 1.55;
}

.gfr-about-standards-section {
  background: linear-gradient(180deg, #ffffff 0%, #eef4fb 100%);
}

.gfr-about-standards-shell {
  padding: clamp(1.8rem, 3vw, 2.8rem);
  border-radius: calc(var(--gfr-radius-xl) + 8px);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(247, 250, 254, 0.98) 100%);
  border: 1px solid rgba(17, 43, 70, 0.08);
  box-shadow: 0 38px 80px rgba(8, 28, 51, 0.09);
}

.gfr-about-standard-card {
  height: 100%;
  padding: 1.8rem;
  border-radius: var(--gfr-radius-xl);
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(17, 43, 70, 0.08);
  box-shadow: 0 20px 40px rgba(8, 28, 51, 0.08);
}

.gfr-about-standard-card__title {
  margin: 0;
  font-family: "Barlow Condensed", sans-serif;
  font-size: clamp(1.7rem, 2.4vw, 2.3rem);
  line-height: 0.98;
  text-transform: uppercase;
  color: var(--gfr-blue);
}

.gfr-about-standard-card__text {
  margin: 0.95rem 0 0;
  color: var(--gfr-text);
  line-height: 1.8;
}

.gfr-services-process-section {
  position: relative;
  padding: 6rem 0;
  background: linear-gradient(180deg, #edf3fb 0%, #ffffff 100%);
}

.gfr-services-process-shell {
  padding: clamp(1.8rem, 3vw, 2.8rem);
  border-radius: calc(var(--gfr-radius-xl) + 8px);
  background:
    radial-gradient(circle at top right, rgba(213, 37, 63, 0.08), transparent 18%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(247, 250, 254, 0.98) 100%);
  border: 1px solid rgba(17, 43, 70, 0.08);
  box-shadow: 0 38px 80px rgba(8, 28, 51, 0.09);
}

.gfr-services-process-card {
  height: 100%;
  padding: 1.8rem;
  border-radius: var(--gfr-radius-xl);
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(17, 43, 70, 0.08);
  box-shadow: 0 20px 40px rgba(8, 28, 51, 0.08);
}

.gfr-services-process-card__number {
  margin-bottom: 1rem;
  font-family: "Barlow Condensed", sans-serif;
  font-size: clamp(2rem, 3vw, 2.8rem);
  font-weight: 700;
  line-height: 0.9;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--gfr-red);
}

.gfr-services-process-card__title {
  margin: 0;
  font-family: "Barlow Condensed", sans-serif;
  font-size: clamp(1.7rem, 2.4vw, 2.3rem);
  line-height: 0.98;
  text-transform: uppercase;
  color: var(--gfr-blue);
}

.gfr-services-process-card__text {
  margin: 0.95rem 0 0;
  color: var(--gfr-text);
  line-height: 1.8;
}

.gfr-about-credentials-section {
  background:
    radial-gradient(circle at top left, rgba(213, 37, 63, 0.14), transparent 18%),
    linear-gradient(135deg, #081c33 0%, #0c2948 100%);
}

.gfr-about-credentials-copy {
  max-width: 38rem;
}

.gfr-about-credentials-panel {
  padding: clamp(1.5rem, 3vw, 2.2rem);
  border-radius: calc(var(--gfr-radius-xl) + 2px);
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: var(--gfr-shadow-lg);
}

.gfr-about-credentials-panel__badge {
  display: grid;
  place-items: center;
  min-height: 13rem;
  padding: 1.5rem;
  border-radius: 24px;
  background: linear-gradient(180deg, #f7f9fc 0%, #edf2f8 100%);
}

.gfr-about-credentials-panel__badge-image {
  max-height: 7rem;
  width: auto;
}

.gfr-about-credentials-panel__badge-link,
.gfr-about-credentials-logo__link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  color: inherit;
  text-decoration: none;
}

.gfr-about-credentials-panel__copy h3 {
  margin: 1.4rem 0 0;
  font-family: "Barlow Condensed", sans-serif;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  line-height: 0.98;
  text-transform: uppercase;
  color: var(--gfr-blue);
}

.gfr-about-credentials-panel__copy p {
  margin: 0.9rem 0 0;
  color: var(--gfr-text);
  line-height: 1.8;
}

.gfr-about-credentials-logos {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.85rem;
  margin-top: 1.4rem;
}

.gfr-about-credentials-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 5.5rem;
  padding: 0.9rem;
  border-radius: 18px;
  background: #f5f8fc;
  border: 1px solid rgba(18, 61, 107, 0.08);
}

.gfr-about-credentials-logo img {
  max-height: 2.6rem;
  width: auto;
}

.gfr-hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 0;
  background:
    linear-gradient(112deg, rgba(7, 23, 40, 0.92) 0%, rgba(10, 38, 68, 0.82) 54%, rgba(7, 23, 40, 0.88) 100%),
    var(--gfr-hero-bg) center/cover no-repeat;
}

.gfr-hero-section .container-xxl {
  position: relative;
  z-index: 1;
}

.gfr-hero-section .row {
  min-height: 100vh;
  padding: 5.95rem 0 3.95rem;
  align-items: center;
}

.gfr-hero-copy {
  position: relative;
  max-width: 43rem;
  transform: translateY(-1.55rem);
}

.gfr-eyebrow {
  display: inline-flex;
  align-items: center;
  min-height: 2.65rem;
  padding: 0.55rem 1rem;
  border-radius: 999px;
  margin-bottom: 1.2rem;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.gfr-hero-title {
  margin: 0;
  font-family: "Barlow Condensed", sans-serif;
  font-size: clamp(3.4rem, 8vw, 6.4rem);
  line-height: 0.88;
  letter-spacing: 0.015em;
  text-transform: uppercase;
  color: #ffffff;
}

.gfr-hero-kicker {
  margin-top: 1.35rem;
  font-family: "Barlow Condensed", sans-serif;
  font-size: clamp(1.4rem, 2.8vw, 2rem);
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.88);
}

.gfr-hero-body {
  margin: 1.25rem 0 0;
  max-width: 34rem;
  font-size: 1.08rem;
  line-height: 1.85;
  color: rgba(255, 255, 255, 0.76);
}

.gfr-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}

.gfr-hero-trust {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.85rem;
  margin-top: 2.25rem;
}

.gfr-hero-trust__item {
  padding: 1rem 1.05rem;
  border-radius: var(--gfr-radius-md);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.95rem;
  line-height: 1.45;
}

.gfr-hero-trust__mark {
  display: block;
  margin-bottom: 0.45rem;
  color: #ffd8de;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.1em;
}

.gfr-hero-form {
  position: relative;
  z-index: 1;
  border-radius: var(--gfr-radius-xl);
  overflow: hidden;
  background: rgba(7, 23, 40, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--gfr-shadow-lg);
}

.gfr-hero-form::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: linear-gradient(90deg, var(--gfr-red) 0%, rgba(31, 80, 195, 0.8) 100%);
}

.gfr-hero-form__top,
.gfr-hero-form__body {
  padding: 2rem;
}

.gfr-hero-form__top {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.gfr-hero-form__eyebrow {
  margin-bottom: 0.5rem;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.62);
}

.gfr-hero-form__title {
  margin: 0;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 2rem;
  line-height: 0.96;
  text-transform: uppercase;
  color: #ffffff;
}

.gfr-hero-form__subtitle {
  margin: 0.85rem 0 0;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.7;
}

body:not(.home) .gfr-hero-section {
  min-height: clamp(42rem, 82vh, 54rem);
}

body:not(.home) .gfr-hero-section .row {
  min-height: clamp(42rem, 82vh, 54rem);
  padding-top: 7.5rem;
  padding-bottom: 4.5rem;
}

body:not(.home) .gfr-hero-copy {
  transform: none;
}

body:not(.home) .gfr-hero-body {
  max-width: 36rem;
}

.gfr-native-form,
.wpcf7-form,
.gfr-hero-form .gform_wrapper form,
.gfr-contact-form-card .gform_wrapper form {
  display: grid;
  gap: 1rem;
}

.gfr-native-form__field,
.wpcf7-form p,
.gfr-hero-form .gform_wrapper .gfield,
.gfr-contact-form-card .gform_wrapper .gfield {
  margin: 0;
}

.wpcf7-form-control-wrap {
  display: block;
}

.gfr-hero-form .gform_wrapper .gform_fields,
.gfr-contact-form-card .gform_wrapper .gform_fields {
  display: grid;
  gap: 1rem;
}

.gfr-hero-form .gform_wrapper,
.gfr-contact-form-card .gform_wrapper,
.gfr-hero-form .gform_wrapper .gform_footer,
.gfr-contact-form-card .gform_wrapper .gform_footer {
  margin: 0;
  padding: 0;
}

.gfr-hero-form .gform_wrapper .gform_required_legend,
.gfr-contact-form-card .gform_wrapper .gform_required_legend,
.gfr-hero-form .gform_wrapper .gfield_required,
.gfr-contact-form-card .gform_wrapper .gfield_required {
  display: none;
}

.gfr-native-form input,
.gfr-native-form select,
.wpcf7-form input,
.wpcf7-form select,
.wpcf7-form textarea,
.gfr-hero-form .gform_wrapper input:not([type="submit"]):not([type="button"]):not([type="hidden"]),
.gfr-hero-form .gform_wrapper select,
.gfr-hero-form .gform_wrapper textarea {
  width: 100%;
  min-height: 3.5rem;
  padding: 0.95rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  box-shadow: none;
}

.gfr-native-form select,
.wpcf7-form select,
.gfr-hero-form .gform_wrapper select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  padding-right: 3.4rem;
  background-image:
    linear-gradient(135deg, transparent 0%, transparent 100%),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 18 18'%3E%3Cpath fill='none' stroke='rgba(255,255,255,0.88)' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.8' d='m4.5 6.75 4.5 4.5 4.5-4.5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: 0 0, calc(100% - 1.1rem) 50%;
  background-size: auto, 1rem;
  cursor: pointer;
}

.gfr-native-form select,
.wpcf7-form select,
.gfr-hero-form .gform_wrapper select {
  height: 3.5rem;
  padding-top: 0;
  padding-bottom: 0;
  line-height: 3.5rem;
}

.gfr-native-form input::placeholder,
.wpcf7-form input::placeholder,
.wpcf7-form textarea::placeholder,
.gfr-hero-form .gform_wrapper input::placeholder,
.gfr-hero-form .gform_wrapper textarea::placeholder {
  color: rgba(255, 255, 255, 0.56);
}

.gfr-native-form input:focus,
.gfr-native-form select:focus,
.wpcf7-form input:focus,
.wpcf7-form select:focus,
.wpcf7-form textarea:focus,
.gfr-hero-form .gform_wrapper input:not([type="submit"]):not([type="button"]):focus,
.gfr-hero-form .gform_wrapper select:focus,
.gfr-hero-form .gform_wrapper textarea:focus {
  outline: none;
  border-color: rgba(255, 255, 255, 0.42);
  background: rgba(255, 255, 255, 0.12);
}

.wpcf7-form select option,
.gfr-native-form select option,
.gfr-hero-form .gform_wrapper select option {
  color: var(--gfr-ink);
  background: #f4f7fb;
}

.gfr-submit,
.wpcf7-submit,
.gfr-hero-form .gform_wrapper .gform_button,
.gfr-contact-form-card .gform_wrapper .gform_button {
  min-height: 3.5rem;
  padding: 0.95rem 1.1rem;
  border: 0 !important;
  border-radius: 14px;
  color: #ffffff !important;
  background: linear-gradient(135deg, #eb2747 0%, #c81835 100%) !important;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  box-shadow: 0 20px 30px rgba(213, 37, 63, 0.24);
}

.wpcf7-spinner {
  margin: 0 !important;
}

.wpcf7 form .wpcf7-response-output,
.gfr-hero-form .gform_wrapper .gform_confirmation_message,
.gfr-contact-form-card .gform_wrapper .gform_confirmation_message {
  margin: 0;
  padding: 0.85rem 1rem;
  border-radius: 14px;
  color: rgba(255, 255, 255, 0.84);
  border-color: rgba(255, 255, 255, 0.16);
}

.gfr-services-section,
.gfr-why-section,
.gfr-testimonials-section,
.gfr-values-section,
.gfr-cta-section {
  position: relative;
  padding: 6rem 0;
}

.gfr-services-section {
  padding-top: 3.6rem;
  background: linear-gradient(180deg, #edf3fb 0%, #e5eef9 100%);
}

.gfr-services-shell {
  padding: clamp(2rem, 3.2vw, 3rem);
  border-radius: calc(var(--gfr-radius-xl) + 10px);
  background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
  border: 1px solid rgba(17, 43, 70, 0.08);
  box-shadow: 0 40px 82px rgba(8, 28, 51, 0.1);
  overflow: hidden;
}

.gfr-services-intro {
  position: relative;
  margin-bottom: 1.85rem;
}

.gfr-services-grid {
  margin-top: 0;
}

.gfr-services-panel {
  padding: 2rem;
  border-radius: var(--gfr-radius-xl);
  background: linear-gradient(145deg, #0d2744 0%, #123b66 100%);
  color: #ffffff;
  box-shadow: var(--gfr-shadow-lg);
  max-width: 27rem;
  margin-left: auto;
  margin-top: 0.4rem;
}

.gfr-services-panel__eyebrow {
  margin-bottom: 0.65rem;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.62);
}

.gfr-services-panel__title {
  margin: 0;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 2rem;
  line-height: 0.98;
  text-transform: uppercase;
}

.gfr-services-panel__list {
  padding: 0;
  margin: 1rem 0 0;
  list-style: none;
}

.gfr-services-panel__list li {
  padding: 0.9rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.8);
}

.gfr-services-panel__cta {
  margin-top: 1.5rem;
}

.gfr-services-panel__cta span {
  display: block;
  margin-bottom: 0.25rem;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.9rem;
}

.gfr-services-panel__cta a {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
  color: #e71b52;
}

.gfr-service-card {
  width: 100%;
  display: grid;
  grid-template-columns: minmax(0, 0.96fr) minmax(0, 1.04fr);
  overflow: hidden;
  border-radius: var(--gfr-radius-xl);
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(17, 43, 70, 0.08);
  box-shadow: 0 22px 40px rgba(8, 28, 51, 0.08);
}

.gfr-service-card__media {
  position: relative;
  min-height: 100%;
  overflow: hidden;
}

.gfr-service-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gfr-service-card:hover .gfr-service-card__image {
  transform: scale(1.05);
}

.gfr-service-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(8, 28, 51, 0.1) 0%, rgba(8, 28, 51, 0.22) 100%);
}

.gfr-service-card__badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  padding: 0.45rem 0.8rem;
  border-radius: 999px;
  background: rgba(213, 37, 63, 0.92);
  color: #ffffff;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.gfr-service-card__body {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.55rem 1.6rem 1.55rem;
}

.gfr-service-card__meta {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
}

.gfr-service-card__index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2.35rem;
  min-height: 2.35rem;
  padding: 0 0.55rem;
  border-radius: 999px;
  background: rgba(213, 37, 63, 0.08);
  color: var(--gfr-red);
  font-family: "Barlow Condensed", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.gfr-service-card__eyebrow {
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(18, 61, 107, 0.6);
}

.gfr-service-card__title {
  margin: 0;
  font-family: "Barlow Condensed", sans-serif;
  font-size: clamp(1.95rem, 2.6vw, 2.6rem);
  line-height: 0.94;
  text-transform: uppercase;
  color: var(--gfr-blue);
}

.gfr-service-card__text {
  margin: 0;
  color: var(--gfr-text);
  font-size: 0.98rem;
  line-height: 1.72;
  display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.gfr-recognition-section {
  padding: 6rem 0;
  background:
    radial-gradient(circle at top right, rgba(213, 37, 63, 0.15), transparent 22%),
    linear-gradient(135deg, #081c33 0%, #0b2747 100%);
}

.gfr-recognition-copy {
  max-width: 36rem;
}

.gfr-recognition-subtext {
  margin: 1rem 0 0;
  color: #ffffff;
  font-family: "Barlow Condensed", sans-serif;
  font-size: clamp(1.3rem, 2.8vw, 1.8rem);
  line-height: 1.08;
  text-transform: uppercase;
}

.gfr-recognition-list {
  display: grid;
  gap: 0.9rem;
  padding: 0;
  margin: 1.6rem 0 0;
  list-style: none;
}

.gfr-recognition-list li {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  color: rgba(255, 255, 255, 0.82);
}

.gfr-recognition-list li::before {
  content: "";
  width: 0.65rem;
  height: 0.65rem;
  border-radius: 999px;
  background: var(--gfr-red);
  flex: none;
}

.gfr-recognition-media {
  border-radius: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: var(--gfr-shadow-lg);
  background: rgba(255, 255, 255, 0.05);
}

.gfr-recognition-video,
.gfr-recognition-placeholder {
  width: 100%;
  aspect-ratio: 16 / 9;
}

.gfr-recognition-placeholder {
  display: grid;
  place-items: center;
  color: rgba(255, 255, 255, 0.75);
}

.gfr-why-intro {
  position: relative;
  padding: 1.5rem 1.75rem;
  border-radius: var(--gfr-radius-xl);
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(17, 43, 70, 0.08);
  box-shadow: var(--gfr-shadow-md);
}

/* Scoped overrides â keep the intro box compact so the button is always visible */
.gfr-why-intro .gfr-section-title {
  font-size: clamp(1.4rem, 2.2vw, 1.9rem);
  line-height: 1.0;
}

.gfr-why-intro .gfr-why-kicker {
  margin-top: 0.6rem;
  font-size: clamp(1rem, 1.6vw, 1.2rem);
}

.gfr-why-intro .gfr-section-body {
  margin-top: 0.6rem;
  font-size: 1rem;
  line-height: 1.7;
}

.gfr-why-intro .gfr-why-checklist {
  gap: 0.4rem;
  margin: 0.9rem 0 1rem;
}

.gfr-why-intro .gfr-why-checklist li {
  padding: 0.55rem 0.9rem;
  font-size: 1rem;
}

.gfr-why-stack {
  position: relative;
  min-height: 36rem;
}

.gfr-why-stage {
  position: relative;
  min-height: clamp(33rem, 76vh, 40rem);
  display: grid;
  align-items: center;
  padding-top: 2rem;
  padding-bottom: 3.6rem;
}

.gfr-why-rail {
  position: relative;
  min-height: inherit;
}

.gfr-why-kicker {
  margin: 1rem 0 0;
  font-family: "Barlow Condensed", sans-serif;
  font-size: clamp(1.2rem, 2.4vw, 1.65rem);
  line-height: 1.08;
  text-transform: uppercase;
  color: var(--gfr-red);
}

.gfr-why-checklist {
  display: grid;
  gap: 0.7rem;
  padding: 0;
  margin: 1.6rem 0 1.8rem;
  list-style: none;
}

.gfr-why-checklist li {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 0.9rem 1rem;
  border-radius: 14px;
  background: var(--gfr-surface-alt);
  color: var(--gfr-ink);
  line-height: 1.5;
}

.gfr-why-checklist li::before {
  content: "";
  width: 0.65rem;
  height: 0.65rem;
  border-radius: 999px;
  background: var(--gfr-red);
  flex: none;
}

.gfr-why-card {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-start;
  min-height: inherit;
  padding: clamp(5.7rem, 13vh, 7.85rem) 0 0;
  overflow: visible;
  background: transparent;
  border: 0;
  box-shadow: none;
  opacity: 0;
  pointer-events: none;
  transform: translateY(2rem);
}

.gfr-why-card.is-active {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.gfr-why-card__number {
  position: absolute;
  top: 0.15rem;
  right: 0;
  font-family: "Barlow Condensed", sans-serif;
  font-size: clamp(5rem, 8vw, 7rem);
  line-height: 0.85;
  color: rgba(223, 21, 58, 0.08);
}

.gfr-why-card__inner {
  display: flex;
  flex-direction: column;
  width: min(100%, 55rem);
  margin: 0 auto;
  min-height: 17rem;
  border-radius: var(--gfr-radius-xl);
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(17, 43, 70, 0.08);
  box-shadow: var(--gfr-shadow-md);
  overflow: hidden;
}

.gfr-why-card__top {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.4rem;
  align-items: start;
  flex: 1;
  padding: 1.75rem 2.25rem;
}

.gfr-why-card__image {
  height: 16rem;
  overflow: hidden;
  flex-shrink: 0;
}

.gfr-why-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gfr-why-card:hover .gfr-why-card__img {
  transform: scale(1.04);
}

.gfr-why-card__icon {
  width: 3.5rem;
  height: 3.5rem;
  display: grid;
  place-items: center;
  border-radius: 18px;
  background: rgba(213, 37, 63, 0.08);
}

.gfr-why-card__icon svg {
  width: 1.4rem;
  height: 1.4rem;
  fill: none;
  stroke: var(--gfr-red);
  stroke-width: 1.7;
}

.gfr-why-card__copy {
  position: relative;
  padding-left: 1.15rem;
}

.gfr-why-card__copy::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.15rem;
  bottom: 0.15rem;
  width: 2px;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(223, 21, 58, 0.68) 0%, rgba(223, 21, 58, 0.08) 100%);
}

.gfr-btn--why {
  color: #ffffff;
  background: #df153a;
  box-shadow: 0 20px 34px rgba(223, 21, 58, 0.28);
}

.gfr-btn--why:hover {
  box-shadow: 0 26px 40px rgba(223, 21, 58, 0.34);
}

.gfr-why-card__title,
.gfr-value-card__title {
  margin: 0;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 1.8rem;
  line-height: 0.98;
  text-transform: uppercase;
  color: var(--gfr-blue);
}

.gfr-why-card__text,
.gfr-value-card__text {
  margin: 1rem 0 0;
  color: var(--gfr-text);
  line-height: 1.8;
}

.gfr-why-card__text {
  max-width: 33rem;
}

.gfr-testimonials-section {
  background: linear-gradient(180deg, #ffffff 0%, #f4f7fb 100%);
}

.gfr-testimonials-nav {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.55rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(17, 43, 70, 0.08);
}

.gfr-testimonials-nav__button {
  width: 2.75rem;
  height: 2.75rem;
  border: 0;
  border-radius: 999px;
  background: var(--gfr-navy);
  color: #ffffff;
  font-size: 1rem;
}

.gfr-testimonials-nav__count {
  min-width: 4rem;
  text-align: center;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gfr-blue);
}

.gfr-testimonials-slider {
  overflow: hidden;
  background: transparent;
}

.gfr-testimonials-track {
  display: flex;
  gap: 1.5rem;
  transition: transform 0.55s ease;
  will-change: transform;
}

.gfr-testimonial-card {
  flex: 0 0 calc((100% - 3rem) / 3);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 100%;
  padding: 2rem;
  border-radius: var(--gfr-radius-xl);
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.65);
  backdrop-filter: blur(8px);
  box-shadow: none;
}

.gfr-testimonial-card__stars {
  display: inline-flex;
  gap: 0.32rem;
}

.gfr-testimonial-card__stars span {
  width: 0.95rem;
  height: 0.95rem;
  clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 92%, 50% 70%, 21% 92%, 32% 57%, 2% 35%, 39% 35%);
  background: var(--gfr-red);
}

.gfr-testimonial-card__quote {
  margin: 1.35rem 0 0;
  color: var(--gfr-ink);
  font-size: 1rem;
  line-height: 1.9;
}

.gfr-testimonial-card__footer {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 1.5rem;
}

.gfr-testimonial-card__name {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 1.45rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--gfr-blue);
}

.gfr-testimonial-card__source {
  margin-top: 0.2rem;
  color: var(--gfr-text);
}

.gfr-testimonial-card__badge {
  display: inline-flex;
  align-items: center;
  min-height: 2.4rem;
  padding: 0.45rem 0.85rem;
  border-radius: 999px;
  background: var(--gfr-surface-alt);
  color: var(--gfr-blue);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  white-space: nowrap;
}

.gfr-testimonials-dots {
  display: flex;
  justify-content: center;
  gap: 0.6rem;
  margin-top: 1.8rem;
}

.gfr-testimonials-dots button {
  width: 0.75rem;
  height: 0.75rem;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(17, 43, 70, 0.18);
}

.gfr-testimonials-dots button.is-active {
  width: 2rem;
  background: var(--gfr-red);
}

.gfr-value-card {
  position: relative;
  padding: 2rem;
  border-radius: var(--gfr-radius-xl);
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(17, 43, 70, 0.08);
  box-shadow: var(--gfr-shadow-md);
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.gfr-values-section {
  padding-bottom: 5.5rem;
  background: linear-gradient(180deg, #ffffff 0%, #f4f7fb 100%);
}

.gfr-values-intro {
  position: relative;
  padding: clamp(2rem, 3vw, 2.8rem);
  border-radius: var(--gfr-radius-xl);
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(17, 43, 70, 0.08);
  box-shadow: var(--gfr-shadow-md);
}

.gfr-values-list {
  position: relative;
  display: grid;
  gap: 1.4rem;
  padding-left: 1.5rem;
}

.gfr-value-card.is-active {
  transform: translateY(-0.35rem);
  border-color: rgba(213, 37, 63, 0.16);
  box-shadow: 0 28px 60px rgba(8, 28, 51, 0.14);
}

.gfr-values-list::before {
  content: "";
  position: absolute;
  left: 0.35rem;
  top: 0.6rem;
  bottom: 0.6rem;
  width: 2px;
  background: linear-gradient(180deg, rgba(18, 61, 107, 0.08) 0%, rgba(18, 61, 107, 0.24) 100%);
}

.gfr-value-card::before {
  content: "";
  position: absolute;
  left: -1.15rem;
  top: 2.1rem;
  width: 0.7rem;
  height: 0.7rem;
  border-radius: 999px;
  background: #ffffff;
  border: 2px solid rgba(18, 61, 107, 0.2);
  box-shadow: 0 0 0 10px rgba(244, 247, 251, 0.92);
}

.gfr-value-card.is-active::before {
  border-color: var(--gfr-red);
  background: var(--gfr-red);
}

.gfr-value-card__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.85rem;
}

.gfr-value-card__index {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gfr-red);
}

.gfr-value-card__icon {
  width: 3.2rem;
  height: 3.2rem;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(223, 21, 58, 0.08);
  color: var(--gfr-red);
  flex-shrink: 0;
}

.gfr-value-card__icon svg {
  width: 1.6rem;
  height: 1.6rem;
}

.gfr-trust-band {
  padding: 2.4rem 0;
  background:
    linear-gradient(135deg, #0b2038 0%, #143f6e 100%);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.gfr-trust-band__item {
  height: 100%;
  padding: 1.5rem;
  border-radius: var(--gfr-radius-lg);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.gfr-trust-band__value {
  font-family: "Barlow Condensed", sans-serif;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 0.9;
  text-transform: uppercase;
  color: #ffffff;
}

.gfr-trust-band__label {
  margin-top: 0.7rem;
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.92rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.gfr-cta-section {
  padding: 0;
  background: linear-gradient(180deg, #143f6e 0%, #081829 100%);
}

.gfr-cta-shell {
  width: 100%;
  padding: clamp(2.8rem, 5vw, 4.4rem) 0;
  border-radius: 0;
  background:
    radial-gradient(ellipse 50% 120% at 100% 50%, rgba(223, 21, 58, 0.35) 0%, rgba(223, 21, 58, 0.08) 45%, transparent 70%),
    radial-gradient(ellipse 35% 60% at 0% 100%, rgba(180, 10, 40, 0.20) 0%, transparent 55%),
    linear-gradient(118deg, rgba(7, 23, 40, 0.98) 0%, rgba(11, 39, 71, 0.97) 52%, rgba(7, 23, 40, 0.99) 100%);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: none;
}

.gfr-cta-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-lg-end;
  gap: 1rem;
}

.gfr-footer {
  padding: 5rem 0 2rem;
  background:
    linear-gradient(180deg, #081829 0%, #06131f 100%);
  color: rgba(255, 255, 255, 0.74);
}

.gfr-footer__logo {
  width: auto;
  height: 2.7rem;
}

.gfr-footer__copy {
  margin: 1.1rem 0 0;
  max-width: 25rem;
  line-height: 1.85;
}

.gfr-footer__social {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 1.4rem;
}

.gfr-footer__social a,
.gfr-footer__contact a,
.gfr-footer__list a {
  color: rgba(255, 255, 255, 0.74);
}

.gfr-footer__social a:hover,
.gfr-footer__contact a:hover,
.gfr-footer__list a:hover {
  color: #ffffff;
}

.gfr-footer__title {
  margin: 0 0 1rem;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 1.5rem;
  line-height: 1;
  text-transform: uppercase;
  color: #ffffff;
}

.gfr-footer__list,
.gfr-footer__contact {
  margin: 0;
  padding: 0;
  list-style: none;
}

.gfr-footer__list li,
.gfr-footer__contact li {
  margin-bottom: 0.85rem;
  line-height: 1.7;
}

.gfr-footer__contact span {
  display: block;
  margin-bottom: 0.15rem;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.46);
}

.gfr-footer__badges {
  display: grid;
  gap: 0.85rem;
}

.gfr-footer__badge {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 6.25rem;
  padding: 1rem;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.gfr-footer__badge img {
  max-height: 3.1rem;
  width: auto;
}

.gfr-footer__bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.75rem;
  margin-top: 3rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.9rem;
}

.gfr-footer__bottom p {
  margin: 0;
}

/* ââ Inner Page Typography Scale ââââââââââââââââââââââââââââââââââââââ */
/*
 * Rule: Inner pages H1 â¤ 48px, scale H2âH5 proportionally.
 *
 *   H1  clamp(1.75rem, 4vw, 3rem)    â max 48px
 *   H2  clamp(1.3rem, 2.5vw, 2.25rem) â max 36px
 *   H3  clamp(1.1rem, 2vw, 1.75rem)  â max 28px
 *   H4  clamp(1rem, 1.5vw, 1.375rem) â max 22px
 *   H5  clamp(0.9rem, 1.2vw, 1.1rem) â max 18px
 */

/* H1 â inner page banners (all inner page title classes unified here) */
.gfr-page-banner__title,
.gfr-inner-hero__title,
.gfr-about-hero-title,
.gfr-gallery-hero__title,
.gfr-contact-hero-title {
  font-family: "Barlow Condensed", sans-serif;
  font-size: clamp(1.75rem, 4vw, 3rem);
  font-weight: 500;
  line-height: 1.0;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  color: #ffffff;
}

/* H2 â ALL inner pages (body:not(.home) catches every non-homepage section,
   including cta-banner, financing, blog, contact, gallery, projects, etc.)
   Replaces per-section scoped rules â one rule handles all present & future blocks. */
body:not(.home) .gfr-section-title,
.gfr-contact-info-col__title,
.gfr-contact-form-card__title {
  font-size: clamp(1.3rem, 2.5vw, 2.25rem); /* max 36px */
}

/* H3 â card/item headings on inner pages */
.gfr-about-story-section h3,
.gfr-about-standards-section h3,
.gfr-contact-section h3,
.gfr-estimate-form-section__aside h3,
.gfr-services-process-section h3 {
  font-size: clamp(1.1rem, 2vw, 1.75rem); /* max 28px */
}

/* H4 */
.gfr-about-story-section h4,
.gfr-about-standards-section h4,
.gfr-contact-section h4 {
  font-size: clamp(1rem, 1.5vw, 1.375rem); /* max 22px */
}

/* ââ Unified Inner Page Banner ââââââââââââââââââââââââââââââââââââââââ */
/*
 * Single reusable dark-navy banner for ALL inner pages.
 * No background image. No bottom curve. Flat edge.
 * Replaces: .gfr-inner-hero, .gfr-blog-hero-section (all now use .gfr-page-banner)
 */
.gfr-page-banner {
  padding: 6.5rem 0 3rem;
  background:
    radial-gradient(ellipse 50% 120% at 100% 50%, rgba(223, 21, 58, 0.35) 0%, rgba(223, 21, 58, 0.08) 45%, transparent 70%),
    radial-gradient(ellipse 35% 60% at 0% 100%, rgba(180, 10, 40, 0.20) 0%, transparent 55%),
    linear-gradient(118deg, rgba(7, 23, 40, 0.98) 0%, rgba(11, 39, 71, 0.97) 52%, rgba(7, 23, 40, 0.99) 100%);
}

.gfr-page-banner .gfr-section-tag--light {
  color: var(--gfr-red);
}

.gfr-page-banner__title {
  margin: 0.6rem 0 0;
  /* font properties unified via the global inner-page H1 rule */
}

.gfr-page-banner__body {
  margin: 0.85rem 0 0;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.75;
  max-width: 44rem;
  font-size: 1rem;
}

.gfr-page-banner__actions {
  margin-top: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.gfr-page-banner__badges {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.gfr-page-banner__badge {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.82);
}

.gfr-page-banner__badge-dot {
  flex-shrink: 0;
  width: 0.4rem;
  height: 0.4rem;
  border-radius: 50%;
  background: var(--gfr-red);
}

/* Legacy aliases â kept so any remaining old markup still renders */
.gfr-inner-hero {
  padding: 6.5rem 0 3rem;
  background: var(--gfr-navy);
}
.gfr-inner-hero__bg,
.gfr-inner-hero__edge { display: none; }
.gfr-inner-hero__title {
  margin: 0.6rem 0 0;
  /* font properties unified via the global inner-page H1 rule */
}
.gfr-inner-hero__body {
  margin: 0.85rem 0 0;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.75;
  max-width: 44rem;
}
.gfr-inner-hero__actions {
  margin-top: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}
.gfr-inner-hero--estimate,
.gfr-inner-hero--contact { padding-bottom: 2.5rem; }

/* Legacy blog hero */
.gfr-blog-hero-section {
  padding: 6.5rem 0 3rem;
  background: var(--gfr-navy);
}
.gfr-blog-hero-section::before { display: none; }
.gfr-blog-hero-copy { max-width: 48rem; }
.gfr-blog-hero-title {
  margin: 0.6rem 0 0;
  font-family: "Barlow Condensed", sans-serif;
  font-size: clamp(1.75rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.0;
  text-transform: uppercase;
  color: #ffffff;
}
.gfr-blog-hero-body {
  margin: 0.85rem 0 0;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.75;
  max-width: 40rem;
}

/* ââ Blog Grid ââââââââââââââââââââââââââââââââââââââââââââââââââââââââ */
.gfr-blog-section {
  padding: 4rem 0 5rem;
}

.gfr-blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.gfr-post-card {
  display: flex;
  flex-direction: column;
  border-radius: var(--gfr-radius-lg);
  background: #ffffff;
  border: 1px solid rgba(17, 43, 70, 0.08);
  box-shadow: var(--gfr-shadow-sm);
  overflow: hidden;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.gfr-post-card:hover {
  box-shadow: var(--gfr-shadow-md);
  transform: translateY(-3px);
}

.gfr-post-card__media {
  display: block;
  height: 14rem;
  overflow: hidden;
  background: var(--gfr-navy);
}

.gfr-post-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gfr-post-card:hover .gfr-post-card__media img {
  transform: scale(1.04);
}

.gfr-post-card__body {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 1.5rem 1.75rem;
}

.gfr-post-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1rem;
  margin-bottom: 0.75rem;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gfr-red);
}

.gfr-post-card__title {
  margin: 0 0 0.6rem;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 1.45rem;
  font-weight: 700;
  line-height: 1.2;
  text-transform: uppercase;
  color: var(--gfr-blue);
}

.gfr-post-card__title a {
  color: inherit;
  text-decoration: none;
}

.gfr-post-card__title a:hover {
  color: var(--gfr-red);
}

.gfr-post-card__excerpt {
  margin: 0;
  color: var(--gfr-text);
  line-height: 1.7;
  flex: 1;
}

.gfr-post-card__footer {
  margin-top: 1.25rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(17, 43, 70, 0.08);
}

.gfr-post-card__link {
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--gfr-red);
  text-decoration: none;
}

.gfr-post-card__link:hover {
  text-decoration: underline;
}

.gfr-blog-pagination {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 3rem;
}

.gfr-blog-pagination a,
.gfr-blog-pagination span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2.5rem;
  height: 2.5rem;
  padding: 0 0.75rem;
  border-radius: var(--gfr-radius);
  border: 1px solid rgba(17, 43, 70, 0.12);
  background: #ffffff;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--gfr-blue);
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
}

.gfr-blog-pagination .current,
.gfr-blog-pagination a:hover {
  background: var(--gfr-red);
  color: #ffffff;
  border-color: var(--gfr-red);
}

/* ââ Contact Section (white bg) ââââââââââââââââââââââââââââââââââââââ */
.gfr-contact-section {
  padding: 4.5rem 0 5rem;
  background: #ffffff;
}

.gfr-contact-info-col__title {
  margin: 0 0 0.6rem;
  font-family: "Barlow Condensed", sans-serif;
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 800;
  text-transform: uppercase;
  color: var(--gfr-blue);
  line-height: 1.1;
}

.gfr-contact-info-col__body {
  margin: 0 0 1.75rem;
  color: var(--gfr-text);
  line-height: 1.7;
}

.gfr-contact-info {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
  margin-bottom: 2rem;
}

.gfr-contact-info__item {
  display: flex;
  align-items: flex-start;
  gap: 0.9rem;
  text-decoration: none;
  color: var(--gfr-text);
  transition: color 0.2s;
}

.gfr-contact-info__item:hover {
  color: var(--gfr-red);
}

.gfr-contact-info__icon {
  flex-shrink: 0;
  width: 2.5rem;
  height: 2.5rem;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(223, 21, 58, 0.08);
  color: var(--gfr-red);
}

.gfr-contact-info__content {
  min-width: 0;
  padding-top: 0.15rem;
}

.gfr-contact-info__label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(17, 43, 70, 0.45);
  margin-bottom: 0.15rem;
}

.gfr-contact-info__value {
  font-size: 1rem;
  font-weight: 500;
  color: var(--gfr-blue);
}

.gfr-contact-trust-list {
  list-style: none;
  margin: 0;
  padding: 1.25rem 0 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  border-top: 1px solid rgba(17, 43, 70, 0.08);
}

.gfr-contact-trust-list li {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.875rem;
  color: var(--gfr-text);
}

.gfr-contact-trust-list li::before {
  content: "";
  flex-shrink: 0;
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 50%;
  background: var(--gfr-red);
}

/* ââ Contact Form Card ââââââââââââââââââââââââââââââââââââââââââââââââ */
.gfr-contact-form-card {
  background: #ffffff;
  border-radius: var(--gfr-radius-xl);
  border: 1px solid rgba(17, 43, 70, 0.1);
  box-shadow: 0 8px 32px rgba(17, 43, 70, 0.1);
  overflow: hidden;
}

.gfr-contact-form-card__header {
  padding: 1.75rem 2rem 1.25rem;
  border-bottom: 1px solid rgba(17, 43, 70, 0.08);
  background: #f7f9fb;
}

.gfr-contact-form-card__eyebrow {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gfr-red);
  margin-bottom: 0.35rem;
}

.gfr-contact-form-card__title {
  margin: 0 0 0.3rem;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 1.65rem;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--gfr-blue);
  line-height: 1.1;
}

.gfr-contact-form-card__sub {
  margin: 0;
  font-size: 0.85rem;
  color: var(--gfr-text);
  line-height: 1.5;
}

.gfr-contact-form-card__body {
  padding: 1.75rem 2rem 2rem;
}

.gfr-contact-form-card__notice {
  padding: 1rem;
  background: #fff8e7;
  border-radius: var(--gfr-radius);
  color: var(--gfr-text);
  font-size: 0.9rem;
}

/* Form fields â light background override */
.gfr-contact-form-card .wpcf7-form input,
.gfr-contact-form-card .wpcf7-form select,
.gfr-contact-form-card .wpcf7-form textarea,
.gfr-estimate-form-section .wpcf7-form input,
.gfr-estimate-form-section .wpcf7-form select,
.gfr-estimate-form-section .wpcf7-form textarea,
.gfr-contact-form-card .gform_wrapper input:not([type="submit"]):not([type="button"]):not([type="hidden"]),
.gfr-contact-form-card .gform_wrapper select,
.gfr-contact-form-card .gform_wrapper textarea,
.gfr-estimate-form-section .gform_wrapper input:not([type="submit"]):not([type="button"]):not([type="hidden"]),
.gfr-estimate-form-section .gform_wrapper select,
.gfr-estimate-form-section .gform_wrapper textarea {
  border: 1.5px solid rgba(17, 43, 70, 0.18);
  background: #f7f9fb;
  color: var(--gfr-blue);
}

.gfr-contact-form-card .wpcf7-form input::placeholder,
.gfr-contact-form-card .wpcf7-form textarea::placeholder,
.gfr-estimate-form-section .wpcf7-form input::placeholder,
.gfr-estimate-form-section .wpcf7-form textarea::placeholder,
.gfr-contact-form-card .gform_wrapper input::placeholder,
.gfr-contact-form-card .gform_wrapper textarea::placeholder,
.gfr-estimate-form-section .gform_wrapper input::placeholder,
.gfr-estimate-form-section .gform_wrapper textarea::placeholder {
  color: rgba(17, 43, 70, 0.38);
}

.gfr-contact-form-card .wpcf7-form input:focus,
.gfr-contact-form-card .wpcf7-form select:focus,
.gfr-contact-form-card .wpcf7-form textarea:focus,
.gfr-estimate-form-section .wpcf7-form input:focus,
.gfr-estimate-form-section .wpcf7-form select:focus,
.gfr-estimate-form-section .wpcf7-form textarea:focus,
.gfr-contact-form-card .gform_wrapper input:not([type="submit"]):not([type="button"]):focus,
.gfr-contact-form-card .gform_wrapper select:focus,
.gfr-contact-form-card .gform_wrapper textarea:focus,
.gfr-estimate-form-section .gform_wrapper input:not([type="submit"]):not([type="button"]):focus,
.gfr-estimate-form-section .gform_wrapper select:focus,
.gfr-estimate-form-section .gform_wrapper textarea:focus {
  border-color: var(--gfr-red);
  background: #ffffff;
  box-shadow: 0 0 0 3px rgba(223, 21, 58, 0.1);
}

.gfr-contact-form-card .wpcf7-form label,
.gfr-estimate-form-section .wpcf7-form label,
.gfr-contact-form-card .gform_wrapper .gfield_label,
.gfr-estimate-form-section .gform_wrapper .gfield_label {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  color: var(--gfr-blue);
}

.gfr-contact-form-card .wpcf7-form label br,
.gfr-estimate-form-section .wpcf7-form label br {
  display: none;
}

.gfr-contact-form-card .wpcf7-form select,
.gfr-estimate-form-section .wpcf7-form select,
.gfr-contact-form-card .gform_wrapper select,
.gfr-estimate-form-section .gform_wrapper select {
  background-image:
    linear-gradient(135deg, transparent 0%, transparent 100%),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 18 18'%3E%3Cpath fill='none' stroke='rgba(17,43,70,0.7)' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.8' d='m4.5 6.75 4.5 4.5 4.5-4.5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: 0 0, calc(100% - 1.1rem) 50%;
  background-size: auto, 1rem;
}

.gfr-hero-form .gform_wrapper input:not([type="submit"]):not([type="button"]):not([type="hidden"]),
.gfr-hero-form .gform_wrapper select,
.gfr-hero-form .gform_wrapper textarea,
.gfr-contact-form-card .gform_wrapper input:not([type="submit"]):not([type="button"]):not([type="hidden"]),
.gfr-contact-form-card .gform_wrapper select,
.gfr-contact-form-card .gform_wrapper textarea,
.gfr-estimate-form-section .gform_wrapper input:not([type="submit"]):not([type="button"]):not([type="hidden"]),
.gfr-estimate-form-section .gform_wrapper select,
.gfr-estimate-form-section .gform_wrapper textarea {
  min-height: 3.5rem !important;
  padding: 0.95rem 1rem !important;
  border-radius: 14px !important;
  box-shadow: none;
}

.gfr-hero-form .gform_wrapper select,
.gfr-contact-form-card .gform_wrapper select,
.gfr-estimate-form-section .gform_wrapper select {
  height: 3.5rem !important;
  padding-top: 0 !important;
  padding-bottom: 0 !important;
  line-height: 3.5rem !important;
}

.gfr-hero-form .gform_wrapper .gform_button,
.gfr-contact-form-card .gform_wrapper .gform_button,
.gfr-estimate-form-section .gform_wrapper .gform_button {
  width: 100% !important;
  min-height: 3.5rem !important;
  padding: 0.95rem 1.1rem !important;
  border-radius: 14px !important;
}

/* ââ Inner hero â contact variant ââââââââââââââââââââââââââââââââââââ */
.gfr-inner-hero--contact {
  min-height: 20rem;
  padding-bottom: 3rem;
}

/* ââ Legacy contact hero section (kept for compatibility) âââââââââââââ */
.gfr-contact-hero-section {
  position: relative;
  padding: 7rem 0 5rem;
  background: var(--gfr-navy);
  overflow: hidden;
}

.gfr-contact-hero-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: var(--gfr-contact-hero-bg);
  background-size: cover;
  background-position: center;
  opacity: 0.15;
  z-index: 0;
}

.gfr-contact-hero-section > .container-xxl {
  position: relative;
  z-index: 1;
}

.gfr-contact-copy {
  color: #ffffff;
}

.gfr-contact-hero-title {
  margin: 0.75rem 0 0;
  font-family: "Barlow Condensed", sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.0;
  text-transform: uppercase;
  color: #ffffff;
}

/* Legacy dark-bg contact hero â scoped so it does not override the current white-bg layout */
.gfr-contact-hero-section .gfr-contact-info {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 1.75rem;
}

.gfr-contact-hero-section .gfr-contact-info__item {
  display: flex;
  align-items: flex-start;
  gap: 0.9rem;
  text-decoration: none;
  color: rgba(255, 255, 255, 0.88);
  transition: color 0.2s;
}

.gfr-contact-hero-section .gfr-contact-info__item:hover {
  color: #ffffff;
}

.gfr-contact-hero-section .gfr-contact-info__icon {
  flex-shrink: 0;
  width: 2.4rem;
  height: 2.4rem;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(223, 21, 58, 0.2);
  color: #df153a;
}

.gfr-contact-hero-section .gfr-contact-info__content {
  min-width: 0;
}

.gfr-contact-hero-section .gfr-contact-info__label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 0.1rem;
}

.gfr-contact-hero-section .gfr-contact-info__value {
  font-size: 1rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.92);
}

/* ââ Hero Form (light-bg duplicate removed â dark styling lives at line ~1557) ââ */

/* ââ Free Estimate ââââââââââââââââââââââââââââââââââââââââââââââââââââ */
.gfr-estimate-form-section {
  padding: 4rem 0 5rem;
  background: var(--gfr-light);
}

.gfr-estimate-form-section__aside {
  padding: 2rem 1.75rem;
  background: #ffffff;
  border-radius: var(--gfr-radius-lg);
  border: 1px solid rgba(17, 43, 70, 0.08);
  box-shadow: var(--gfr-shadow-sm);
}

.gfr-estimate-form-section__aside-list {
  list-style: none;
  margin: 1rem 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.gfr-estimate-form-section__aside-list li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.9rem;
  color: var(--gfr-text);
}

.gfr-estimate-form-section__aside-list li::before {
  content: "â";
  font-weight: 700;
  color: var(--gfr-red);
  flex-shrink: 0;
}

.gfr-estimate-form-section__phone {
  margin-top: 1.25rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(17, 43, 70, 0.08);
}

@media (max-width: 1199.98px) {
  .gfr-gallery-hero {
    padding-top: 6.35rem;
  }

  .gfr-gallery-showcase__header {
    grid-template-columns: 1fr;
  }

  .gfr-gallery-masonry {
    column-count: 3;
  }

  .gfr-project-card__media-grid {
    grid-template-rows: repeat(2, minmax(8rem, 13rem));
  }
}

@media (max-width: 991.98px) {
  .gfr-gallery-hero__media {
    min-height: 28rem;
    margin-top: 1rem;
  }

  .gfr-gallery-masonry {
    column-count: 2;
  }

  .gfr-project-card__copy {
    padding: 0;
  }
}

@media (max-width: 767.98px) {
  .gfr-gallery-hero {
    padding: 6rem 0 3.5rem;
  }

  .gfr-gallery-hero__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .gfr-gallery-hero__actions .gfr-btn {
    justify-content: center;
  }

  .gfr-gallery-hero__media {
    min-height: 24rem;
  }

  .gfr-gallery-hero__card--1 {
    width: 62%;
    height: 14rem;
  }

  .gfr-gallery-hero__card--2 {
    width: 38%;
    height: 9rem;
    top: 1.5rem;
  }

  .gfr-gallery-hero__card--3 {
    left: 0.8rem;
    width: 30%;
    height: 8rem;
  }

  .gfr-gallery-hero__card--4 {
    right: 0;
    bottom: 0;
    width: 48%;
    height: 11rem;
  }

  .gfr-gallery-showcase {
    padding: 3.75rem 0 4.2rem;
  }

  .gfr-projects-showcase {
    padding: 4rem 0 4.5rem;
  }

  .gfr-project-card {
    padding: 1rem;
    border-radius: 24px;
  }

  .gfr-project-card__media-grid {
    grid-template-columns: 1fr;
    grid-template-rows: none;
  }

  .gfr-project-card__media--1 {
    grid-row: auto;
  }

  .gfr-project-card__media {
    min-height: 13.5rem;
  }

  .gfr-project-card__actions .gfr-btn {
    width: 100%;
  }

  .gfr-gallery-masonry {
    column-count: 1;
  }

  .gfr-gallery-lightbox .modal-body {
    padding: 1rem;
  }

  .gfr-gallery-lightbox__stage {
    grid-template-columns: 1fr;
  }

  .gfr-gallery-lightbox__nav {
    position: absolute;
    top: 50%;
    z-index: 2;
    transform: translateY(-50%);
  }

  .gfr-gallery-lightbox__nav--prev {
    left: 0.75rem;
  }

  .gfr-gallery-lightbox__nav--next {
    right: 0.75rem;
  }

  .gfr-gallery-lightbox__meta {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (min-width: 1200px) {
  /* Section must fill the viewport from the pin anchor (top+=108) to the bottom
     so that during the scroll animation the next section cannot peek in below. */
  .gfr-why-section {
    min-height: calc(100vh - 6.75rem); /* 6.75rem â 108px = top offset in ScrollTrigger */
  }
}

@media (max-width: 1199.98px) {
  .gfr-nav-list .sub-menu {
    position: static;
    min-width: 0;
    margin-top: 0.5rem;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    background: rgba(255, 255, 255, 0.04);
  }

  .gfr-why-intro {
    position: static;
  }

  .gfr-why-stack {
    min-height: 0;
  }

  .gfr-why-stage {
    min-height: 0;
    padding-top: 0;
    padding-bottom: 0;
  }

  .gfr-testimonial-card {
    flex-basis: calc((100% - 1.5rem) / 2);
  }

  .gfr-values-list {
    padding-left: 1.25rem;
  }
}

@media (max-width: 991.98px) {
  .gfr-topbar {
    display: none;
  }

  .gfr-financing-card,
  .gfr-financing-visual,
  .vibe-content-card {
    padding: 1.5rem;
    border-radius: 1.4rem;
  }

  .gfr-header {
    top: 0;
  }

  .gfr-services-section {
    padding-top: 3.5rem;
  }

  .gfr-services-shell {
    padding: 1.6rem;
  }

  .gfr-services-intro {
    margin-bottom: 2rem;
  }

  .gfr-services-panel {
    margin-top: 0;
  }

  .gfr-hero-copy,
  .gfr-hero-body,
  .gfr-recognition-copy,
  .gfr-about-hero-copy,
  .gfr-about-story-copy,
  .gfr-about-credentials-copy {
    max-width: none;
  }

  .gfr-cta-actions {
    justify-content: flex-start;
  }

  .gfr-about-hero-trust,
  .gfr-about-hero-milestones,
  .gfr-about-story-milestones,
  .gfr-about-credentials-logos {
    grid-template-columns: 1fr;
  }

  .gfr-about-story-visual {
    min-height: 31rem;
  }

  .gfr-about-story-visual__primary {
    inset: 0 4rem 6rem 0;
  }

  .gfr-about-story-visual__secondary {
    width: 45%;
  }

  .gfr-values-list {
    padding-left: 1rem;
  }
}

@media (max-width: 767.98px) {
  .gfr-hero-section {
    min-height: auto;
    padding: 5.75rem 0 3.25rem;
  }

  .gfr-hero-section .row {
    min-height: auto;
    padding: 0;
  }

  .gfr-hero-trust {
    grid-template-columns: 1fr;
  }

  .gfr-services-section,
  .gfr-recognition-section,
  .gfr-why-section,
  .gfr-testimonials-section,
  .gfr-values-section,
  .gfr-cta-section,
  .gfr-services-process-section,
  .gfr-about-story-section,
  .gfr-about-standards-section,
  .gfr-about-credentials-section {
    padding: 4.5rem 0;
  }

  .gfr-about-hero-section {
    padding: 4.75rem 0 3.5rem;
  }

  .gfr-services-section {
    padding-top: 3rem;
  }

  body:not(.home) .gfr-hero-section {
    min-height: auto;
  }

  body:not(.home) .gfr-hero-section .row {
    min-height: auto;
    padding-top: 0;
    padding-bottom: 0;
  }

  .gfr-services-shell {
    padding: 1.15rem;
    border-radius: 24px;
  }

  .gfr-hero-copy {
    transform: translateY(0);
  }

  .gfr-services-panel,
  .gfr-hero-form,
  .gfr-why-intro,
  .gfr-about-hero-panel,
  .gfr-about-standard-card,
  .gfr-services-process-card,
  .gfr-about-story-milestone,
  .gfr-about-credentials-panel,
  .gfr-service-card,
  .gfr-why-card,
  .gfr-testimonial-card,
  .gfr-value-card {
    border-radius: 22px;
  }

  .gfr-services-intro {
    margin-bottom: 1.4rem;
  }

  .gfr-hero-form__top,
  .gfr-hero-form__body,
  .gfr-services-panel,
  .gfr-why-intro,
  .gfr-about-hero-panel,
  .gfr-about-standard-card,
  .gfr-services-process-card,
  .gfr-about-credentials-panel,
  .gfr-testimonial-card,
  .gfr-value-card {
    padding: 1.4rem;
  }

  .gfr-about-hero-trust,
  .gfr-about-hero-milestones {
    grid-template-columns: 1fr;
  }

  .gfr-about-hero-panel {
    transform: translateY(-1.2rem);
  }

  .gfr-about-story-visual {
    min-height: 0;
  }

  .gfr-about-story-visual__primary,
  .gfr-about-story-visual__secondary {
    position: relative;
    inset: auto;
    width: 100%;
    aspect-ratio: 1.08 / 1;
  }

  .gfr-about-story-visual__secondary {
    margin-top: 1rem;
  }

  .gfr-about-story-milestones {
    position: relative;
    right: auto;
    bottom: auto;
    left: auto;
    margin-top: 1rem;
  }

  .gfr-about-hero-panel {
    transform: none;
  }

  .gfr-why-card {
    position: relative;
      inset: auto;
      min-height: 0;
      padding: 1.4rem 0 0;
      opacity: 1;
      transform: none;
      pointer-events: auto;
    }

  .gfr-why-card + .gfr-why-card {
    margin-top: 1.8rem;
  }

  .gfr-why-card__inner {
    width: 100%;
    max-width: none;
    min-height: 0;
  }

  .gfr-why-card__top {
    gap: 1rem;
    padding: 1.4rem;
  }

  .gfr-why-card__image {
    height: 10rem;
  }

  .gfr-why-card__number {
    font-size: 4rem;
  }

  .gfr-service-card__title {
    font-size: clamp(1.75rem, 6vw, 2.2rem);
  }

  .gfr-testimonials-nav {
    display: none;
  }

  .gfr-testimonial-card {
    flex-basis: 100%;
  }

  .gfr-service-card {
    grid-template-columns: 1fr;
  }

  .gfr-service-card__media {
    min-height: 15.5rem;
  }

  .gfr-values-section {
    padding-bottom: 4rem;
    background: linear-gradient(180deg, #ffffff 0%, #f4f7fb 100%);
  }

  .gfr-values-list {
    padding-left: 0.9rem;
  }

  .gfr-value-card::before {
    left: -0.9rem;
  }

  .gfr-footer {
    padding-top: 4rem;
  }

  .gfr-footer__bottom {
    flex-direction: column;
  }
}

@media (max-width: 991.98px) {
  .gfr-blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .gfr-contact-hero-section {
    padding: 6rem 0 4rem;
  }

  .gfr-inner-hero {
    min-height: 22rem;
    padding: 6rem 0 3rem;
  }
}

@media (max-width: 767.98px) {
  .gfr-blog-grid {
    grid-template-columns: 1fr;
  }

  .gfr-blog-hero-section,
  .gfr-contact-hero-section,
  .gfr-inner-hero {
    padding: 5.5rem 0 2.5rem;
  }

  .gfr-inner-hero__trust-panel {
    gap: 0.5rem 0.75rem;
  }

  .gfr-hero-form__top,
  .gfr-hero-form__body {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }
}

@media screen and (max-width: 782px) {
  body.admin-bar .gfr-header {
    top: 46px;
  }
}

/* ────────────────────────────────────────────────────────────────────────
 * Footer social icons — round button container with inline SVG glyph.
 * Replaces the plain "Facebook / YouTube / Instagram" text links.
 * Used in templates/partials/footer.php.
 * ──────────────────────────────────────────────────────────────────────── */
.gfr-footer__social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.85);
  transition: background-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.gfr-footer__social-link:hover,
.gfr-footer__social-link:focus-visible {
  background: #c0392b;
  color: #ffffff;
  transform: translateY(-2px);
}

.gfr-footer__social-icon {
  width: 1.2rem;
  height: 1.2rem;
}

/* ────────────────────────────────────────────────────────────────────────
 * Service-detail block — long-copy + optional brand logo pair.
 * Used by /services/<slug>/ pages (Residential Roofing, Siding, Windows,
 * Roof Repairs, Gutters, Commercial Roofing).
 * Block template: templates/blocks/service-detail.php
 *
 * Typography follows the production design system: Barlow Condensed for
 * the heading (matching .gfr-about-standard-card__title scale), Barlow for
 * body copy (default), uppercase red eyebrow (matching .gfr-section-tag).
 * ──────────────────────────────────────────────────────────────────────── */
.gfr-service-detail {
  padding: 4rem 0;
  border-top: 1px solid rgba(15, 23, 42, 0.08);
}

.gfr-service-detail:first-of-type {
  border-top: 0;
}

.gfr-service-detail__eyebrow {
  display: inline-block;
  margin-bottom: 0.6rem;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gfr-red);
}

.gfr-service-detail__heading {
  margin: 0 0 1rem;
  font-family: "Barlow Condensed", sans-serif;
  font-size: clamp(1.7rem, 2.4vw, 2.3rem);
  line-height: 0.98;
  text-transform: uppercase;
  color: var(--gfr-blue);
}

.gfr-service-detail__body {
  margin: 0 0 1rem;
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--gfr-text);
}

.gfr-service-detail__bullets {
  list-style: disc;
  padding-left: 1.4rem;
  margin: 0 0 0.5rem;
  font-size: 1.05rem;
  color: var(--gfr-text);
}

.gfr-service-detail__bullets li {
  margin-bottom: 0.4rem;
  line-height: 1.7;
}

.gfr-service-detail__visual {
  overflow: hidden;
  border: 1px solid var(--color-border);
  border-radius: var(--gfr-radius-xl);
  background: var(--color-surface);
  box-shadow: var(--gfr-shadow-md);
}

.gfr-service-detail__visual--logos-only {
  padding: 2rem;
}

.gfr-service-detail__figure {
  margin: 0;
}

.gfr-service-detail__image-button {
  position: relative;
  display: block;
  width: 100%;
  height: clamp(280px, 34vw, 420px);
  padding: 0;
  overflow: hidden;
  border: 0;
  background: var(--color-surface-alt);
  cursor: zoom-in;
}

.gfr-service-detail__image-button--static {
  cursor: default;
}

.gfr-service-detail__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 260ms ease;
}

.gfr-service-detail__image--contain {
  padding: clamp(0.75rem, 2vw, 1.4rem);
  object-fit: contain;
  background: var(--color-surface);
}

.gfr-service-detail__image-button:hover .gfr-service-detail__image,
.gfr-service-detail__image-button:focus-visible .gfr-service-detail__image {
  transform: scale(1.035);
}

.gfr-service-detail__zoom {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 3.5rem;
  min-height: 2.2rem;
  padding: 0.45rem 0.85rem;
  border: 1px solid var(--color-border);
  border-radius: 999px;
  background: var(--color-surface);
  color: var(--color-text);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  line-height: 1;
  text-transform: uppercase;
  box-shadow: var(--gfr-shadow-md);
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.gfr-service-detail__image-button:not(.gfr-service-detail__image-button--static):hover .gfr-service-detail__zoom,
.gfr-service-detail__image-button:not(.gfr-service-detail__image-button--static):focus-visible .gfr-service-detail__zoom {
  opacity: 1;
  transform: translateY(0);
}

.gfr-service-detail__logos {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
}

.gfr-service-detail__logos--supporting {
  justify-content: flex-start;
  gap: 1rem;
  padding: 1rem 1.1rem 1.15rem;
  border-top: 1px solid var(--color-border);
  background: var(--color-surface-alt);
}

.gfr-service-detail__logo {
  flex: 0 1 auto;
  max-width: 180px;
}

.gfr-service-detail__logo-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  color: inherit;
  text-decoration: none;
}

.gfr-service-detail__logos--supporting .gfr-service-detail__logo {
  max-width: 120px;
}

.gfr-service-detail__logo img {
  display: block;
  max-width: 100%;
  max-height: 88px;
  height: auto;
  object-fit: contain;
}

.gfr-service-detail__logos--supporting .gfr-service-detail__logo img {
  max-height: 56px;
}

.gfr-service-lightbox {
  position: fixed;
  inset: 0;
  z-index: 1100;
  display: none;
  align-items: center;
  justify-content: center;
  padding: clamp(1rem, 3vw, 2.5rem);
  background: rgba(8, 28, 51, 0.88);
}

.gfr-service-lightbox.is-open {
  display: flex;
}

.gfr-service-lightbox-open {
  overflow: hidden;
}

.gfr-service-lightbox__dialog {
  position: relative;
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  width: min(1100px, 100%);
  max-height: min(860px, 92vh);
  overflow: hidden;
  border-radius: var(--gfr-radius-xl);
  background: var(--color-surface);
  box-shadow: var(--gfr-shadow-lg);
}

.gfr-service-lightbox__image-wrap {
  display: flex;
  min-height: 0;
  background: var(--gfr-navy);
}

.gfr-service-lightbox__image {
  width: 100%;
  max-height: 74vh;
  object-fit: contain;
}

.gfr-service-lightbox__meta {
  padding: 1rem 1.25rem 1.15rem;
}

.gfr-service-lightbox__title {
  margin: 0;
  font-family: "Barlow Condensed", sans-serif;
  font-size: clamp(1.35rem, 2vw, 1.8rem);
  line-height: 1;
  text-transform: uppercase;
  color: var(--color-secondary);
}

.gfr-service-lightbox__close {
  position: absolute;
  top: 0.85rem;
  right: 0.85rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  border: 1px solid var(--color-border);
  border-radius: 999px;
  background: var(--color-surface);
  color: var(--color-text);
  font-size: 1.6rem;
  line-height: 1;
}

@media (max-width: 991.98px) {
  .gfr-service-detail__visual {
    margin-top: 0.5rem;
  }

  .gfr-service-detail__image-button {
    height: clamp(240px, 60vw, 360px);
  }

  .gfr-service-detail__logos--supporting {
    justify-content: center;
  }

  .gfr-service-lightbox__dialog {
    max-height: 88vh;
  }

  .gfr-service-lightbox__image {
    max-height: 62vh;
  }
}

.gfr-service-area-section {
  padding: clamp(4.5rem, 8vw, 7rem) 0;
  background:
    linear-gradient(180deg, var(--color-surface) 0%, var(--color-surface-alt) 100%);
}

.gfr-service-area-header {
  max-width: 850px;
  margin: 0 auto clamp(2rem, 5vw, 3.5rem);
  text-align: center;
}

.gfr-service-area-header .gfr-section-tag {
  justify-content: center;
}

.gfr-service-area-grid {
  align-items: stretch;
}

.gfr-service-area-card {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
  min-height: 100%;
  padding: clamp(1.25rem, 2vw, 1.75rem);
  overflow: hidden;
  border: 1px solid var(--color-border);
  border-radius: var(--gfr-radius-lg);
  background: var(--color-surface);
  box-shadow: var(--gfr-shadow-md);
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.gfr-service-area-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 0.35rem;
  background: var(--color-primary);
}

.gfr-service-area-card:hover,
.gfr-service-area-card:focus-within {
  transform: translateY(-4px);
  border-color: color-mix(in srgb, var(--color-primary) 45%, var(--color-border));
  box-shadow: var(--gfr-shadow-lg);
}

.gfr-service-area-card__top {
  min-height: 0;
}

.gfr-service-area-card__meta {
  margin-bottom: 0.55rem;
  color: var(--color-primary);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.gfr-service-area-card__title {
  margin: 0;
  font-size: clamp(1.45rem, 2vw, 1.85rem);
  line-height: 1;
  text-transform: uppercase;
  color: var(--color-secondary);
}

.gfr-service-area-card__title a {
  color: inherit;
}

.gfr-service-area-card__title a:hover,
.gfr-service-area-card__title a:focus-visible {
  color: var(--color-primary);
}

.gfr-service-area-card__text {
  margin: 0.85rem 0 0;
  color: var(--color-text-muted);
  font-size: 0.98rem;
  line-height: 1.72;
}

.gfr-service-area-card__services {
  display: grid;
  gap: 0.65rem;
  margin: 1.25rem 0 1.5rem;
  padding: 0;
  list-style: none;
}

.gfr-service-area-card__services li {
  position: relative;
  padding-left: 1.45rem;
  color: var(--color-text);
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1.45;
}

.gfr-service-area-card__services li::before {
  content: "";
  position: absolute;
  top: 0.55em;
  left: 0;
  width: 0.48rem;
  height: 0.48rem;
  border-radius: var(--radius-pill);
  background: var(--color-primary);
}

.gfr-service-area-card__services a {
  color: inherit;
  text-decoration: none;
}

.gfr-service-area-card__services a:hover,
.gfr-service-area-card__services a:focus-visible {
  color: var(--color-primary);
}

.gfr-service-area-card__link {
  margin-top: auto;
}

.gfr-service-area-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.85rem;
  margin-top: clamp(2rem, 5vw, 3.25rem);
}

.gfr-faq-section {
  padding: clamp(4.5rem, 8vw, 7rem) 0;
  background: var(--color-surface);
}

.gfr-faq-intro {
  position: sticky;
  top: 7rem;
}

.gfr-faq-accordion {
  display: grid;
  gap: 0.8rem;
}

.gfr-faq-item {
  overflow: hidden;
  border: 1px solid var(--color-border);
  border-radius: var(--gfr-radius-md);
  background: var(--color-surface);
  box-shadow: var(--gfr-shadow-md);
}

.gfr-faq-item .accordion-button {
  min-height: 4rem;
  padding: 1.1rem 1.25rem;
  color: var(--color-secondary);
  background: var(--color-surface);
  font-weight: 800;
  box-shadow: none;
}

.gfr-faq-item .accordion-button:not(.collapsed) {
  color: var(--color-primary);
  background: var(--color-surface-alt);
}

.gfr-faq-item .accordion-button:focus {
  border-color: var(--color-primary);
  box-shadow: none;
}

.gfr-faq-item__body {
  color: var(--color-text-muted);
  font-size: 1rem;
  line-height: 1.75;
}

@media (max-width: 991.98px) {
  .gfr-service-area-header {
    text-align: left;
  }

  .gfr-service-area-header .gfr-section-tag {
    justify-content: flex-start;
  }

  .gfr-faq-intro {
    position: static;
  }
}

@media (max-width: 575.98px) {
  .gfr-page-banner {
    padding-top: 4.75rem;
  }

  .gfr-page-banner .row > [class*="col-"],
  .gfr-service-area-section .row > [class*="col-"],
  .gfr-faq-section .row > [class*="col-"] {
    min-width: 0;
  }

  .gfr-page-banner__title,
  .gfr-section-title,
  .gfr-service-area-card__title {
    overflow-wrap: anywhere;
  }

  .gfr-page-banner__body,
  .gfr-section-body,
  .gfr-service-area-card__text,
  .gfr-faq-item__body {
    overflow-wrap: anywhere;
  }

  .gfr-page-banner__actions,
  .gfr-service-area-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .gfr-page-banner__actions .gfr-btn,
  .gfr-service-area-actions .gfr-btn {
    width: 100%;
    max-width: 100%;
    padding-right: 1rem;
    padding-left: 1rem;
  }

  .gfr-service-area-card {
    padding: 1.15rem;
  }

  .gfr-service-area-card__title {
    font-size: 1.35rem;
    line-height: 1.08;
  }
}
