:root {
  --gkf-bg: #000000;
  --gkf-bg-soft: #0a0a0a;
  --gkf-surface: #212020;
  --gkf-surface-alt: #272727;
  --gkf-text: #ffffff;
  --gkf-muted: #8b8b8b;
  --gkf-accent: #d0bfa3;
  --gkf-line: #d9d9d9;
  --gkf-overlay: rgba(27, 27, 27, 0.78);
  --gkf-content: 780px;
  --gkf-wide: 1180px;
  --gkf-radius: 20px;
  --gkf-transition: 260ms ease;
  --gkf-golden-line: rgba(208, 191, 163, 0.11);
  --gkf-golden-grid: rgba(208, 191, 163, 0.028);
  --gkf-ease-cinematic: cubic-bezier(0.22, 1, 0.36, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  position: relative;
  margin: 0;
  overflow-x: hidden;
  background: linear-gradient(180deg, var(--gkf-bg) 40%, var(--gkf-bg-soft) 100%);
  color: var(--gkf-text);
  font-family: "Poppins", Arial, sans-serif;
  font-size: 16px;
  font-weight: 300;
  line-height: 1.75;
  text-rendering: optimizeLegibility;
}

.gkf-golden-field {
  --gkf-golden-shift: 0px;
  position: fixed;
  z-index: 20;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  transform: translate3d(0, var(--gkf-golden-shift), 0);
  will-change: transform;
}

.gkf-golden-field::before {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 74% 44%, rgba(208, 191, 163, 0.035), transparent 36%),
    linear-gradient(90deg, transparent 0 18%, rgba(208, 191, 163, 0.018) 50%, transparent 82%);
  content: "";
}

