@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;
}

* {
  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% - 40px), 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;
}

.gf-brand {
  display: inline-flex;
  flex-direction: column;
  line-height: 1;
  min-width: 210px;
}

.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 {
  width: auto;
  max-height: 68px;
}

.gf-nav {
  margin-left: 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--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: 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: 2.05rem;
  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% - 28px), 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 {
    min-width: 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;
  }
}
