@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&family=Playfair+Display:wght@600;700&display=swap');

:root {
  --gf-bg: #0c0f0f;
  --gf-bg-soft: #121616;
  --gf-panel: #171b1b;
  --gf-panel-2: #202424;
  --gf-cream: #f3eee5;
  --gf-cream-2: #ebe2d5;
  --gf-text: #f9f6ee;
  --gf-muted: #c7c1b8;
  --gf-muted-dark: #4f514d;
  --gf-gold: #c79a56;
  --gf-gold-2: #e3be7a;
  --gf-line: rgba(199, 154, 86, 0.28);
  --gf-line-soft: rgba(255, 255, 255, 0.12);
  --gf-shadow: 0 24px 70px rgba(0, 0, 0, 0.34);
  --gf-radius: 18px;
  --gf-radius-lg: 26px;
  --gf-container: 1210px;
  --gf-gutter: 20px;
  --gf-content-inset: max(var(--gf-gutter), calc((100% - var(--gf-container)) / 2));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body.gf-site {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--gf-text);
  background:
    radial-gradient(circle at top left, rgba(199, 154, 86, 0.08), transparent 35rem),
    linear-gradient(180deg, #0a0c0c 0%, #0f1212 100%);
  -webkit-font-smoothing: antialiased;
}

body.gf-menu-open {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

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

.gf-container {
  width: min(calc(100% - (var(--gf-gutter) * 2)), var(--gf-container));
  max-width: var(--gf-container);
  margin-inline: auto;
}

.gf-skip-link {
  position: fixed;
  z-index: 1000;
  top: 16px;
  left: 16px;
  transform: translateY(-150%);
  background: var(--gf-gold);
  color: #101010;
  padding: 12px 16px;
  border-radius: 10px;
  font-weight: 800;
}

.gf-skip-link:focus {
  transform: translateY(0);
}

.gf-header {
  position: absolute;
  inset: 0 0 auto;
  z-index: 20;
  color: var(--gf-text);
}

.gf-header.is-scrolled {
  position: fixed;
  backdrop-filter: blur(16px);
  background: rgba(9, 11, 11, 0.78);
  box-shadow: 0 10px 32px rgba(0, 0, 0, 0.2);
}

.gf-header__top {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.gf-header__top-inner,
.gf-header__main-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.gf-header__top-inner {
  min-height: 42px;
  gap: 20px;
}

.gf-header__strapline {
  margin: 0;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.76);
  letter-spacing: 0.01em;
}

.gf-header__phone,
.gf-footer__contact a,
.gf-footer__contact p {
  display: inline-flex;
  align-items: center;
  gap: 9px;
}

.gf-header__phone {
  font-weight: 700;
  color: #fff;
}

.gf-header__phone-icon {
  width: 15px;
  height: 15px;
  color: var(--gf-gold);
}

.gf-header__main {
  background: rgba(8, 10, 10, 0.18);
}

.gf-header__main-inner {
  min-height: 96px;
  gap: 28px;
  justify-content: flex-start;
}

.gf-brand {
  display: inline-flex;
  align-items: flex-start;
  justify-content: center;
  flex: 0 0 auto;
  line-height: 1;
  min-width: 0;
  max-width: 280px;
}

.gf-brand__name {
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(2.2rem, 3vw, 3.2rem);
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: lowercase;
}

.gf-brand__subtitle {
  margin-top: -0.05rem;
  padding-left: 5.2rem;
  color: var(--gf-gold);
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.gf-brand .custom-logo-link {
  display: inline-flex;
  align-items: center;
  line-height: 0;
}

.gf-brand .custom-logo {
  display: block;
  width: auto !important;
  height: auto !important;
  max-width: 260px;
  max-height: 70px;
  object-fit: contain;
  object-position: left center;
}

.gf-header.is-scrolled .gf-brand .custom-logo {
  max-height: 58px;
}

.gf-nav {
  margin-left: auto;
  flex: 0 1 auto;
}

.gf-nav__list,
.gf-footer__links {
  display: flex;
  align-items: center;
  gap: 25px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.gf-nav__link,
.gf-nav .menu-item > a {
  position: relative;
  display: inline-flex;
  padding: 10px 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.gf-nav__link::after,
.gf-nav .menu-item > a::after {
  content: "";
  position: absolute;
  inset: auto 0 2px;
  height: 2px;
  transform: scaleX(0);
  transform-origin: left;
  background: var(--gf-gold);
  transition: transform 180ms ease;
}

.gf-nav__link:hover::after,
.gf-nav .menu-item > a:hover::after,
.gf-nav .current-menu-item > a::after {
  transform: scaleX(1);
}

.gf-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 48px;
  padding: 0.9rem 1.25rem;
  border-radius: 3px;
  border: 1px solid transparent;
  font-size: 0.76rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.gf-btn:hover {
  transform: translateY(-2px);
}

.gf-btn--gold {
  background: linear-gradient(135deg, var(--gf-gold), var(--gf-gold-2));
  color: #12100d;
}

.gf-btn--dark {
  background: #111414;
  border-color: rgba(0, 0, 0, 0.1);
  color: #fff;
}

.gf-btn--dark > span {
  color: #fff!important;
}

.gf-btn--outline {
  border-color: var(--gf-line);
  color: #fff;
  background: rgba(0, 0, 0, 0.16);
}

.gf-btn--ghost {
  color: #fff;
  padding-inline: 0;
}

.gf-btn__icon {
  width: 17px;
  height: 17px;
}

.gf-menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--gf-line);
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.18);
  color: #fff;
}

.gf-menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
}

.gf-main {
  overflow-x: hidden;
}

.gf-hero {
  position: relative;
  min-height: 875px;
  padding-top: 172px;
  background:
    linear-gradient(90deg, rgba(9, 10, 10, 0.98) 0%, rgba(9, 10, 10, 0.88) 34%, rgba(9, 10, 10, 0.42) 62%, rgba(9, 10, 10, 0.74) 100%),
    var(--gf-hero-image, radial-gradient(circle at 72% 34%, rgba(199, 154, 86, 0.16), transparent 15rem), linear-gradient(135deg, #0d1010 0%, #232929 100%));
  background-size: cover;
  background-position: center right;
}

.gf-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 76% 33%, rgba(227, 190, 122, 0.18), transparent 13rem),
    linear-gradient(180deg, transparent 65%, #0c0f0f 100%);
}

.gf-hero__inner {
  position: relative;
  z-index: 2;
}

.gf-hero__content {
  max-width: 610px;
  padding-top: 76px;
}

.gf-kicker {
  margin: 0 0 20px;
  color: var(--gf-gold);
  font-size: 0.76rem;
  font-weight: 850;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.gf-hero__title {
  margin: 0;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(3.4rem, 7vw, 6.35rem);
  line-height: 0.96;
  letter-spacing: -0.06em;
}

.gf-hero__title span,
.gf-hero__title strong {
  display: block;
}

.gf-hero__title strong {
  color: var(--gf-gold);
  font-weight: 700;
}

.gf-hero__body {
  max-width: 520px;
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.08rem;
  line-height: 1.65;
}

.gf-hero__actions {
  display: flex;
  align-items: center;
  gap: 26px;
  margin-top: 36px;
}

.gf-services {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 62px;
}

.gf-service-card {
  min-height: 230px;
  padding: 34px 32px 28px;
  border: 1px solid var(--gf-line);
  border-radius: 12px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.025));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.gf-service-card__icon,
.gf-public-card__icon,
.gf-stat__icon {
  width: 43px;
  height: 43px;
  color: var(--gf-gold);
}

.gf-service-card h2 {
  margin: 16px 0 12px;
  font-size: 1.08rem;
  line-height: 1.35;
}

.gf-service-card p {
  margin: 0 0 23px;
  color: var(--gf-muted);
  font-size: 0.9rem;
  line-height: 1.6;
}

.gf-service-card a,
.gf-public-card a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--gf-gold-2);
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.gf-link-icon {
  width: 15px;
  height: 15px;
}

.gf-public {
  background: var(--gf-cream);
  color: #171819;
  padding: 70px 0 36px;
}

.gf-public__grid {
  display: grid;
  grid-template-columns: 0.93fr 1.07fr;
  align-items: stretch;
  min-height: 470px;
  border-radius: var(--gf-radius);
  overflow: hidden;
  background: #fffaf0;
  box-shadow: var(--gf-shadow);
}

.gf-public__content {
  padding: clamp(34px, 5vw, 70px);
}

.gf-public__content h2,
.gf-planning__content h2,
.gf-cta__content h2 {
  margin: 0;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(2rem, 3.8vw, 3.2rem);
  line-height: 1.08;
  letter-spacing: -0.035em;
}

.gf-public__content p,
.gf-planning__content p {
  color: #4a4a47;
  line-height: 1.7;
}

.gf-check-list {
  display: grid;
  gap: 18px;
  margin: 28px 0 34px;
  padding: 0;
  list-style: none;
}

.gf-check-list li {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 13px;
}

.gf-check-list li > span {
  display: grid;
  place-items: center;
  width: 24px;
  height: 24px;
  border: 1px solid rgba(199, 154, 86, 0.55);
  border-radius: 999px;
  color: var(--gf-gold);
}

.gf-check-list svg {
  width: 13px;
  height: 13px;
}

.gf-check-list strong {
  display: block;
  color: #171819;
  font-size: 0.98rem;
}

.gf-check-list small {
  display: block;
  color: #5a5a55;
  margin-top: 2px;
}

.gf-public__image {
  position: relative;
  min-height: 470px;
  background: #181b1b;
}

.gf-public__image img,
.gf-placeholder {
  width: 100%;
  height: 100%;
  min-height: 470px;
  object-fit: cover;
}

.gf-public-card {
  position: absolute;
  right: 36px;
  bottom: 36px;
  width: min(292px, calc(100% - 72px));
  padding: 32px 30px;
  border: 1px solid var(--gf-line);
  border-radius: 14px;
  background: rgba(16, 19, 19, 0.94);
  color: #fff;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.32);
}

.gf-public-card h3 {
  margin: 16px 0 13px;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.65rem;
  line-height: 1.12;
}

.gf-public-card p {
  color: var(--gf-muted);
  line-height: 1.58;
}

.gf-planning {
  padding: 44px 0 22px;
  background: var(--gf-bg);
}

.gf-planning__grid {
  display: grid;
  grid-template-columns: 0.95fr 1.35fr 0.72fr;
  gap: 18px;
  align-items: stretch;
}

.gf-planning__content,
.gf-stats,
.gf-testimonial__card {
  border: 1px solid var(--gf-line);
  background: linear-gradient(180deg, rgba(255,255,255,0.055), rgba(255,255,255,0.025));
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.045);
}