.gkf-golden-field svg {
  position: absolute;
  top: 50%;
  left: 50%;
  width: max(112vw, 1500px);
  height: max(92vh, 850px);
  transform: translate(-46%, -50%);
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.gkf-golden-field__geometry {
  stroke: var(--gkf-golden-grid);
  stroke-width: 1;
}

.gkf-golden-field__spiral {
  stroke: var(--gkf-golden-line);
  stroke-width: 1.25;
}

.site-header,
.site-main,
.site-footer,
.site-copyright,
.mobile-bottom-nav,
.social-rail {
  position: relative;
  z-index: 10;
}

body.admin-bar .site-header {
  top: 32px;
}

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

img {
  height: auto;
}

a {
  color: inherit;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.22em;
  transition: color var(--gkf-transition), opacity var(--gkf-transition), transform var(--gkf-transition);
}

a:hover {
  color: var(--gkf-accent);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin-top: 0;
  color: var(--gkf-text);
  font-weight: 200;
  line-height: 1.2;
  letter-spacing: 0.1em;
}

p {
  margin-top: 0;
}

button,
input,
textarea,
select {
  font: inherit;
}

::selection {
  background: var(--gkf-accent);
  color: #000;
}

.screen-reader-text {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.screen-reader-text:focus {
  z-index: 100000;
  top: 12px;
  left: 12px;
  width: auto;
  height: auto;
  padding: 12px 18px;
  clip: auto;
  background: #fff;
  color: #000;
}

.site-main {
  min-height: 60vh;
}

.gkf-content-shell {
  width: min(calc(100% - 40px), var(--gkf-content));
  margin-right: auto;
  margin-left: auto;
}

.gkf-content-wide,
.alignwide {
  width: min(calc(100% - 40px), var(--gkf-wide));
  margin-right: auto;
  margin-left: auto;
}

.alignfull {
  width: 100%;
  max-width: none;
  margin-right: 0;
  margin-left: 0;
}

.gkf-section {
  padding-top: clamp(72px, 8vw, 120px);
  padding-bottom: clamp(72px, 8vw, 120px);
}

.gkf-section--compact {
  padding-top: clamp(48px, 5vw, 72px);
  padding-bottom: clamp(48px, 5vw, 72px);
}

.gkf-section--surface {
  background: var(--gkf-surface-alt);
}

.gkf-eyebrow {
  margin-bottom: 16px;
  color: var(--gkf-accent);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
}

.gkf-section-title {
  position: relative;
  margin-bottom: clamp(44px, 6vw, 80px);
  text-align: center;
}

.gkf-section-title h2 {
  position: relative;
  z-index: 2;
  margin: 0;
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 200;
  letter-spacing: 0.16em;
}

.gkf-section-title__ghost {
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 50%;
  width: 100%;
  transform: translate(-50%, -50%);
  color: rgba(255, 255, 255, 0.12);
  font-size: clamp(72px, 10vw, 128px);
  font-weight: 100;
  letter-spacing: 0.2em;
  line-height: 0.8;
  pointer-events: none;
  text-transform: uppercase;
  white-space: nowrap;
}

/* Header */
.site-header {
  position: absolute;
  z-index: 1000;
  top: 0;
  right: 0;
  left: 0;
  color: #fff;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.88), rgba(0, 0, 0, 0));
}

.site-header__brand-row {
  display: flex;
  min-height: 100px;
  align-items: flex-end;
  justify-content: center;
  padding: 24px 24px 8px;
}

.site-brand {
  display: flex;
  align-items: center;
  justify-content: center;
}

.site-brand .custom-logo-link {
  display: block;
  line-height: 0;
}

.site-brand .custom-logo {
  width: min(377px, 48vw);
  max-height: 64px;
  object-fit: contain;
}

.site-brand__text {
  color: #fff;
  font-size: clamp(22px, 3vw, 34px);
  font-weight: 300;
  letter-spacing: 0.2em;
  text-decoration: none;
  text-transform: uppercase;
}

.site-header__nav-row {
  display: flex;
  min-height: 80px;
  align-items: center;
  justify-content: center;
}

.primary-navigation {
  width: min(calc(100% - 40px), 980px);
}

.primary-navigation .menu {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  padding: 0;
  margin: 0;
  list-style: none;
}

.primary-navigation .menu-item {
  position: relative;
  padding: 20px 0;
}

.primary-navigation a {
  color: #fff;
  font-size: 16px;
  font-weight: 400;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
}

.primary-navigation a:hover,
.primary-navigation .current-menu-item > a,
.primary-navigation .current_page_item > a {
  color: rgba(255, 255, 255, 0.5);
}

.primary-navigation .sub-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  display: none;
  min-width: 220px;
  padding: 14px;
  margin: 0;
  transform: translateX(-50%);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  background: rgba(0, 0, 0, 0.94);
  list-style: none;
}

.primary-navigation .menu-item:hover > .sub-menu,
.primary-navigation .menu-item:focus-within > .sub-menu {
  display: block;
}

.primary-navigation .sub-menu .menu-item {
  padding: 8px;
}

.social-rail {
  position: fixed;
  z-index: 1050;
  top: 45%;
  left: 0;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-left: 0;
  border-radius: 0 10px 10px 0;
  background: rgba(0, 0, 0, 0.85);
}

.social-rail a {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  color: #fff;
}

.social-rail a:hover {
  background: #fff;
  color: #000;
}

.social-rail svg,
.site-footer__social svg,
.mobile-bottom-nav svg {
  width: 23px;
  height: 23px;
  fill: currentColor;
  stroke: currentColor;
  stroke-width: 1.5;
}

.mobile-bottom-nav {
  display: none;
}

/* Hero and core blocks */
.wp-block-cover.gkf-hero,
.gkf-hero.wp-block-cover {
  min-height: 780px;
  overflow: hidden;
  background-color: #101010;
}

.wp-block-cover.gkf-home-hero {
  min-height: min(900px, 100svh);
}

.gkf-hero .wp-block-cover__background {
  background: #000;
}

.gkf-hero .wp-block-cover__inner-container {
  width: min(calc(100% - 40px), var(--gkf-wide));
  margin: 0 auto;
  text-align: center;
}

.gkf-hero .wp-block-cover__image-background {
  transform: scale(1.045) translate3d(0, var(--gkf-parallax-y, 0), 0);
  transition: transform 1200ms var(--gkf-ease-cinematic), opacity 1000ms ease;
  will-change: transform;
}

.gkf-js .gkf-hero .wp-block-cover__image-background {
  opacity: 0.62;
  transform: scale(1.12) translate3d(0, var(--gkf-parallax-y, 0), 0);
}

.gkf-js .gkf-hero.is-ready .wp-block-cover__image-background {
  opacity: 1;
  transform: scale(1.045) translate3d(0, var(--gkf-parallax-y, 0), 0);
}

.gkf-js .gkf-hero .gkf-eyebrow,
.gkf-js .gkf-hero h1,
.gkf-js .gkf-hero .wp-block-cover__inner-container > p:last-child {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 900ms var(--gkf-ease-cinematic),
    transform 900ms var(--gkf-ease-cinematic);
}

.gkf-js .gkf-hero.is-ready .gkf-eyebrow,
.gkf-js .gkf-hero.is-ready h1,
.gkf-js .gkf-hero.is-ready .wp-block-cover__inner-container > p:last-child {
  opacity: 1;
  transform: none;
}

.gkf-js .gkf-hero.is-ready h1 {
  transition-delay: 120ms;
}

.gkf-js .gkf-hero.is-ready .wp-block-cover__inner-container > p:last-child {
  transition-delay: 240ms;
}

.gkf-hero h1 {
  max-width: 1000px;
  margin: 0 auto 24px;
  font-size: clamp(38px, 6vw, 76px);
  font-weight: 200;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.gkf-hero p {
  max-width: 760px;
  margin-right: auto;
  margin-left: auto;
  font-size: clamp(15px, 1.5vw, 20px);
  font-weight: 300;
  letter-spacing: 0.05em;
}

.gkf-page-hero h1 {
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 100;
  letter-spacing: 0.26em;
}

.gkf-page-hero p {
  font-size: clamp(15px, 1.4vw, 20px);
}

.wp-block-button__link,
.gkf-button,
button.gkf-button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 12px 28px;
  border: 1px solid #fff;
  border-radius: 999px;
  background: #fff;
  color: #000;
  cursor: pointer;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.03em;
  line-height: 1;
  text-decoration: none;
  transition: color var(--gkf-transition), background var(--gkf-transition), transform var(--gkf-transition);
}

.wp-block-button__link:hover,
.gkf-button:hover,
button.gkf-button:hover {
  transform: translateY(-2px);
  border-color: var(--gkf-accent);
  background: var(--gkf-accent);
  color: #000;
}

.gkf-button--dark {
  border-color: var(--gkf-surface);
  background: var(--gkf-surface);
  color: #fff;
}

/* Editable content sections */
.gkf-split {
  align-items: center !important;
  gap: clamp(30px, 6vw, 80px) !important;
}

.gkf-split > .wp-block-column {
  position: relative;
}

.gkf-split .wp-block-image {
  overflow: hidden;
  margin: 0;
  border-radius: 10%;
}

.gkf-split .wp-block-image img {
  width: 100%;
  border-radius: 10%;
  transform: scale(1.035) translate3d(0, var(--gkf-parallax-y, 0), 0);
  transition: transform 900ms var(--gkf-ease-cinematic);
  will-change: transform;
}

.gkf-split h2 {
  margin-bottom: 18px;
  font-size: clamp(26px, 3vw, 40px);
  font-weight: 200;
  letter-spacing: 0.18em;
}

.gkf-split p {
  font-size: 16px;
  line-height: 1.9;
}

.gkf-split__content {
  padding-left: clamp(0px, 3vw, 44px);
  border-left: 1px solid rgba(255, 255, 255, 0.45);
}

.gkf-topic-list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 14px;
  margin-bottom: 22px;
  color: var(--gkf-text);
  font-size: clamp(13px, 1.4vw, 18px);
  font-weight: 200;
}

.gkf-topic-list span:not(:last-child)::after {
  margin-left: 14px;
  color: var(--gkf-accent);
  content: "|";
}

.gkf-dark-panel {
  padding: clamp(28px, 5vw, 64px);
  border: 1px solid rgba(217, 217, 217, 0.65);
  border-radius: var(--gkf-radius);
  background: var(--gkf-bg);
}

.gkf-dark-panel__inner {
  padding: clamp(30px, 5vw, 64px);
  border-radius: var(--gkf-radius);
  background: var(--gkf-surface-alt);
}

.gkf-entry__title {
  margin-bottom: 44px;
  font-size: clamp(34px, 5vw, 64px);
}

.gkf-entry__featured {
  margin-bottom: 50px;
}

.gkf-entry__featured img {
  width: 100%;
  border-radius: var(--gkf-radius);
}

.gkf-entry__content > * {
  max-width: 100%;
}

.gkf-entry__content h2 {
  margin-top: 72px;
  margin-bottom: 32px;
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 200;
  letter-spacing: 0.18em;
}

.gkf-entry__content h3 {
  margin-top: 48px;
  font-size: clamp(22px, 2.5vw, 30px);
}

.gkf-entry__content .wp-block-gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px !important;
}

.gkf-entry__content .wp-block-gallery figure {
  width: 100% !important;
  margin: 0 !important;
}