.gf-planning__content {
  padding: clamp(28px, 4vw, 46px);
  border-radius: var(--gf-radius) 0 0 var(--gf-radius);
}

.gf-planning__content h2 {
  color: #fff;
  font-size: clamp(2rem, 3vw, 2.9rem);
}

.gf-planning__content p {
  color: var(--gf-muted);
  margin-bottom: 30px;
}

.gf-planning__visual {
  min-height: 330px;
  overflow: hidden;
  background: #ede7dd;
}

.gf-planning__visual img,
.gf-placeholder--plan {
  width: 100%;
  height: 100%;
  min-height: 330px;
  object-fit: cover;
}

.gf-stats {
  display: grid;
  overflow: hidden;
  border-radius: 0 var(--gf-radius) var(--gf-radius) 0;
}

.gf-stat {
  display: grid;
  grid-template-columns: 54px 1fr;
  align-items: center;
  gap: 18px;
  padding: 28px;
  border-bottom: 1px solid var(--gf-line-soft);
}

.gf-stat:last-child {
  border-bottom: 0;
}

.gf-stat strong {
  display: block;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 0.98;
  color: #fff;
}

.gf-stat span {
  display: block;
  margin-top: 6px;
  color: var(--gf-muted);
  font-size: 0.92rem;
}

.gf-testimonial {
  padding: 0 0 24px;
  background: var(--gf-bg);
}

.gf-testimonial__card {
  position: relative;
  display: grid;
  grid-template-columns: 88px 1fr auto;
  gap: 25px;
  align-items: center;
  min-height: 145px;
  padding: 34px 48px;
  border-radius: var(--gf-radius);
}

.gf-testimonial__quote-icon {
  color: var(--gf-gold);
  opacity: 0.9;
}

.gf-testimonial__quote-icon svg {
  width: 58px;
  height: 58px;
}

.gf-testimonial blockquote {
  margin: 0;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 50px;
}

.gf-testimonial blockquote p {
  margin: 0;
  color: #f4e7d1;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(1.35rem, 2vw, 1.8rem);
  line-height: 1.4;
}

.gf-testimonial footer span,
.gf-testimonial footer strong {
  display: block;
  white-space: nowrap;
}

.gf-testimonial footer strong {
  color: var(--gf-gold);
  margin-top: 5px;
  font-weight: 600;
}

.gf-dots {
  display: flex;
  gap: 11px;
}

.gf-dots span {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.34);
}

.gf-dots span:first-child {
  background: var(--gf-gold);
}

.gf-cta {
  padding: 8px 0 58px;
  background: var(--gf-bg);
}

.gf-cta__card {
  display: grid;
  grid-template-columns: 84px 1fr minmax(275px, 0.42fr);
  gap: 30px;
  align-items: center;
  padding: 36px 44px;
  border-radius: var(--gf-radius);
  background: var(--gf-cream);
  color: #141616;
  box-shadow: var(--gf-shadow);
}

.gf-cta__icon {
  display: grid;
  place-items: center;
  width: 72px;
  height: 72px;
  border: 1px solid rgba(20, 22, 22, 0.45);
  border-radius: 999px;
}

.gf-cta__icon svg {
  width: 32px;
  height: 32px;
}

.gf-cta__content h2 {
  font-size: clamp(1.4rem, 2.4vw, 2rem);
}

.gf-cta__content p {
  margin: 7px 0 15px;
  color: #464843;
  font-weight: 700;
}

.gf-cta__content ul {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.gf-cta__content li {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #5f5a51;
  font-size: 0.82rem;
}

.gf-cta__content li svg {
  width: 16px;
  height: 16px;
  color: var(--gf-gold);
}

.gf-cta__contact {
  border-left: 1px solid rgba(199, 154, 86, 0.42);
  padding-left: 40px;
}

.gf-cta__contact span {
  display: block;
  color: #55514b;
  font-weight: 800;
}

.gf-cta__contact > a {
  display: block;
  margin: 7px 0 18px;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.35rem;
  white-space: nowrap;
}

.gf-footer {
  background: #0a0c0c;
  border-top: 1px solid rgba(255,255,255,0.08);
  color: #fff;
}

.gf-footer__grid {
  display: grid;
  grid-template-columns: 1.35fr 0.65fr 0.65fr 1.02fr;
  gap: 56px;
  padding: 62px 0 42px;
}

.gf-footer__brand p {
  max-width: 310px;
  color: var(--gf-muted);
  line-height: 1.7;
}

.gf-brand--footer {
  color: #fff;
  min-width: 0;
}

.gf-brand--footer .gf-brand__name {
  font-size: 3rem;
}

.gf-socials {
  display: flex;
  gap: 12px;
  margin-top: 22px;
}

.gf-socials a {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border: 1px solid var(--gf-line);
  border-radius: 999px;
  color: var(--gf-muted);
  font-weight: 800;
}

.gf-socials__icon {
  width: 16px;
  height: 16px;
}

.gf-footer__column h2,
.gf-footer__contact h2 {
  margin: 0 0 20px;
  color: var(--gf-gold);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.gf-footer__links {
  display: grid;
  gap: 12px;
}

.gf-footer__links a {
  color: var(--gf-muted);
  font-size: 0.92rem;
}

.gf-footer__links a:hover,
.gf-footer__contact a:hover {
  color: #fff;
}

.gf-footer__contact {
  padding: 26px;
  border: 1px solid var(--gf-line);
  border-radius: 12px;
  align-self: start;
}

.gf-footer__contact a,
.gf-footer__contact p {
  margin: 14px 0 0;
  color: var(--gf-muted);
  line-height: 1.5;
}

.gf-footer__contact svg {
  flex: 0 0 18px;
  width: 18px;
  height: 18px;
  color: var(--gf-gold);
}

.gf-footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
}

.gf-footer__bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 58px;
  color: rgba(255, 255, 255, 0.48);
  font-size: 0.78rem;
}

.gf-footer__bottom nav {
  display: flex;
  gap: 24px;
}

.gf-placeholder {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(255,255,255,0.32), transparent 44%),
    repeating-linear-gradient(90deg, rgba(0,0,0,0.08) 0 2px, transparent 2px 46px),
    linear-gradient(135deg, #d7d0c6, #9e9b94);
}

.gf-placeholder--kitchen::after {
  content: "Upload kitchen image";
}

.gf-placeholder--plan::after {
  content: "Upload CAD / planning image";
}

.gf-placeholder::after {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: rgba(0,0,0,0.42);
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.gf-reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 520ms ease, transform 520ms ease;
}

.gf-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.gf-main--default {
  padding-top: 170px;
}

.gf-page-content {
  padding-block: 60px;
}

.gf-article {
  max-width: 820px;
}

.gf-entry-content {
  color: var(--gf-muted);
  line-height: 1.75;
}