.gkf-entry__content .wp-block-gallery img {
  width: 100%;
  height: 100%;
  min-height: 220px;
  border-radius: 18px;
  object-fit: cover;
}

.wp-block-embed {
  margin: 0;
}

.wp-block-embed__wrapper {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
}

.wp-block-embed__wrapper::before {
  display: block;
  padding-top: 56.25%;
  content: "";
}

.wp-block-embed__wrapper iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

/* Dynamic cards */
.gkf-service-grid,
.gkf-project-grid,
.gkf-team-grid {
  display: grid;
  gap: 30px;
}

.gkf-service-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.gkf-service-card {
  position: relative;
  min-width: 0;
}

.gkf-service-card__link {
  display: block;
  color: #fff;
  text-decoration: none;
}

.gkf-service-card__media {
  position: relative;
  overflow: hidden;
  aspect-ratio: 5 / 6;
  border-radius: 22px;
  background: var(--gkf-surface);
}

.gkf-service-card__media img {
  width: 100%;
  height: 100%;
  transition: transform 500ms ease;
  object-fit: cover;
}

.gkf-service-card__link:hover .gkf-service-card__media img {
  transform: scale(1.045);
}

.gkf-service-card__content {
  position: relative;
  z-index: 2;
  width: calc(100% - 38px);
  min-height: 148px;
  padding: 22px;
  margin: -78px auto 0;
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  background: var(--gkf-overlay);
  backdrop-filter: blur(9px);
}

.gkf-service-card__content h3 {
  margin-bottom: 12px;
  font-size: 19px;
  font-weight: 400;
  letter-spacing: 0.04em;
}

.gkf-service-card__content p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
  font-weight: 300;
  line-height: 1.65;
}

.gkf-project-panel {
  padding: 30px;
  border: 1px solid rgba(217, 217, 217, 0.8);
  border-radius: 22px;
  background: #000;
}

.gkf-project-panel__inner {
  padding: clamp(28px, 5vw, 60px);
  border-radius: 20px;
  background: var(--gkf-surface-alt);
}

.gkf-project-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.gkf-project-card a {
  display: block;
  color: #fff;
  text-decoration: none;
}

.gkf-project-card__media {
  overflow: hidden;
  aspect-ratio: 4 / 3;
  border-radius: 18px;
  background: var(--gkf-surface);
}

.gkf-project-card__media img {
  width: 100%;
  height: 100%;
  transition: transform 500ms ease;
  object-fit: cover;
}

.gkf-project-card a:hover img {
  transform: scale(1.045);
}

.gkf-project-card h3 {
  margin: 20px 0 0;
  font-size: 19px;
  font-weight: 300;
  letter-spacing: 0.08em;
}

.gkf-project-panel__more {
  margin-top: 42px;
  text-align: center;
}

.gkf-team-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.gkf-team-card a {
  color: #fff;
  text-decoration: none;
}

.gkf-team-card__media {
  overflow: hidden;
  aspect-ratio: 1.21 / 1;
  border-radius: 22px;
  background: var(--gkf-surface);
}

.gkf-team-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gkf-team-card h3 {
  margin: 28px 0 8px;
  font-size: clamp(22px, 2.5vw, 34px);
  font-weight: 200;
  letter-spacing: 0.16em;
}

.gkf-team-card p {
  color: rgba(255, 255, 255, 0.72);
}

.gkf-empty {
  padding: 30px;
  border: 1px dashed rgba(255, 255, 255, 0.28);
  border-radius: 16px;
  color: var(--gkf-muted);
  text-align: center;
}

/* Social stats and video */
.gkf-social-stats {
  position: relative;
  display: grid;
  min-height: 550px;
  overflow: hidden;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  background-color: #111;
  background-position: center;
  background-size: cover;
}

.gkf-social-stats::before {
  position: absolute;
  z-index: 1;
  inset: 0;
  background: rgba(0, 0, 0, 0.46);
  content: "";
}

.gkf-social-stats__item {
  position: relative;
  z-index: 2;
  display: flex;
  min-height: 550px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px;
  text-align: center;
}