@media (max-width: 1100px) {
  .gf-header__cta {
    display: none;
  }

  .gf-nav__list,
  .gf-nav .menu {
    gap: 17px;
  }

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

  .gf-planning__grid {
    grid-template-columns: 1fr;
  }

  .gf-planning__content,
  .gf-stats {
    border-radius: var(--gf-radius);
  }

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

  .gf-stat {
    grid-template-columns: 1fr;
    border-bottom: 0;
    border-right: 1px solid var(--gf-line-soft);
  }

  .gf-stat:last-child {
    border-right: 0;
  }
}

@media (max-width: 860px) {
  .gf-container {
    width: min(calc(100% - (var(--gf-gutter) * 2)), var(--gf-container));
  }

  .gf-header {
    position: fixed;
    background: rgba(9, 11, 11, 0.9);
    backdrop-filter: blur(14px);
  }

  .gf-header__top {
    display: none;
  }

  .gf-header__main-inner {
    min-height: 78px;
  }

  .gf-brand {
    max-width: 210px;
    margin-right: 0;
  }

  .gf-brand__name {
    font-size: 2.35rem;
  }

  .gf-brand__subtitle {
    padding-left: 3.8rem;
    font-size: 0.55rem;
  }

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

  .gf-nav {
    position: fixed;
    inset: 78px 14px auto;
    display: none;
    margin: 0;
    padding: 20px;
    border: 1px solid var(--gf-line);
    border-radius: 18px;
    background: rgba(11, 13, 13, 0.98);
    box-shadow: var(--gf-shadow);
  }

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

  .gf-nav__list,
  .gf-nav .menu {
    display: grid;
    gap: 0;
  }

  .gf-nav__link,
  .gf-nav .menu-item > a {
    display: flex;
    padding: 15px 4px;
    font-size: 0.85rem;
  }

  .gf-hero {
    min-height: auto;
    padding: 126px 0 44px;
    background-position: 70% center;
  }

  .gf-hero__content {
    padding-top: 40px;
  }

  .gf-hero__title {
    font-size: clamp(3.1rem, 14vw, 5rem);
  }

  .gf-hero__actions {
    flex-wrap: wrap;
  }

  .gf-services,
  .gf-public__grid,
  .gf-cta__card,
  .gf-testimonial blockquote,
  .gf-testimonial__card,
  .gf-footer__grid {
    grid-template-columns: 1fr;
  }

  .gf-public {
    padding-top: 42px;
  }

  .gf-public__image,
  .gf-public__image img,
  .gf-placeholder {
    min-height: 360px;
  }

  .gf-planning {
    padding-top: 28px;
  }

  .gf-stats {
    grid-template-columns: 1fr;
  }

  .gf-stat {
    grid-template-columns: 54px 1fr;
    border-right: 0;
    border-bottom: 1px solid var(--gf-line-soft);
  }

  .gf-testimonial__card {
    padding: 30px;
  }

  .gf-testimonial blockquote {
    gap: 18px;
  }

  .gf-cta__card {
    gap: 20px;
    padding: 30px;
  }

  .gf-cta__contact {
    border-left: 0;
    border-top: 1px solid rgba(199, 154, 86, 0.42);
    padding-left: 0;
    padding-top: 24px;
  }

  .gf-footer__grid {
    gap: 34px;
  }

  .gf-footer__bottom-inner {
    flex-direction: column;
    align-items: flex-start;
    padding: 18px 0;
  }
}

@media (max-width: 540px) {
  .gf-hero__actions .gf-btn {
    width: 100%;
  }

  .gf-service-card {
    padding: 28px;
  }

  .gf-public__content {
    padding: 30px 24px;
  }

  .gf-public-card {
    position: relative;
    right: auto;
    bottom: auto;
    width: auto;
    margin: -95px 20px 20px;
  }

  .gf-cta__contact > a {
    font-size: 1.6rem;
    white-space: normal;
  }

  .gf-footer__bottom nav {
    flex-wrap: wrap;
    gap: 14px;
  }
}


/* Logo sizing/alignment fix:
   WordPress sometimes injects intrinsic image dimensions. These rules force
   aspect-ratio preservation while allowing the header to control height. */
.gf-header .custom-logo,
.gf-header img.custom-logo {
  aspect-ratio: auto;
  width: auto !important;
  height: auto !important;
  max-height: 70px;
  max-width: min(260px, 28vw);
}

.gf-header.is-scrolled .custom-logo,
.gf-header.is-scrolled img.custom-logo {
  max-height: 58px;
}

.gf-header__main-inner > .gf-brand {
  margin-right: clamp(26px, 4vw, 62px);
}

@media (min-width: 861px) {
  .gf-header__main-inner {
    justify-content: flex-start;
  }

  .gf-nav {
    margin-left: auto;
  }
}


@media (max-width: 860px) {
  .gf-header .custom-logo,
  .gf-header img.custom-logo {
    max-width: 190px;
    max-height: 54px;
  }

  .gf-header__main-inner > .gf-brand {
    margin-right: 0;
  }
}


/* Rich inner service pages */
.gf-article--wide {
  max-width: none;
}

.gf-article--wide .gf-entry-content {
  color: var(--gf-text);
}

.gf-service-page {
  display: grid;
  gap: 0;
  margin-top: -18px;
}

.gf-service-page p {
  color: var(--gf-muted);
  line-height: 1.75;
}

.gf-service-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(280px, 0.55fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
  padding: clamp(42px, 7vw, 86px) 0 clamp(46px, 7vw, 86px);
}

.gf-service-hero__copy {
  max-width: 780px;
}

.gf-service-hero h1 {
  margin: 0;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(3rem, 7vw, 6rem);
  line-height: 0.98;
  letter-spacing: -0.055em;
}

.gf-service-hero h1 strong {
  display: block;
  color: var(--gf-gold);
  font-weight: 700;
}

.gf-service-hero__lead {
  max-width: 700px;
  margin: 28px 0 0;
  font-size: clamp(1.06rem, 1.7vw, 1.25rem);
}

.gf-service-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 34px;
}

.gf-service-hero__panel {
  border: 1px solid var(--gf-line);
  border-radius: var(--gf-radius);
  padding: clamp(28px, 4vw, 42px);
  background: linear-gradient(180deg, rgba(0,0,0,0.65), rgba(40,40,40,0.725));
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.05), var(--gf-shadow);
}

.gf-service-hero__panel h2 {
  margin: 0 0 18px;
  font-size: 0.78rem;
  color: var(--gf-gold);
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.gf-service-hero__panel ul {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.gf-service-hero__panel li {
  position: relative;
  padding-left: 28px;
  color: #fff;
  line-height: 1.55;
}

.gf-service-hero__panel li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--gf-gold);
  font-weight: 900;
}

.gf-service-section {
  padding: clamp(46px, 7vw, 82px) 0;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.gf-service-section--cream {
  margin-inline: calc(50% - 50vw);
  padding-inline: max(20px, calc((100vw - var(--gf-container)) / 2));
  background: var(--gf-cream);
  color: #171819;
}

.gf-service-section--cream p {
  color: #4d4d49;
}

.gf-service-section__head {
  max-width: 800px;
  margin-bottom: 34px;
}

.gf-service-section__head h2 {
  margin: 0;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(2.2rem, 4.5vw, 4rem);
  line-height: 1.05;
  letter-spacing: -0.04em;
}

.gf-service-section__head p {
  margin: 18px 0 0;
  font-size: 1.05rem;
}

.gf-service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.gf-service-info-card {
  padding: clamp(26px, 3vw, 34px);
  border: 1px solid var(--gf-line);
  border-radius: var(--gf-radius);
  background: linear-gradient(180deg, rgba(255,255,255,0.055), rgba(255,255,255,0.025));
}

.gf-service-section--cream .gf-service-info-card {
  background: rgba(255,255,255,0.72);
  border-color: rgba(0,0,0,0.08);
  box-shadow: 0 18px 50px rgba(0,0,0,0.08);
}

.gf-service-info-card h3 {
  margin: 0 0 12px;
  font-size: 1.15rem;
}

.gf-service-info-card p {
  margin: 0;
}

.gf-process {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
  counter-reset: process;
}

.gf-process__step {
  position: relative;
  min-height: 190px;
  padding: 28px 22px;
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: var(--gf-radius);
  background: #fffaf0;
}

.gf-process__step::before {
  counter-increment: process;
  content: counter(process);
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  margin-bottom: 18px;
  border-radius: 999px;
  background: var(--gf-gold);
  color: #161410;
  font-weight: 900;
}

.gf-process__step h3 {
  margin: 0 0 10px;
  font-size: 1rem;
}

.gf-process__step p {
  margin: 0;
  font-size: 0.9rem;
}

.gf-split {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.62fr);
  gap: clamp(26px, 5vw, 70px);
  align-items: center;
}

.gf-split__panel {
  border: 1px solid var(--gf-line);
  border-radius: var(--gf-radius);
  padding: clamp(30px, 5vw, 54px);
  background: linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.025));
}