.gkf-social-stats__item + .gkf-social-stats__item {
  border-left: 1px solid rgba(255, 255, 255, 0.55);
}

.gkf-social-stats__item svg {
  width: 72px;
  height: 72px;
  margin-bottom: 24px;
  fill: currentColor;
  stroke: currentColor;
}

.gkf-social-stats__item h3 {
  margin-bottom: 10px;
  font-size: 24px;
  font-weight: 300;
  letter-spacing: 0.08em;
}

.gkf-social-stats__item p {
  margin: 0;
  font-size: 18px;
}

.gkf-video-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.gkf-video-card {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  border-radius: 18px;
  background: var(--gkf-surface);
}

.gkf-video-card iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* Form */
.gkf-contact-form {
  width: min(100%, 620px);
  margin: 0 auto;
}

.gkf-form-row {
  display: grid;
  overflow: hidden;
  grid-template-columns: 190px 1fr;
  margin-bottom: 18px;
  border: 1px solid var(--gkf-surface);
  border-radius: 12px;
  background: #000;
}

.gkf-form-row label {
  display: flex;
  min-height: 56px;
  align-items: center;
  padding: 14px 18px;
  margin: 0;
  background: var(--gkf-surface);
  font-size: 14px;
}

.gkf-form-row input,
.gkf-form-row textarea {
  width: 100%;
  min-width: 0;
  padding: 14px 18px;
  border: 0;
  outline: 0;
  background: #000;
  color: #fff;
}

.gkf-form-row textarea {
  min-height: 150px;
  resize: vertical;
}

.gkf-form-row input:focus,
.gkf-form-row textarea:focus {
  box-shadow: inset 0 0 0 1px var(--gkf-accent);
}

.gkf-form-actions {
  text-align: center;
}

.gkf-contact-details {
  display: grid;
  gap: 18px;
}

.gkf-contact-details p {
  margin: 0;
}

.gkf-contact-details strong {
  color: var(--gkf-accent);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.gkf-contact-details__social {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 20px;
}

.gkf-form-notice {
  padding: 14px 18px;
  margin-bottom: 20px;
  border-radius: 10px;
}

.gkf-form-notice--success {
  border: 1px solid #4d8a63;
  background: rgba(77, 138, 99, 0.18);
}

.gkf-form-notice--error {
  border: 1px solid #a65353;
  background: rgba(166, 83, 83, 0.18);
}

.gkf-honeypot {
  position: absolute;
  left: -9999px;
}

.gkf-consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 18px 0 26px;
  color: rgba(255, 255, 255, 0.75);
  font-size: 13px;
}

.gkf-consent input {
  margin-top: 5px;
}

/* Archive and single */
.gkf-archive-hero,
.gkf-single-hero {
  position: relative;
  display: flex;
  min-height: 600px;
  align-items: center;
  justify-content: center;
  padding: 210px 20px 80px;
  background-color: #111;
  background-position: center;
  background-size: cover;
  text-align: center;
}

.gkf-archive-hero {
  background-image: radial-gradient(circle at 50% 35%, #3a2525, #070707 62%);
}

.gkf-archive-hero--projects {
  background-image: radial-gradient(circle at 55% 35%, #252c3a, #070707 62%);
}

.gkf-archive-hero__inner,
.gkf-single-hero__content {
  position: relative;
  z-index: 2;
  width: min(100%, 900px);
}

.gkf-archive-hero h1,
.gkf-single-hero h1 {
  margin-bottom: 20px;
  font-size: clamp(34px, 5vw, 58px);
  font-weight: 100;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.gkf-single-hero__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.52);
}

.gkf-breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-bottom: 24px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
}

.gkf-related {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.gkf-related > .gkf-content-wide > h2 {
  margin-bottom: 50px;
  font-size: clamp(28px, 3vw, 40px);
}

.gkf-team-profile {
  padding-top: 260px;
}

.gkf-team-profile__grid {
  display: grid;
  align-items: center;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(40px, 7vw, 100px);
}

.gkf-team-profile__media img {
  width: 100%;
  border-radius: 10%;
}

.gkf-team-profile__content h1 {
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 100;
}

.gkf-team-profile__role {
  color: var(--gkf-accent);
  font-size: 18px;
}

.gkf-error {
  max-width: 760px;
  padding-top: 280px;
  margin: 0 auto;
  text-align: center;
}

.blog .site-main > .gkf-content-shell,
.single-post .site-main > .gkf-content-shell,
.search .site-main > .gkf-content-shell {
  padding-top: 260px;
}

.gkf-error h1 {
  font-size: clamp(38px, 7vw, 72px);
}

/* CTA */
.gkf-cta {
  padding: clamp(64px, 8vw, 100px) 20px;
  background: var(--gkf-surface-alt);
  text-align: center;
}

.gkf-cta__inner {
  width: min(100%, 820px);
  margin: 0 auto;
}

.gkf-cta h2 {
  margin-bottom: 20px;
  font-size: clamp(30px, 4vw, 48px);
  font-weight: 200;
}

.gkf-cta p {
  margin-bottom: 28px;
  color: rgba(255, 255, 255, 0.75);
}

/* Footer */
.site-footer {
  position: relative;
  min-height: 420px;
  overflow: hidden;
  padding: 90px 20px 60px;
  background-color: #080808;
  background-position: center;
  background-size: cover;
}

.site-footer__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.62);
}

.site-footer__inner {
  position: relative;
  z-index: 2;
  display: flex;
  width: min(100%, 780px);
  min-height: 270px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  text-align: center;
}

.site-footer__brand .custom-logo {
  width: min(320px, 70vw);
  max-height: 70px;
  object-fit: contain;
}

.site-footer__brand > a:not(.custom-logo-link) {
  font-size: 28px;
  letter-spacing: 0.18em;
  text-decoration: none;
  text-transform: uppercase;
}

.site-footer__social {
  display: flex;
  gap: 18px;
  margin: 34px 0 12px;
}

.site-footer__social a {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
}

.site-footer__email {
  font-size: 15px;
  letter-spacing: 0.04em;
}

.footer-navigation .menu {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px 24px;
  padding: 0;
  margin: 28px 0 0;
  list-style: none;
}

.footer-navigation a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 13px;
  text-decoration: none;
}

.site-copyright {
  padding: 16px 20px;
  background: #000;
  color: var(--gkf-muted);
  font-size: 12px;
  text-align: center;
}

.site-copyright p {
  margin: 0;
}

/* Motion */
.gkf-reveal {
  opacity: 1;
  transform: none;
}

.gkf-js .gkf-reveal {
  opacity: 0;
  transform: translate3d(0, 42px, 0);
  transition:
    opacity 900ms var(--gkf-ease-cinematic) var(--gkf-reveal-delay, 0ms),
    transform 1050ms var(--gkf-ease-cinematic) var(--gkf-reveal-delay, 0ms);
  will-change: opacity, transform;
}

.gkf-js .gkf-reveal[data-reveal="left"] {
  transform: translate3d(-46px, 30px, 0);
}

.gkf-js .gkf-reveal[data-reveal="right"] {
  transform: translate3d(46px, 30px, 0);
}

.gkf-js .gkf-reveal.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.gkf-js .gkf-service-card.gkf-reveal,
.gkf-js .gkf-project-card.gkf-reveal,
.gkf-js .gkf-team-card.gkf-reveal,
.gkf-js .gkf-video-card.gkf-reveal {
  clip-path: inset(9% 0 9% 0 round 12px);
  transition:
    opacity 850ms var(--gkf-ease-cinematic) var(--gkf-reveal-delay, 0ms),
    transform 1000ms var(--gkf-ease-cinematic) var(--gkf-reveal-delay, 0ms),
    clip-path 1100ms var(--gkf-ease-cinematic) var(--gkf-reveal-delay, 0ms);
}

.gkf-js .gkf-service-card.gkf-reveal.is-visible,
.gkf-js .gkf-project-card.gkf-reveal.is-visible,
.gkf-js .gkf-team-card.gkf-reveal.is-visible,
.gkf-js .gkf-video-card.gkf-reveal.is-visible {
  clip-path: inset(0 0 0 0 round 0);
}