.gf-split h2 {
  margin: 0;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(2.2rem, 4.4vw, 4rem);
  line-height: 1.05;
  letter-spacing: -0.04em;
}

.gf-feature-list {
  display: grid;
  gap: 18px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.gf-feature-list li {
  border-left: 2px solid var(--gf-gold);
  padding-left: 18px;
}

.gf-feature-list strong {
  display: block;
  color: #fff;
  margin-bottom: 4px;
}

.gf-service-section--cream .gf-feature-list strong {
  color: #171819;
}

.gf-compliance-band {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 28px;
  align-items: start;
  border: 1px solid var(--gf-line);
  border-radius: var(--gf-radius-lg);
  padding: clamp(30px, 5vw, 54px);
  background: linear-gradient(135deg, rgba(199,154,86,0.18), rgba(255,255,255,0.035));
}

.gf-compliance-band h2 {
  margin: 0;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.08;
}

.gf-compliance-band ul {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.gf-compliance-band li {
  padding: 18px;
  border-radius: 14px;
  background: rgba(255,255,255,0.055);
  color: var(--gf-muted);
  line-height: 1.55;
}

.gf-inner-cta {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 26px;
  align-items: center;
  padding: clamp(30px, 5vw, 48px);
  border-radius: var(--gf-radius);
  background: var(--gf-cream);
  color: #151716;
}

.gf-inner-cta h2 {
  margin: 0;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(1.7rem, 3vw, 2.45rem);
  line-height: 1.12;
}

.gf-inner-cta p {
  color: #4c4c48;
  margin: 10px 0 0;
}

.gf-inner-cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

@media (max-width: 1100px) {
  .gf-service-grid,
  .gf-compliance-band ul {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .gf-service-hero,
  .gf-split,
  .gf-compliance-band,
  .gf-inner-cta {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .gf-service-grid,
  .gf-process,
  .gf-compliance-band ul {
    grid-template-columns: 1fr;
  }

  .gf-service-hero {
    padding-top: 20px;
  }

  .gf-inner-cta__actions .gf-btn,
  .gf-service-hero__actions .gf-btn {
    width: 100%;
  }
}


/* Inner page extensions v1.0.3 */
.gf-service-page .gf-kicker {
  display: inline-block;
}

.gf-service-page a:not(.gf-btn) {
  color: var(--gf-gold-2);
}

.gf-service-stat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 34px;
}

.gf-service-mini-stat {
  border: 1px solid var(--gf-line);
  border-radius: var(--gf-radius);
  padding: 26px;
  background: linear-gradient(180deg, rgba(255,255,255,0.055), rgba(255,255,255,0.025));
}

.gf-service-mini-stat strong {
  display: block;
  color: #fff;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1;
}

.gf-service-mini-stat span {
  display: block;
  margin-top: 8px;
  color: var(--gf-muted);
}

.gf-contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.62fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: start;
}

.gf-contact-card {
  border: 1px solid var(--gf-line);
  border-radius: var(--gf-radius);
  padding: clamp(28px, 4vw, 42px);
  background: linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.025));
}

.gf-contact-card h2 {
  margin: 0 0 20px;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.05;
}

.gf-contact-methods {
  display: grid;
  gap: 16px;
  margin: 28px 0 0;
}

.gf-contact-method {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 15px;
  align-items: center;
  padding: 18px;
  border: 1px solid var(--gf-line);
  border-radius: 14px;
  background: rgba(255,255,255,0.04);
}

.gf-contact-method__icon {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  background: rgba(199,154,86,0.12);
  color: var(--gf-gold);
  font-weight: 900;
}

.gf-contact-method strong {
  display: block;
  color: #fff;
}

.gf-contact-method span,
.gf-contact-method a {
  color: var(--gf-muted);
}

.gf-map-placeholder {
  min-height: 310px;
  display: grid;
  place-items: center;
  padding: 30px;
  border-radius: var(--gf-radius);
  background:
    linear-gradient(135deg, rgba(199,154,86,0.12), transparent),
    repeating-linear-gradient(45deg, rgba(255,255,255,0.05) 0 1px, transparent 1px 20px),
    #151919;
  border: 1px solid var(--gf-line);
  color: var(--gf-muted);
  text-align: center;
}

.gf-case-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.gf-case-card {
  min-height: 280px;
  padding: 30px;
  border: 1px solid var(--gf-line);
  border-radius: var(--gf-radius);
  background: linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.025));
}