@media (max-width: 1100px) {
  .primary-navigation {
    width: min(calc(100% - 30px), 900px);
  }

  .primary-navigation a {
    font-size: 14px;
  }

  .gkf-service-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .gkf-service-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .gkf-project-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .gkf-entry__content .wp-block-gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 767px) {
  body {
    padding-bottom: calc(72px + env(safe-area-inset-bottom));
    font-size: 15px;
  }

  .gkf-golden-field svg {
    left: 58%;
    width: 1180px;
    height: 760px;
    opacity: 0.78;
  }

  body.admin-bar .site-header {
    top: 46px;
  }

  .site-header__brand-row {
    min-height: 76px;
    align-items: center;
    padding: 12px 20px;
  }

  .site-brand .custom-logo {
    width: min(210px, 58vw);
    max-height: 48px;
  }

  .site-brand__text {
    font-size: 18px;
  }

  .site-header__nav-row,
  .social-rail {
    display: none;
  }

  .mobile-bottom-nav {
    position: fixed;
    z-index: 2000;
    right: 0;
    bottom: 0;
    left: 0;
    display: grid;
    min-height: calc(68px + env(safe-area-inset-bottom));
    grid-template-columns: repeat(5, minmax(0, 1fr));
    padding: 6px 4px env(safe-area-inset-bottom);
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(0, 0, 0, 0.96);
    backdrop-filter: blur(12px);
  }

  .mobile-bottom-nav a {
    display: flex;
    min-width: 0;
    min-height: 56px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 3px;
    color: #fff;
    font-size: 9px;
    line-height: 1.1;
    text-align: center;
    text-decoration: none;
  }

  .mobile-bottom-nav svg {
    width: 22px;
    height: 22px;
  }

  .gkf-section {
    padding-top: 64px;
    padding-bottom: 64px;
  }

  .wp-block-cover.gkf-hero,
  .gkf-hero.wp-block-cover {
    min-height: 520px;
  }

  .wp-block-cover.gkf-home-hero {
    min-height: 100svh;
  }

  .gkf-hero h1 {
    font-size: clamp(32px, 10vw, 48px);
    letter-spacing: 0.08em;
  }

  .gkf-page-hero h1 {
    font-size: 30px;
    letter-spacing: 0.14em;
  }

  .gkf-section-title__ghost {
    display: none;
  }

  .gkf-split {
    gap: 36px !important;
  }

  .gkf-split__content {
    padding-left: 0;
    border-left: 0;
  }

  .gkf-split h2 {
    font-size: 26px;
    letter-spacing: 0.1em;
  }

  .gkf-topic-list {
    font-size: 13px;
  }

  .gkf-service-grid,
  .gkf-project-grid,
  .gkf-team-grid,
  .gkf-video-grid,
  .gkf-social-stats,
  .gkf-team-profile__grid {
    grid-template-columns: 1fr;
  }

  .gkf-service-card__content {
    width: calc(100% - 28px);
  }

  .gkf-project-panel {
    padding: 14px;
  }

  .gkf-project-panel__inner {
    padding: 28px 18px;
  }

  .gkf-team-card h3 {
    font-size: 23px;
    letter-spacing: 0.08em;
  }

  .gkf-social-stats__item {
    min-height: 320px;
  }

  .gkf-social-stats__item + .gkf-social-stats__item {
    border-top: 1px solid rgba(255, 255, 255, 0.55);
    border-left: 0;
  }

  .gkf-entry__content .wp-block-gallery {
    grid-template-columns: 1fr;
  }

  .gkf-entry__content .wp-block-gallery img {
    min-height: 0;
  }

  .gkf-archive-hero,
  .gkf-single-hero {
    min-height: 460px;
    padding-top: 130px;
  }

  .gkf-archive-hero h1,
  .gkf-single-hero h1 {
    font-size: 32px;
    letter-spacing: 0.12em;
  }

  .gkf-team-profile {
    padding-top: 150px;
  }

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

  .gkf-form-row label {
    min-height: auto;
  }

  .gkf-error {
    padding-top: 180px;
  }

  .site-footer {
    min-height: 360px;
    padding-top: 64px;
    padding-bottom: 44px;
  }
}

@media (max-width: 420px) {
  .gkf-content-shell,
  .gkf-content-wide,
  .alignwide,
  .gkf-hero .wp-block-cover__inner-container {
    width: min(calc(100% - 32px), var(--gkf-wide));
  }

  .gkf-service-card__content h3 {
    font-size: 18px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .gkf-reveal {
    opacity: 1;
    transform: none;
  }

  .gkf-golden-field,
  .gkf-hero .wp-block-cover__image-background,
  .gkf-split .wp-block-image img {
    transform: none !important;
  }
}