.gf-case-card__tag {
  display: inline-flex;
  margin-bottom: 18px;
  color: var(--gf-gold);
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.gf-case-card h3 {
  margin: 0 0 12px;
  font-size: 1.3rem;
}

.gf-case-card p {
  margin: 0;
}

.gf-faq {
  display: grid;
  gap: 14px;
}

.gf-faq details {
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 14px;
  background: rgba(255,255,255,0.72);
  padding: 20px 22px;
}

.gf-faq summary {
  cursor: pointer;
  font-weight: 850;
  color: #171819;
}

.gf-faq p {
  margin: 12px 0 0;
}

@media (max-width: 1100px) {
  .gf-service-stat-grid,
  .gf-case-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

@media (max-width: 760px) {
  .gf-service-stat-grid,
  .gf-case-grid {
    grid-template-columns: 1fr;
  }
}


/* v1.0.4 inner-page hero scale refinement
   The first pass made inner page hero headings too large. These rules make
   service/page heroes feel premium without dominating the viewport. */
.gf-main--default {
  padding-top: 0;
}

.gf-page-content {
  padding-top: 0;
}

.gf-service-page {
  margin-top: 0;
}

.gf-service-hero {
  min-height: calc(100vh - 0px);
  padding-top: clamp(150px, 18vh, 210px);
  padding-bottom: clamp(54px, 8vh, 96px);
  align-items: center;
}

.gf-service-hero h1 {
  max-width: 860px;
  font-size: clamp(2.35rem, 4.4vw, 4.2rem);
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.gf-service-hero__lead {
  max-width: 760px;
  font-size: clamp(1rem, 1.28vw, 1.16rem);
  line-height: 1.72;
}

.gf-service-hero__panel {
  align-self: center;
  max-width: 520px;
  margin-left: auto;
}

.gf-service-hero__panel li {
  font-size: 0.98rem;
}

.gf-service-section__head h2,
.gf-split h2,
.gf-compliance-band h2,
.gf-contact-card h2 {
  font-size: clamp(1.85rem, 3.2vw, 2.85rem);
}

.gf-service-section {
  padding-top: clamp(44px, 6vw, 74px);
  padding-bottom: clamp(44px, 6vw, 74px);
}

.gf-header__main-inner {
  min-height: 86px;
}

.gf-header .custom-logo,
.gf-header img.custom-logo {
  max-height: 58px;
}

.gf-header.is-scrolled .gf-header__main-inner {
  min-height: 72px;
}

.gf-header.is-scrolled .custom-logo,
.gf-header.is-scrolled img.custom-logo {
  max-height: 48px;
}

.gf-nav__link,
.gf-nav .menu-item > a {
  font-size: 0.72rem;
}

/* Give non-home pages a dark visual field behind the first hero so the
   transparent header has enough breathing room before content starts. */
.gf-main--default .gf-service-page > .gf-service-hero:first-child {
  position: relative;
}

.gf-main--default .gf-service-page > .gf-service-hero:first-child::before {
  content: "";
  position: absolute;
  inset: 0 calc(50% - 50vw);
  z-index: -1;
  background:
    radial-gradient(circle at 10% 20%, rgba(199,154,86,0.11), transparent 28rem),
    radial-gradient(circle at 80% 55%, rgba(199,154,86,0.08), transparent 24rem),
    linear-gradient(180deg, #090b0b 0%, #0c0f0f 100%);
}

@media (max-width: 1100px) {
  .gf-service-hero {
    min-height: auto;
    padding-top: 140px;
  }

  .gf-service-hero h1 {
    font-size: clamp(2.5rem, 8vw, 4.2rem);
  }

  .gf-service-hero__panel {
    max-width: none;
    margin-left: 0;
  }
}

@media (max-width: 760px) {
  .gf-service-hero {
    padding-top: 118px;
    padding-bottom: 46px;
  }

  .gf-service-hero h1 {
    font-size: clamp(2.3rem, 12vw, 3.7rem);
    line-height: 1.03;
  }

  .gf-header__main-inner {
    min-height: 72px;
  }
}


/* v1.0.5 homepage hero viewport refinement
   Makes the home hero height respond to the viewport rather than using a
   fixed pixel minimum. This prevents the hero from feeling oversized on
   shorter screens while keeping a full-screen landing effect. */
.gf-hero {
  min-height: 100vh;
  min-height: 100svh;
  min-height: 100dvh;
  padding-top: clamp(118px, 15vh, 172px);
  padding-bottom: clamp(42px, 7vh, 76px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: visible;
}

.gf-hero__inner {
  width: min(calc(100% - 40px), var(--gf-container));
  margin-inline: auto;
}

.gf-hero__content {
  padding-top: 0;
}

.gf-hero__title {
  font-size: clamp(3rem, 5.7vw, 5.75rem);
  line-height: 0.98;
}

.gf-hero__body {
  font-size: clamp(1rem, 1.2vw, 1.08rem);
  line-height: 1.62;
  margin-top: 24px;
}

.gf-hero__actions {
  margin-top: 30px;
}

.gf-services {
  margin-top: clamp(36px, 5.5vh, 62px);
}

.gf-service-card {
  min-height: 205px;
  padding: 28px 28px 24px;
}

.gf-service-card__icon {
  width: 38px;
  height: 38px;
}

.gf-service-card p {
  font-size: 0.86rem;
}

/* On very short desktop screens, compress the hero slightly so the cards do
   not push too far below the first viewport. */
@media (min-width: 861px) and (max-height: 820px) {
  .gf-hero {
    min-height: auto;
    padding-top: 118px;
    padding-bottom: 42px;
  }

  .gf-hero__title {
    font-size: clamp(3rem, 5.15vw, 4.9rem);
  }

  .gf-hero__body {
    max-width: 500px;
  }

  .gf-hero__actions {
    margin-top: 24px;
  }

  .gf-services {
    margin-top: 34px;
  }

  .gf-service-card {
    min-height: 182px;
    padding: 24px;
  }

  .gf-service-card h2 {
    margin-top: 12px;
    font-size: 1rem;
  }

  .gf-service-card p {
    margin-bottom: 16px;
    line-height: 1.48;
  }
}

@media (max-width: 860px) {
  .gf-hero {
    min-height: auto;
    display: block;
    padding-top: 126px;
    padding-bottom: 44px;
  }

  .gf-hero__title {
    font-size: clamp(3.1rem, 14vw, 5rem);
  }
}


/* v1.0.6 homepage hero container restoration
   v1.0.5 accidentally overrode the .gf-container width on the hero inner
   wrapper. This restores the max-width container while retaining the 100vh
   viewport behaviour. */
.gf-hero > .gf-container,
.gf-hero__inner.gf-container,
.gf-hero__inner {
  width: min(calc(100% - (var(--gf-gutter) * 2)), var(--gf-container));
  max-width: var(--gf-container);
  margin-left: auto;
  margin-right: auto;
}

.gf-hero__content {
  max-width: 610px;
}

/* Ensure the hero content never bleeds to the viewport edge on very wide or
   zoomed layouts. */
@media (min-width: 861px) {
  .gf-hero__content {
    margin-left: 0;
  }
}

@media (max-width: 860px) {
  .gf-hero > .gf-container,
  .gf-hero__inner.gf-container,
  .gf-hero__inner {
    width: min(calc(100% - (var(--gf-gutter) * 2)), var(--gf-container));
  }
}


/* v1.0.7 responsive containment + footer logo fix
   Keeps mobile content inside the viewport and uses the uploaded custom logo
   cleanly in the footer. */
html,
body {
  max-width: 100%;
  overflow-x: clip;
}

.gf-site,
.gf-main,
.gf-main--default,
.gf-page-content,
.gf-service-page,
.gf-footer {
  max-width: 100%;
  overflow-x: clip;
}

.gf-container,
.gf-page-content,
.gf-header__main-inner,
.gf-header__top-inner,
.gf-footer__grid,
.gf-footer__bottom-inner,
.gf-service-hero,
.gf-contact-layout,
.gf-split,
.gf-inner-cta,
.gf-compliance-band {
  min-width: 0;
}

.gf-service-hero__copy,
.gf-service-hero__panel,
.gf-service-section__head,
.gf-contact-card,
.gf-map-placeholder,
.gf-split__panel,
.gf-inner-cta > *,
.gf-footer__brand,
.gf-footer__column,
.gf-footer__contact {
  min-width: 0;
  max-width: 100%;
}

.gf-footer__brand p,
.gf-entry-content p,
.gf-service-hero__panel li,
.gf-contact-method span,
.gf-contact-method a,
.gf-contact-method strong {
  overflow-wrap: anywhere;
  word-break: normal;
}

.gf-service-hero__panel {
  overflow: hidden;
}

.gf-service-hero__panel ul {
  min-width: 0;
}

.gf-service-hero__panel li {
  padding-right: 0;
}

.gf-contact-method {
  min-width: 0;
}

.gf-contact-method > div:last-child {
  min-width: 0;
}

.gf-contact-method a,
.gf-footer__contact a,
.gf-footer__contact p {
  max-width: 100%;
  overflow-wrap: anywhere;
}

/* Footer should use the same uploaded logo image as the header when a custom
   logo exists. Limit it so it cannot stretch or overflow on mobile. */
.gf-footer .gf-brand--image {
  display: inline-flex;
  align-items: flex-start;
  max-width: 260px;
  margin-bottom: 18px;
}

.gf-footer .custom-logo-link {
  display: inline-flex;
  line-height: 0;
  max-width: 100%;
}

.gf-footer .custom-logo {
  display: block;
  width: auto !important;
  height: auto !important;
  max-width: min(260px, 70vw);
  max-height: 72px;
  object-fit: contain;
  object-position: left center;
}

.gf-footer .gf-brand--text {
  max-width: 260px;
}

.gf-footer .gf-brand--footer .gf-brand__name {
  font-size: clamp(2.1rem, 7vw, 3rem);
}

/* Avoid 100vw negative-margin cream sections exceeding mobile viewport due to
   scrollbar/device emulation rounding. */
.gf-service-section--cream {
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  max-width: 100vw;
  overflow-x: clip;
}

/* Mobile-specific containment. */
@media (max-width: 860px) {
  body.gf-site {
    overflow-x: hidden;
  }

  .gf-container,
  .gf-page-content {
    width: min(calc(100% - 28px), var(--gf-container));
  }

  .gf-service-hero {
    width: 100%;
    gap: 24px;
  }

  .gf-service-hero__panel {
    width: 100%;
    padding: 24px 22px;
  }

  .gf-service-hero__panel li {
    font-size: 0.98rem;
    line-height: 1.45;
  }

  .gf-service-section--cream {
    margin-left: -14px;
    margin-right: -14px;
    padding-left: 14px;
    padding-right: 14px;
    max-width: calc(100% + 28px);
  }

  .gf-footer__grid {
    grid-template-columns: 1fr;
    width: min(calc(100% - 28px), var(--gf-container));
  }

  .gf-footer .custom-logo {
    max-width: min(230px, 66vw);
    max-height: 64px;
  }

  .gf-contact-card,
  .gf-map-placeholder,
  .gf-split__panel,
  .gf-compliance-band,
  .gf-inner-cta {
    padding-left: 22px;
    padding-right: 22px;
  }

  .gf-contact-method {
    grid-template-columns: 38px minmax(0, 1fr);
    padding: 15px;
  }
}

@media (max-width: 440px) {
  .gf-service-hero h1 {
    font-size: clamp(2rem, 11vw, 3.1rem);
  }

  .gf-service-hero__lead {
    font-size: 0.98rem;
  }

  .gf-service-hero__panel li {
    font-size: 0.92rem;
  }

  .gf-footer__brand p {
    max-width: 100%;
  }

  .gf-footer .custom-logo {
    max-width: 210px;
  }
}


/* v1.0.8 global section padding and overflow audit
   Standardises spacing across inner pages and prevents full-bleed sections,
   process cards and horizontal grids from clipping at viewport edges. */

.gf-page-content {
  width: 100%;
  max-width: none;
  padding-left: 0;
  padding-right: 0;
}

.gf-page-content > .gf-article,
.gf-article--wide {
  width: min(calc(100% - 40px), var(--gf-container));
  max-width: var(--gf-container);
  margin-left: auto;
  margin-right: auto;
}

/* Rich page sections should be container-safe by default. */
.gf-service-page > section:not(.gf-service-section--cream) {
  width: 100%;
}

/* Rework cream/full-bleed sections so the background is full width, but the
   actual content remains padded inside the normal max-width container. */
.gf-service-section--cream {
  position: relative;
  left: 50%;
  right: 50%;
  width: 100vw;
  max-width: 100vw;
  margin-left: -50vw;
  margin-right: -50vw;
  padding-left: max(32px, calc((100vw - var(--gf-container)) / 2 + 40px));
  padding-right: max(32px, calc((100vw - var(--gf-container)) / 2 + 40px));
  overflow: hidden;
}

/* Extra padding for cream sections where large type was touching the edge. */
.gf-service-section--cream .gf-service-section__head {
  max-width: min(880px, 100%);
  padding-left: 0;
  padding-right: 0;
}

.gf-service-section--cream .gf-process,
.gf-service-section--cream .gf-service-grid,
.gf-service-section--cream .gf-case-grid,
.gf-service-section--cream .gf-faq {
  width: 100%;
  max-width: var(--gf-container);
  margin-left: auto;
  margin-right: auto;
}

/* Process cards had a 5-col layout that can overflow around tablet widths.
   Let the grid auto-fit rather than forcing five cards into the available space. */
.gf-process {
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  width: 100%;
}

.gf-process__step {
  min-width: 0;
  overflow: hidden;
}

/* Cards and grids: ensure text and boxes cannot exceed the viewport. */
.gf-service-grid,
.gf-case-grid,
.gf-service-stat-grid {
  width: 100%;
  grid-template-columns: repeat(auto-fit, minmax(min(260px, 100%), 1fr));
}

.gf-service-info-card,
.gf-case-card,
.gf-service-mini-stat {
  min-width: 0;
  overflow: hidden;
}

/* Split/compliance/CTA sections need consistent side breathing room on smaller viewports. */
.gf-split,
.gf-compliance-band,
.gf-inner-cta,
.gf-contact-layout {
  width: 100%;
  max-width: 100%;
}

/* Large headings wrap on whole words only — no mid-word hyphens. */
.gf-hero__title,
.gf-service-hero h1,
.gf-service-section__head h2,
.gf-split h2,
.gf-compliance-band h2,
.gf-contact-card h2,
.gf-inner-cta h2,
.gf-simple__header h1,
.gf-simple__content h2,
.gf-public__content h2,
.gf-planning__content h2,
.gf-cta__content h2 {
  max-width: 100%;
  overflow-wrap: normal;
  word-break: normal;
  hyphens: none;
  -webkit-hyphens: none;
}

/* Header/menu mobile safety */
.gf-nav.is-open {
  max-width: calc(100vw - 28px);
  overflow-x: hidden;
}

@media (max-width: 1100px) {
  .gf-service-section--cream {
    padding-left: 34px;
    padding-right: 34px;
  }

  .gf-process {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  }
}

@media (max-width: 860px) {
  .gf-page-content > .gf-article,
  .gf-article--wide {
    width: min(calc(100% - 28px), var(--gf-container));
  }

  .gf-service-section {
    padding-top: 48px;
    padding-bottom: 48px;
  }

  .gf-service-section--cream {
    left: auto;
    right: auto;
    width: auto;
    max-width: none;
    margin-left: -14px;
    margin-right: -14px;
    padding-left: 28px;
    padding-right: 28px;
  }

  .gf-service-section--cream .gf-service-section__head {
    margin-bottom: 28px;
  }

  .gf-process {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .gf-process__step {
    min-height: auto;
    padding: 26px 24px;
  }

  .gf-service-grid,
  .gf-case-grid,
  .gf-service-stat-grid {
    grid-template-columns: 1fr;
  }

  .gf-service-info-card,
  .gf-case-card,
  .gf-service-mini-stat {
    padding: 24px;
  }

  .gf-service-section__head h2 {
    font-size: clamp(2rem, 10vw, 3rem);
  }
}

@media (max-width: 440px) {
  .gf-page-content > .gf-article,
  .gf-article--wide {
    width: min(calc(100% - 24px), var(--gf-container));
  }

  .gf-service-section--cream {
    margin-left: -12px;
    margin-right: -12px;
    padding-left: 22px;
    padding-right: 22px;
  }

  .gf-service-section__head h2,
  .gf-split h2,
  .gf-compliance-band h2,
  .gf-contact-card h2,
  .gf-inner-cta h2 {
    font-size: clamp(1.85rem, 10.5vw, 2.65rem);
    line-height: 1.08;
  }

  .gf-service-info-card,
  .gf-case-card,
  .gf-service-mini-stat,
  .gf-process__step {
    padding: 22px;
  }
}


/* v1.0.9 seamless full-bleed hero backgrounds
   The inner-page hero previously lived inside the page container, causing
   visible vertical seams where its dark background met the body. This makes
   the hero visually full-bleed while keeping the real content inside the
   same max-width grid. */

body.gf-site {
  background: #0c0f0f;
}

.gf-main--default {
  background: #0c0f0f;
}

.gf-main--default .gf-page-content {
  width: 100%;
  max-width: none;
  padding-left: 0;
  padding-right: 0;
}

.gf-main--default .gf-service-page {
  position: relative;
  z-index: 0;
}

/* Hero section becomes a full-bleed dark plane. Content remains constrained
   by padding based on the global container. */
.gf-main--default .gf-service-page > .gf-service-hero:first-child {
  width: 100vw;
  max-width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  padding-left: max(40px, calc((100vw - var(--gf-container)) / 2 + 40px));
  padding-right: max(40px, calc((100vw - var(--gf-container)) / 2 + 40px));
  background:
    radial-gradient(circle at 10% 25%, rgba(199,154,86,0.105), transparent 30rem),
    radial-gradient(circle at 82% 47%, rgba(199,154,86,0.065), transparent 28rem),
    linear-gradient(180deg, #090b0b 0%, #0c0f0f 100%);
  overflow: hidden;
}

/* Disable older pseudo-background from v1.0.4 that created a second inset
   plane and caused the visible seam. */
.gf-main--default .gf-service-page > .gf-service-hero:first-child::before {
  content: none !important;
  display: none !important;
}

/* Keep the columns aligned inside the hero's full-width background. */
.gf-service-hero__copy {
  min-width: 0;
}

.gf-service-hero__panel {
  min-width: 0;
}

/* Ensure following dark sections start on the same dark value. */
.gf-service-page > .gf-service-section:not(.gf-service-section--cream) {
  background: #0c0f0f;
}

/* Cream sections remain full-bleed but content-padded. */
.gf-service-section--cream {
  background: var(--gf-cream);
}

/* Homepage hero should also feel seamless against the dark site chrome. */
.gf-hero {
  background-color: #0c0f0f;
}

/* For narrower screens keep full-bleed background, but use mobile-safe
   internal gutters so text/cards never touch the edges. */
@media (max-width: 860px) {
  .gf-main--default .gf-service-page > .gf-service-hero:first-child {
    width: auto;
    max-width: none;
    margin-left: -14px;
    margin-right: -14px;
    padding-left: 28px;
    padding-right: 28px;
  }
}

@media (max-width: 440px) {
  .gf-main--default .gf-service-page > .gf-service-hero:first-child {
    margin-left: -12px;
    margin-right: -12px;
    padding-left: 22px;
    padding-right: 22px;
  }
}


/* v1.0.10 service page wrapper restructure
   The hero was full-width, but its article/page wrapper still had the normal
   max-width container, causing visible vertical seams. Rich service pages now
   render outside that normal container; these rules make the content itself
   responsible for its own inner container widths. */
.gf-page-content--wide {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 0;
  overflow-x: clip;
}

.gf-page-content--wide > .gf-article--wide {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 0;
}

.gf-page-content--wide .gf-entry-content {
  width: 100%;
  max-width: none;
}

.gf-page-content--wide .gf-service-page {
  width: 100%;
  max-width: none;
  margin: 0;
  overflow-x: clip;
}

/* Service hero is now a genuine full-bleed section. */
.gf-page-content--wide .gf-service-page > .gf-service-hero:first-child {
  width: 100%;
  max-width: none;
  margin-left: 0;
  margin-right: 0;
  padding-left: max(40px, calc((100vw - var(--gf-container)) / 2 + 40px));
  padding-right: max(40px, calc((100vw - var(--gf-container)) / 2 + 40px));
  background:
    radial-gradient(circle at 10% 25%, rgba(199,154,86,0.105), transparent 30rem),
    radial-gradient(circle at 82% 47%, rgba(199,154,86,0.065), transparent 28rem),
    linear-gradient(180deg, #090b0b 0%, #0c0f0f 100%);
}

/* Non-cream inner sections should sit inside the same visual max-width
   container, while the dark page background remains full-width. */
.gf-page-content--wide .gf-service-page > .gf-service-section:not(.gf-service-section--cream) {
  width: min(calc(100% - 40px), var(--gf-container));
  max-width: var(--gf-container);
  margin-left: auto;
  margin-right: auto;
}

/* Full-bleed cream sections: background full width; content padded to align
   with the same inner grid. */
.gf-page-content--wide .gf-service-section--cream {
  width: 100%;
  max-width: none;
  margin-left: 0;
  margin-right: 0;
  padding-left: max(40px, calc((100vw - var(--gf-container)) / 2 + 40px));
  padding-right: max(40px, calc((100vw - var(--gf-container)) / 2 + 40px));
}

/* Neutralise older full-bleed hacks for rich pages now handled by markup. */
.gf-page-content--wide .gf-service-section--cream {
  left: auto;
  right: auto;
}

.gf-page-content--wide .gf-main--default .gf-service-page > .gf-service-hero:first-child {
  margin-left: 0;
  margin-right: 0;
}

/* Keep CTA and contact sections aligned if they are the direct section body. */
.gf-page-content--wide .gf-inner-cta,
.gf-page-content--wide .gf-compliance-band,
.gf-page-content--wide .gf-contact-layout,
.gf-page-content--wide .gf-split {
  max-width: 100%;
}

@media (max-width: 860px) {
  .gf-page-content--wide .gf-service-page > .gf-service-hero:first-child {
    padding-left: 28px;
    padding-right: 28px;
  }

  .gf-page-content--wide .gf-service-page > .gf-service-section:not(.gf-service-section--cream) {
    width: min(calc(100% - 28px), var(--gf-container));
  }

  .gf-page-content--wide .gf-service-section--cream {
    padding-left: 28px;
    padding-right: 28px;
  }
}

@media (max-width: 440px) {
  .gf-page-content--wide .gf-service-page > .gf-service-hero:first-child {
    padding-left: 22px;
    padding-right: 22px;
  }

  .gf-page-content--wide .gf-service-page > .gf-service-section:not(.gf-service-section--cream) {
    width: min(calc(100% - 24px), var(--gf-container));
  }

  .gf-page-content--wide .gf-service-section--cream {
    padding-left: 22px;
    padding-right: 22px;
  }
}


/* Simple Content page template
   Readable long-form layout for Privacy Policy, Terms and similar pages.
   The site header is absolutely positioned for hero pages, so text pages
   put it back in normal flow and add a top margin below it. */
.gf-simple-page .gf-header,
.gf-simple-page .gf-header.is-scrolled {
  position: sticky;
  inset: auto;
  top: 0;
  width: 100%;
  background: #0b0d0d;
  backdrop-filter: blur(16px);
  box-shadow: 0 10px 32px rgba(0, 0, 0, 0.2);
}

.admin-bar.gf-simple-page .gf-header,
.admin-bar.gf-simple-page .gf-header.is-scrolled {
  top: 32px;
}

@media screen and (max-width: 782px) {
  .admin-bar.gf-simple-page .gf-header,
  .admin-bar.gf-simple-page .gf-header.is-scrolled {
    top: 46px;
  }
}

.gf-main--simple {
  padding-top: 0;
  padding-bottom: clamp(64px, 8vw, 120px);
  background: #0c0f0f;
}

.gf-simple,
.gf-main--simple .gf-article {
  margin-top: 48px;
}

.gf-simple__inner {
  max-width: 820px;
}

.gf-simple__header {
  margin-bottom: clamp(28px, 4vw, 42px);
  padding-bottom: 28px;
  border-bottom: 1px solid var(--gf-line);
}

.gf-simple__header h1 {
  margin: 0;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(2.2rem, 4.4vw, 3.6rem);
  line-height: 1.08;
  letter-spacing: -0.04em;
  color: var(--gf-cream);
}

.gf-simple__meta {
  margin: 14px 0 0;
  color: var(--gf-muted);
  font-size: 0.86rem;
}

.gf-simple__content {
  color: var(--gf-muted);
  font-size: 1.02rem;
  line-height: 1.8;
}

.gf-simple__content > *:first-child {
  margin-top: 0;
}

.gf-simple__content > *:last-child {
  margin-bottom: 0;
}

.gf-simple__content h2,
.gf-simple__content h3,
.gf-simple__content h4 {
  color: var(--gf-text);
  line-height: 1.25;
}

.gf-simple__content h2 {
  margin: 2.4em 0 0.7em;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(1.5rem, 2.4vw, 2rem);
  letter-spacing: -0.03em;
}

.gf-simple__content h3 {
  margin: 2em 0 0.55em;
  font-size: 1.12rem;
  font-weight: 700;
}

.gf-simple__content h4 {
  margin: 1.7em 0 0.45em;
  font-size: 1rem;
  font-weight: 700;
  color: var(--gf-gold-2);
}

.gf-simple__content p,
.gf-simple__content ul,
.gf-simple__content ol {
  margin: 0 0 1.15em;
}

.gf-simple__content a {
  color: var(--gf-gold-2);
  text-decoration: underline;
  text-underline-offset: 0.18em;
}

.gf-simple__content a:hover {
  color: #fff;
}

.gf-simple__content strong {
  color: var(--gf-cream);
  font-weight: 700;
}

.gf-simple__content ul,
.gf-simple__content ol {
  padding-left: 1.25em;
}

.gf-simple__content li + li {
  margin-top: 0.45em;
}

.gf-simple__content blockquote {
  margin: 1.6em 0;
  padding: 6px 0 6px 22px;
  border-left: 3px solid var(--gf-gold);
  color: var(--gf-cream);
}

.gf-simple__content hr {
  margin: 2.2em 0;
  border: 0;
  border-top: 1px solid var(--gf-line);
}

.gf-simple__content table {
  width: 100%;
  margin: 1.6em 0;
  border-collapse: collapse;
  font-size: 0.95rem;
}

.gf-simple__content th,
.gf-simple__content td {
  padding: 12px 14px;
  border: 1px solid var(--gf-line-soft);
  text-align: left;
  vertical-align: top;
}

.gf-simple__content th {
  color: var(--gf-cream);
  background: rgba(255, 255, 255, 0.04);
  font-weight: 700;
}

.gf-simple__content .wp-block-table,
.gf-simple__content .alignwide,
.gf-simple__content .alignfull {
  max-width: 100%;
}

@media (max-width: 860px) {
  .gf-simple-page .gf-header,
  .gf-simple-page .gf-header.is-scrolled {
    position: sticky;
    inset: auto;
    top: 0;
  }

  .admin-bar.gf-simple-page .gf-header,
  .admin-bar.gf-simple-page .gf-header.is-scrolled {
    top: 46px;
  }

  .gf-simple,
  .gf-main--simple .gf-article {
    margin-top: 28px;
  }

  .gf-simple__header {
    padding-bottom: 22px;
  }
}


/* Page hero background image
   Inner service heroes inherit --gf-hero-image from the current page,
   the site default, or the homepage image. */
body.gf-has-hero-image .gf-service-page > .gf-service-hero:first-child,
body.gf-has-hero-image .gf-main--default .gf-service-page > .gf-service-hero:first-child,
body.gf-has-hero-image .gf-page-content--wide .gf-service-page > .gf-service-hero:first-child {
  background:
    linear-gradient(105deg, rgba(9, 10, 10, 0.94) 0%, rgba(9, 10, 10, 0.78) 36%, rgba(9, 10, 10, 0.46) 66%, rgba(9, 10, 10, 0.78) 100%),
    var(--gf-hero-image);
  background-size: cover;
  background-position: center;
}


/* Cream-section info cards
   Give the flat white tiles a gold-edged, numbered, parchment treatment. */
.gf-service-section--cream .gf-service-grid {
  counter-reset: gf-info-card;
  gap: 20px;
}

.gf-service-section--cream .gf-service-info-card {
  --gf-card-accent: var(--gf-gold);
  counter-increment: gf-info-card;
  position: relative;
  overflow: visible;
  padding: 28px 26px 30px 30px;
  border: 1.5px solid rgba(184, 140, 62, 0.72);
  border-radius: 16px;
  background:
    linear-gradient(165deg, #ffffff 0%, #fff8ee 58%, #f3e6d2 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.95),
    0 16px 36px rgba(62, 44, 18, 0.14);
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.gf-service-section--cream .gf-service-info-card::before {
  content: counter(gf-info-card, decimal-leading-zero);
  display: block;
  margin-bottom: 12px;
  color: var(--gf-card-accent);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.18em;
}

.gf-service-section--cream .gf-service-info-card::after {
  content: "";
  position: absolute;
  inset: 12px auto 12px 0;
  width: 4px;
  border-radius: 0 4px 4px 0;
  background: linear-gradient(180deg, var(--gf-gold-2), var(--gf-gold) 45%, rgba(199, 154, 86, 0.2));
}

.gf-service-section--cream .gf-service-info-card h3 {
  margin: 0 0 10px;
  color: #1a1714;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(1.2rem, 1.7vw, 1.42rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.03em;
}

.gf-service-section--cream .gf-service-info-card p {
  color: #5a534a;
  font-size: 0.94rem;
  line-height: 1.65;
}

.gf-service-section--cream .gf-service-info-card:hover {
  transform: translateY(-5px);
  border-color: rgba(199, 154, 86, 0.88);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.9),
    0 22px 44px rgba(62, 44, 18, 0.16);
}

.gf-service-section--cream .gf-service-info-card:nth-child(3n + 2) {
  --gf-card-accent: #b8863f;
}

.gf-service-section--cream .gf-service-info-card:nth-child(3n + 3) {
  --gf-card-accent: #8d6a3a;
}


/* Align inner-page content to the same 1210px container as the homepage.
   Full-bleed sections keep a full-width background, but their padding now
   uses the shared --gf-content-inset instead of the extra 40px offset. */
@media (max-width: 860px) {
  :root {
    --gf-gutter: 14px;
  }
}

@media (max-width: 440px) {
  :root {
    --gf-gutter: 12px;
  }
}

.gf-service-section--cream,
.gf-main--default .gf-service-page > .gf-service-hero:first-child,
.gf-page-content--wide .gf-service-page > .gf-service-hero:first-child,
.gf-page-content--wide .gf-service-section--cream,
.gf-page-content--wide .gf-main--default .gf-service-page > .gf-service-hero:first-child {
  width: 100%;
  max-width: none;
  margin-left: 0;
  margin-right: 0;
  padding-left: var(--gf-content-inset);
  padding-right: var(--gf-content-inset);
}

.gf-page-content > .gf-article:not(.gf-article--wide),
.gf-page-content--wide .gf-service-page > .gf-service-section:not(.gf-service-section--cream) {
  width: min(calc(100% - (var(--gf-gutter) * 2)), var(--gf-container));
  max-width: var(--gf-container);
}

.gf-footer .gf-container,
.gf-header .gf-container {
  width: min(calc(100% - (var(--gf-gutter) * 2)), var(--gf-container));
}


/* News listing and single posts */
.gf-blog-hero {
  position: relative;
  padding-top: clamp(150px, 18vh, 196px);
  padding-bottom: clamp(48px, 7vh, 88px);
  background:
    linear-gradient(105deg, rgba(9, 10, 10, 0.94) 0%, rgba(9, 10, 10, 0.82) 34%, rgba(9, 10, 10, 0.5) 64%, rgba(9, 10, 10, 0.86) 100%),
    var(--gf-hero-image, linear-gradient(135deg, #0d1010 0%, #232929 100%));
  background-size: cover;
  background-position: center;
}

.gf-blog-hero__inner {
  max-width: 820px;
}

.gf-blog-hero h1 {
  margin: 0;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(2.5rem, 5.4vw, 4.4rem);
  line-height: 1.06;
  letter-spacing: -0.045em;
  overflow-wrap: normal;
  hyphens: manual;
}

.gf-blog-hero__meta {
  margin: 16px 0 0;
  color: var(--gf-gold-2);
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.gf-blog-hero__lead {
  max-width: 640px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(1rem, 1.5vw, 1.12rem);
  line-height: 1.65;
}

.gf-blog-index {
  padding: clamp(48px, 7vw, 84px) 0 clamp(36px, 5vw, 64px);
  background: #0c0f0f;
}

.gf-blog-index--related {
  padding-top: 12px;
}

.gf-blog-index__heading {
  margin: 0 0 32px;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(1.6rem, 2.6vw, 2.1rem);
  letter-spacing: -0.03em;
}

.gf-post-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.gf-post-card {
  display: flex;
  flex-direction: column;
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--gf-line);
  border-radius: var(--gf-radius);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.015));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.gf-post-card:hover {
  transform: translateY(-4px);
  border-color: rgba(199, 154, 86, 0.55);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.28);
}

.gf-post-card__media {
  display: block;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #161a1a;
}

.gf-post-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 420ms ease;
}

.gf-post-card:hover .gf-post-card__media img {
  transform: scale(1.04);
}

.gf-post-card__placeholder {
  display: block;
  width: 100%;
  height: 100%;
  background:
    radial-gradient(circle at 30% 20%, rgba(199, 154, 86, 0.22), transparent 42%),
    linear-gradient(135deg, #141818 0%, #232929 100%);
}

.gf-post-card__body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 24px 24px 26px;
}

.gf-post-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 14px;
  margin: 0 0 12px;
  color: var(--gf-gold-2);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.gf-post-card__title {
  margin: 0 0 12px;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(1.2rem, 1.6vw, 1.42rem);
  font-weight: 700;
  line-height: 1.22;
  letter-spacing: -0.03em;
}

.gf-post-card__title a:hover {
  color: var(--gf-gold-2);
}

.gf-post-card__excerpt {
  margin: 0 0 22px;
  color: var(--gf-muted);
  font-size: 0.92rem;
  line-height: 1.65;
}

.gf-post-card__more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: auto;
  color: var(--gf-gold-2);
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.gf-post-card__more:hover {
  color: #fff;
}

.gf-blog-empty {
  max-width: 520px;
  padding: 12px 0 40px;
}

.gf-blog-empty h2 {
  margin: 0 0 12px;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 2rem;
}

.gf-blog-empty p {
  margin: 0 0 24px;
  color: var(--gf-muted);
  line-height: 1.7;
}

.gf-pagination {
  margin-top: 42px;
}

.gf-pagination .nav-links,
.gf-pagination .page-numbers {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
}

.gf-pagination .page-numbers {
  min-width: 42px;
  justify-content: center;
  padding: 10px 14px;
  border: 1px solid var(--gf-line);
  border-radius: 12px;
  color: var(--gf-cream);
  font-size: 0.86rem;
  font-weight: 700;
}

.gf-pagination .page-numbers:hover,
.gf-pagination .page-numbers.current {
  border-color: var(--gf-gold);
  background: rgba(199, 154, 86, 0.12);
  color: #fff;
}

.gf-post {
  padding: clamp(36px, 5vw, 64px) 0 12px;
  background: #0c0f0f;
}

.gf-post__inner {
  max-width: 820px;
}

.gf-post__back {
  margin: 0 0 28px;
}

.gf-post__back a {
  color: var(--gf-gold-2);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.gf-post__back a:hover {
  color: #fff;
}

.gf-post__content {
  color: var(--gf-muted);
  font-size: 1.02rem;
  line-height: 1.8;
}

.gf-post__content > *:first-child {
  margin-top: 0;
}

.gf-post__content > *:last-child {
  margin-bottom: 0;
}

.gf-post__content h2,
.gf-post__content h3,
.gf-post__content h4 {
  color: var(--gf-text);
  line-height: 1.25;
}

.gf-post__content h2 {
  margin: 2.2em 0 0.7em;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(1.5rem, 2.4vw, 2rem);
  letter-spacing: -0.03em;
}

.gf-post__content h3 {
  margin: 2em 0 0.55em;
  font-size: 1.12rem;
  font-weight: 700;
}

.gf-post__content p,
.gf-post__content ul,
.gf-post__content ol {
  margin: 0 0 1.15em;
}

.gf-post__content a {
  color: var(--gf-gold-2);
  text-decoration: underline;
  text-underline-offset: 0.18em;
}

.gf-post__content a:hover {
  color: #fff;
}

.gf-post__content strong {
  color: var(--gf-cream);
}

.gf-post__content ul,
.gf-post__content ol {
  padding-left: 1.25em;
}

.gf-post__content blockquote {
  margin: 1.6em 0;
  padding: 6px 0 6px 22px;
  border-left: 3px solid var(--gf-gold);
  color: var(--gf-cream);
}

.gf-post__content figure,
.gf-post__content .wp-block-image,
.gf-post__content .wp-block-embed {
  margin: 1.7em 0;
}

.gf-post__content img {
  border-radius: 14px;
}

.gf-post-nav {
  margin-top: 48px;
  padding-top: 28px;
  border-top: 1px solid var(--gf-line);
}

.gf-post-nav .nav-links {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.gf-post-nav a {
  display: block;
  color: var(--gf-cream);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.05rem;
  line-height: 1.35;
}

.gf-post-nav a span {
  display: block;
  margin-bottom: 6px;
  color: var(--gf-gold-2);
  font-family: Inter, sans-serif;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.gf-post-nav .nav-next {
  text-align: right;
}

.gf-post-nav:not(:has(a)) {
  display: none;
}

.gf-blog .gf-cta__card.gf-reveal {
  opacity: 1;
  transform: none;
}

.gf-blog-index--related .gf-kicker {
  margin-bottom: 10px;
}

@media (max-width: 700px) {
  .gf-post-grid,
  .gf-post-nav .nav-links {
    grid-template-columns: 1fr;
  }

  .gf-post-nav .nav-next {
    text-align: left;
  }

  .gf-blog-hero h1 {
    font-size: clamp(2.2rem, 11vw, 3.2rem);
  }
}


/* Equipment hero: two brand rows stacked above the right-hand card. */
.gf-hero-brands {
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-self: center;
  width: 100%;
  max-width: 520px;
  margin-left: auto;
}

.gf-hero-brands__rows {
  display: flex;
  flex-direction: column;
  gap: 0;
  padding: 8px 10px;
  border-radius: var(--gf-radius);
  border: 1px solid var(--gf-line);
  background: linear-gradient(180deg, rgba(255,255,255, 0.5), rgba(225,225,225, 0.7));
}

.gf-hero-brands__rows img {
  display: block;
  width: 100%;
  height: auto;
}

@media (max-width: 1100px) {
  .gf-hero-brands {
    max-width: none;
    margin-left: 0;
  }
}
