/*
Theme Name: Goldfinch Construction
Theme URI: https://goldfinch-construction.example.com/
Author: Goldfinch Studio
Author URI: https://goldfinch-construction.example.com/
Description: A refined, minimal WordPress theme for boutique construction and development firms. Off-white canvas, electric cobalt accent, charcoal ink, and a sparing sunny ochre highlight. Manrope throughout. Five-page architecture: Home, About, Projects, Services, Contact. Designed to feel quiet, confident, and contemporary — built for potential clients and the curious public.
Version: 2.1.0
Requires at least: 6.0
Tested up to: 6.5
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: goldfinch
Tags: construction, architecture, business, portfolio, multi-page, featured-images, sticky-post, translation-ready, two-columns, grid-layout, custom-colors, custom-logo, custom-menu, threaded-comments
*/

/* ==========================================================================
   GOLDFINCH CONSTRUCTION v2 — DESIGN SYSTEM
   Refined & minimal · Manrope · Off-white / Cobalt / Charcoal / Ochre
   ========================================================================== */

:root {
  /* ---- Palette ---- */
  --gf-bg:        #FAFAF7;   /* off-white canvas */
  --gf-bg-alt:    #F2F1EC;   /* slightly deeper paper for section breaks */
  --gf-ink:       #1F2937;   /* charcoal — body text + headings */
  --gf-ink-soft:  #374151;   /* secondary text */
  --gf-muted:     #6B7280;   /* tertiary text, captions */
  --gf-faint:     #9CA3AF;   /* placeholders, disabled */
  --gf-line:      #E5E7EB;   /* hairline borders */
  --gf-line-soft: #EFEDE7;   /* even softer hairlines */

  --gf-cobalt:      #1E3A8A;   /* electric cobalt — primary accent */
  --gf-cobalt-dark: #172A66;   /* hover / pressed */
  --gf-cobalt-soft: #EEF1FA;   /* cobalt tint background */

  --gf-ochre:      #E8B547;   /* sunny ochre — used sparingly */
  --gf-ochre-soft: #FBF1D9;   /* ochre tint */

  --gf-white: #FFFFFF;
  --gf-black: #0B0F14;

  /* ---- Typography ---- */
  --gf-font: "Manrope", "Inter", "Helvetica Neue", "Arial", sans-serif;

  /* ---- Type scale ---- */
  --gf-text-xs:   0.75rem;
  --gf-text-sm:   0.875rem;
  --gf-text-base: 1rem;
  --gf-text-md:   1.125rem;
  --gf-text-lg:   1.375rem;
  --gf-text-xl:   1.75rem;
  --gf-text-2xl:  2.25rem;
  --gf-text-3xl:  3rem;
  --gf-text-4xl:  clamp(2.5rem, 5vw, 4.5rem);
  --gf-text-5xl:  clamp(3rem, 7vw, 6rem);

  /* ---- Spacing scale ---- */
  --gf-space-1:  0.25rem;
  --gf-space-2:  0.5rem;
  --gf-space-3:  0.75rem;
  --gf-space-4:  1rem;
  --gf-space-5:  1.5rem;
  --gf-space-6:  2rem;
  --gf-space-8:  3rem;
  --gf-space-10: 4rem;
  --gf-space-12: 6rem;
  --gf-space-16: 8rem;
  --gf-space-20: 10rem;

  /* ---- Layout ---- */
  --gf-container: 1280px;
  --gf-container-narrow: 880px;
  --gf-container-wide: 1440px;
  --gf-radius: 4px;
  --gf-radius-lg: 8px;

  /* ---- Motion ---- */
  --gf-ease: cubic-bezier(0.22, 1, 0.36, 1);
  --gf-ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --gf-dur: 280ms;
  --gf-dur-slow: 600ms;
}

/* ==========================================================================
   RESET
   ========================================================================== */

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-size-adjust: 100%;
}

body {
  font-family: var(--gf-font);
  font-size: var(--gf-text-base);
  line-height: 1.65;
  color: var(--gf-ink);
  background: var(--gf-bg);
  font-weight: 400;
  letter-spacing: -0.005em;
  overflow-x: hidden;
}

img, picture, video, svg { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; transition: color var(--gf-dur) var(--gf-ease); }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
input, textarea, select { font-family: inherit; font-size: inherit; color: inherit; }
::selection { background: var(--gf-cobalt); color: var(--gf-white); }

/* ==========================================================================
   TYPOGRAPHY
   ========================================================================== */

h1, h2, h3, h4, h5, h6 {
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.025em;
  color: var(--gf-ink);
}

h1 { font-size: var(--gf-text-5xl); font-weight: 700; letter-spacing: -0.035em; line-height: 1.02; }
h2 { font-size: var(--gf-text-4xl); font-weight: 600; letter-spacing: -0.03em; line-height: 1.05; }
h3 { font-size: var(--gf-text-2xl); font-weight: 600; letter-spacing: -0.02em; }
h4 { font-size: var(--gf-text-lg); font-weight: 600; letter-spacing: -0.015em; }
h5 { font-size: var(--gf-text-md); font-weight: 600; }
h6 { font-size: var(--gf-text-sm); font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; color: var(--gf-muted); }

p { font-size: var(--gf-text-base); line-height: 1.7; color: var(--gf-ink-soft); margin-bottom: var(--gf-space-4); }
p:last-child { margin-bottom: 0; }
p.lead { font-size: var(--gf-text-md); line-height: 1.6; color: var(--gf-ink); }

.eyebrow {
  display: inline-flex; align-items: center; gap: var(--gf-space-2);
  font-size: var(--gf-text-xs); font-weight: 600; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--gf-cobalt); margin-bottom: var(--gf-space-4);
}
.eyebrow::before {
  content: ""; display: inline-block; width: 24px; height: 1px;
  background: var(--gf-cobalt);
}

.mono-label {
  font-size: var(--gf-text-xs); font-weight: 500; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--gf-muted);
}

/* ==========================================================================
   LAYOUT
   ========================================================================== */

.gf-container { width: 100%; max-width: var(--gf-container); margin: 0 auto; padding: 0 var(--gf-space-6); }
.gf-container-narrow { width: 100%; max-width: var(--gf-container-narrow); margin: 0 auto; padding: 0 var(--gf-space-6); }
.gf-container-wide { width: 100%; max-width: var(--gf-container-wide); margin: 0 auto; padding: 0 var(--gf-space-6); }

.gf-section { padding: var(--gf-space-16) 0; }
.gf-section--tight { padding: var(--gf-space-12) 0; }
.gf-section--alt { background: var(--gf-bg-alt); }
.gf-section--cobalt { background: var(--gf-cobalt); color: var(--gf-white); }
.gf-section--cobalt h1, .gf-section--cobalt h2, .gf-section--cobalt h3, .gf-section--cobalt h4 { color: var(--gf-white); }
.gf-section--cobalt p { color: rgba(255, 255, 255, 0.82); }
.gf-section--ink { background: var(--gf-ink); color: var(--gf-white); }
.gf-section--ink h1, .gf-section--ink h2, .gf-section--ink h3, .gf-section--ink h4 { color: var(--gf-white); }
.gf-section--ink p { color: rgba(255, 255, 255, 0.78); }

.gf-grid { display: grid; gap: var(--gf-space-6); }
.gf-grid--2 { grid-template-columns: repeat(2, 1fr); }
.gf-grid--3 { grid-template-columns: repeat(3, 1fr); }
.gf-grid--4 { grid-template-columns: repeat(4, 1fr); }

/* ==========================================================================
   HEADER & NAV
   ========================================================================== */

.gf-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: var(--gf-space-5) var(--gf-space-6);
  display: flex; align-items: center; justify-content: space-between;
  background: transparent;
  transition: background var(--gf-dur) var(--gf-ease), padding var(--gf-dur) var(--gf-ease), border-color var(--gf-dur) var(--gf-ease);
  border-bottom: 1px solid transparent;
}
.gf-header.is-scrolled {
  background: rgba(250, 250, 247, 0.92);
  backdrop-filter: blur(16px) saturate(180%);
  padding: var(--gf-space-4) var(--gf-space-6);
  border-bottom-color: var(--gf-line);
}

.gf-header__logo {
  display: inline-flex; align-items: center; gap: var(--gf-space-3);
  font-weight: 700; font-size: var(--gf-text-md); letter-spacing: -0.02em; color: var(--gf-ink);
}
.gf-header__logo-mark {
  width: 28px; height: 28px; border-radius: 50%;
  background: var(--gf-cobalt); position: relative; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
}
.gf-header__logo-mark::after {
  content: ""; width: 10px; height: 10px;
  background: var(--gf-ochre); border-radius: 50%;
}

.gf-nav { display: flex; align-items: center; gap: var(--gf-space-6); }
.gf-nav__list { display: flex; align-items: center; gap: var(--gf-space-5); list-style: none; margin: 0; padding: 0; }
.gf-nav__link {
  font-size: var(--gf-text-sm); font-weight: 500; color: var(--gf-ink);
  padding: var(--gf-space-2) 0; position: relative;
  transition: color var(--gf-dur) var(--gf-ease);
}
.gf-nav__link::after {
  content: ""; position: absolute; left: 0; bottom: 0;
  width: 0; height: 1px; background: var(--gf-cobalt);
  transition: width var(--gf-dur) var(--gf-ease);
}
.gf-nav__link:hover, .gf-nav__link.is-active { color: var(--gf-cobalt); }
.gf-nav__link:hover::after, .gf-nav__link.is-active::after { width: 100%; }

.gf-header__cta {
  display: inline-flex; align-items: center; gap: var(--gf-space-2);
  padding: 0.625rem 1.125rem;
  background: var(--gf-cobalt); color: var(--gf-white);
  font-size: var(--gf-text-sm); font-weight: 600;
  border-radius: var(--gf-radius);
  transition: background var(--gf-dur) var(--gf-ease), transform var(--gf-dur) var(--gf-ease);
}
.gf-header__cta:hover { background: var(--gf-cobalt-dark); transform: translateY(-1px); }

.gf-menu-toggle { display: none; width: 32px; height: 32px; flex-direction: column; justify-content: center; gap: 5px; }
.gf-menu-toggle span { display: block; width: 22px; height: 1.5px; background: var(--gf-ink); margin: 0 auto; transition: transform var(--gf-dur) var(--gf-ease), opacity var(--gf-dur) var(--gf-ease); }

/* Mobile drawer */
.gf-mobile-nav {
  position: fixed; inset: 0; z-index: 99;
  background: var(--gf-bg);
  padding: 6rem var(--gf-space-6) var(--gf-space-6);
  transform: translateY(-100%); opacity: 0; pointer-events: none;
  transition: transform var(--gf-dur-slow) var(--gf-ease), opacity var(--gf-dur) var(--gf-ease);
  display: flex; flex-direction: column;
}
.gf-mobile-nav.is-open { transform: translateY(0); opacity: 1; pointer-events: auto; }
.gf-mobile-nav__list { list-style: none; padding: 0; margin: 0; }
.gf-mobile-nav__list li { border-bottom: 1px solid var(--gf-line); }
.gf-mobile-nav__list a {
  display: block; padding: var(--gf-space-5) 0;
  font-size: var(--gf-text-xl); font-weight: 600; color: var(--gf-ink);
}
.gf-mobile-nav__cta { margin-top: var(--gf-space-6); }

/* ==========================================================================
   BUTTONS
   ========================================================================== */

.gf-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: var(--gf-space-2);
  padding: 0.875rem 1.5rem;
  font-size: var(--gf-text-sm); font-weight: 600; letter-spacing: -0.005em;
  border: 1px solid transparent; border-radius: var(--gf-radius);
  transition: all var(--gf-dur) var(--gf-ease);
  cursor: pointer;
}
.gf-btn--primary { background: var(--gf-cobalt); color: var(--gf-white); }
.gf-btn--primary:hover { background: var(--gf-cobalt-dark); transform: translateY(-1px); }
.gf-btn--ochre { background: var(--gf-ochre); color: var(--gf-ink); }
.gf-btn--ochre:hover { background: #d9a434; transform: translateY(-1px); }
.gf-btn--ghost { background: transparent; color: var(--gf-ink); border-color: var(--gf-line); }
.gf-btn--ghost:hover { border-color: var(--gf-ink); background: var(--gf-ink); color: var(--gf-white); }
.gf-btn--ghost-light { background: transparent; color: var(--gf-white); border-color: rgba(255, 255, 255, 0.3); }
.gf-btn--ghost-light:hover { background: var(--gf-white); color: var(--gf-ink); border-color: var(--gf-white); }
.gf-btn--lg { padding: 1.125rem 1.875rem; font-size: var(--gf-text-md); }
.gf-btn__arrow { transition: transform var(--gf-dur) var(--gf-ease); }
.gf-btn:hover .gf-btn__arrow { transform: translateX(3px); }

.gf-link {
  display: inline-flex; align-items: center; gap: var(--gf-space-2);
  font-size: var(--gf-text-sm); font-weight: 600; color: var(--gf-cobalt);
}
.gf-link:hover { color: var(--gf-cobalt-dark); }
.gf-link__arrow { transition: transform var(--gf-dur) var(--gf-ease); }
.gf-link:hover .gf-link__arrow { transform: translateX(3px); }

/* ==========================================================================
   PAGE HEADER (interior pages)
   ========================================================================== */

.gf-page-header {
  padding: 10rem 0 var(--gf-space-12);
  background: var(--gf-bg);
  border-bottom: 1px solid var(--gf-line);
}
.gf-page-header__eyebrow { margin-bottom: var(--gf-space-4); }
.gf-page-header__title { max-width: 16ch; margin-bottom: var(--gf-space-5); }
.gf-page-header__intro {
  font-size: var(--gf-text-lg); line-height: 1.5; color: var(--gf-ink-soft);
  max-width: 56ch; font-weight: 400;
}

.gf-breadcrumb {
  display: flex; gap: var(--gf-space-2); align-items: center;
  margin-bottom: var(--gf-space-6);
  font-size: var(--gf-text-xs); color: var(--gf-muted);
}
.gf-breadcrumb a { color: var(--gf-muted); }
.gf-breadcrumb a:hover { color: var(--gf-cobalt); }
.gf-breadcrumb__sep { color: var(--gf-faint); }

/* ==========================================================================
   HERO (Home — editorial split)
   ========================================================================== */

.gf-hero {
  padding: 9rem 0 var(--gf-space-12);
  background: var(--gf-bg);
  position: relative;
}
.gf-hero__grid {
  display: grid; grid-template-columns: 5fr 6fr; gap: var(--gf-space-12);
  align-items: center;
}
.gf-hero__content { padding-right: var(--gf-space-4); }
.gf-hero__eyebrow { margin-bottom: var(--gf-space-5); }
.gf-hero__title { margin-bottom: var(--gf-space-5); }
.gf-hero__title em {
  font-style: normal; color: var(--gf-cobalt);
  font-weight: 700;
}
.gf-hero__subtitle {
  font-size: var(--gf-text-lg); line-height: 1.55; color: var(--gf-ink-soft);
  max-width: 44ch; margin-bottom: var(--gf-space-8);
}
.gf-hero__actions { display: flex; flex-wrap: wrap; gap: var(--gf-space-3); margin-bottom: var(--gf-space-8); }
.gf-hero__meta {
  display: flex; gap: var(--gf-space-8);
  padding-top: var(--gf-space-5); border-top: 1px solid var(--gf-line);
}
.gf-hero__meta-item .num {
  font-size: var(--gf-text-xl); font-weight: 700; color: var(--gf-ink); letter-spacing: -0.02em;
}
.gf-hero__meta-item .lbl {
  font-size: var(--gf-text-xs); color: var(--gf-muted); margin-top: 2px;
}

.gf-hero__media {
  position: relative; aspect-ratio: 4 / 5;
  background: var(--gf-bg-alt); border-radius: var(--gf-radius-lg); overflow: hidden;
}
.gf-hero__media-img {
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 30% 30%, rgba(30, 58, 138, 0.15) 0%, transparent 55%),
    radial-gradient(circle at 70% 75%, rgba(232, 181, 71, 0.10) 0%, transparent 50%),
    linear-gradient(160deg, #2A2F3A 0%, #1F2937 50%, #0B0F14 100%);
}
.gf-hero__media-img::after {
  content: ""; position: absolute; inset: 0;
  background-image:
    linear-gradient(to right, rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 50px 50px;
}
.gf-hero__media-tag {
  position: absolute; top: var(--gf-space-4); left: var(--gf-space-4);
  display: inline-flex; align-items: center; gap: var(--gf-space-2);
  padding: 0.5rem 0.875rem;
  background: rgba(250, 250, 247, 0.92); backdrop-filter: blur(8px);
  border-radius: 999px;
  font-size: var(--gf-text-xs); font-weight: 600; color: var(--gf-ink);
}
.gf-hero__media-tag::before {
  content: ""; width: 6px; height: 6px; border-radius: 50%;
  background: var(--gf-ochre);
}
.gf-hero__media-caption {
  position: absolute; bottom: var(--gf-space-4); left: var(--gf-space-4); right: var(--gf-space-4);
  color: var(--gf-white); font-size: var(--gf-text-sm); font-weight: 500;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.5);
}

/* ==========================================================================
   VALUE PROPS (3-column)
   ========================================================================== */

.gf-values__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--gf-space-6); }
.gf-value-card {
  padding: var(--gf-space-8) var(--gf-space-6);
  background: var(--gf-white); border: 1px solid var(--gf-line);
  border-radius: var(--gf-radius-lg);
  transition: border-color var(--gf-dur) var(--gf-ease), transform var(--gf-dur) var(--gf-ease);
}
.gf-value-card:hover { border-color: var(--gf-cobalt); transform: translateY(-2px); }
.gf-value-card__icon {
  width: 44px; height: 44px; border-radius: var(--gf-radius);
  background: var(--gf-cobalt-soft); color: var(--gf-cobalt);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.25rem; font-weight: 700; margin-bottom: var(--gf-space-5);
}
.gf-value-card__title { font-size: var(--gf-text-lg); margin-bottom: var(--gf-space-3); }
.gf-value-card__desc { font-size: var(--gf-text-sm); color: var(--gf-muted); line-height: 1.6; }

/* ==========================================================================
   PROJECT CARDS
   ========================================================================== */

.gf-projects-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--gf-space-6); }
.gf-projects-grid--3 { grid-template-columns: repeat(3, 1fr); }

.gf-project-card {
  position: relative; display: block;
  background: var(--gf-white); border: 1px solid var(--gf-line);
  border-radius: var(--gf-radius-lg); overflow: hidden;
  transition: border-color var(--gf-dur) var(--gf-ease), transform var(--gf-dur) var(--gf-ease), box-shadow var(--gf-dur) var(--gf-ease);
}
.gf-project-card:hover {
  border-color: var(--gf-cobalt); transform: translateY(-3px);
  box-shadow: 0 12px 32px -8px rgba(31, 41, 55, 0.12);
}
.gf-project-card__media {
  position: relative; aspect-ratio: 4 / 3; background: var(--gf-bg-alt); overflow: hidden;
}
.gf-project-card__media-img {
  position: absolute; inset: 0;
  transition: transform var(--gf-dur-slow) var(--gf-ease);
}
.gf-project-card:hover .gf-project-card__media-img { transform: scale(1.04); }
.gf-project-card__tag {
  position: absolute; top: var(--gf-space-3); right: var(--gf-space-3);
  padding: 0.375rem 0.75rem;
  background: rgba(250, 250, 247, 0.95); backdrop-filter: blur(6px);
  border-radius: 999px;
  font-size: var(--gf-text-xs); font-weight: 600; color: var(--gf-ink);
}
.gf-project-card__body { padding: var(--gf-space-5); }
.gf-project-card__meta {
  display: flex; gap: var(--gf-space-3); align-items: center;
  font-size: var(--gf-text-xs); color: var(--gf-muted); margin-bottom: var(--gf-space-2);
}
.gf-project-card__meta-dot { width: 3px; height: 3px; border-radius: 50%; background: var(--gf-faint); }
.gf-project-card__title { font-size: var(--gf-text-lg); margin-bottom: var(--gf-space-2); }
.gf-project-card__desc { font-size: var(--gf-text-sm); color: var(--gf-muted); line-height: 1.55; }

/* Placeholder background variants (used when no image is uploaded) */
.gf-ph--a { background: linear-gradient(135deg, #2A2F3A 0%, #1F2937 100%); }
.gf-ph--b { background: linear-gradient(135deg, #1E3A8A 0%, #172A66 100%); }
.gf-ph--c { background: linear-gradient(135deg, #3F3D56 0%, #1F2937 100%); }
.gf-ph--d { background: linear-gradient(135deg, #4A4063 0%, #1F2937 100%); }
.gf-ph--e { background: linear-gradient(135deg, #2C3435 0%, #1F2937 100%); }
.gf-ph--f { background: linear-gradient(135deg, #1E3A8A 0%, #2A2F3A 100%); }
.gf-ph--a::after, .gf-ph--b::after, .gf-ph--c::after, .gf-ph--d::after, .gf-ph--e::after, .gf-ph--f::after {
  content: ""; position: absolute; inset: 0;
  background-image:
    linear-gradient(to right, rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 40px 40px;
}

/* ==========================================================================
   STATS BAR
   ========================================================================== */

.gf-stats {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 0;
  border-top: 1px solid var(--gf-line); border-bottom: 1px solid var(--gf-line);
}
.gf-stat {
  padding: var(--gf-space-8) var(--gf-space-5); text-align: left;
  border-right: 1px solid var(--gf-line);
}
.gf-stat:last-child { border-right: none; }
.gf-stat__num {
  font-size: var(--gf-text-3xl); font-weight: 700; color: var(--gf-ink); letter-spacing: -0.03em; line-height: 1;
  margin-bottom: var(--gf-space-2);
}
.gf-stat__num .unit { font-size: 0.45em; color: var(--gf-cobalt); margin-left: 0.25em; font-weight: 600; }
.gf-stat__lbl {
  font-size: var(--gf-text-xs); color: var(--gf-muted); letter-spacing: 0.05em;
}

/* ==========================================================================
   SECTION HEADER
   ========================================================================== */

.gf-section-head {
  display: flex; justify-content: space-between; align-items: flex-end; gap: var(--gf-space-6);
  margin-bottom: var(--gf-space-10);
}
.gf-section-head__left { max-width: 56ch; }
.gf-section-head__title { margin-bottom: var(--gf-space-3); }
.gf-section-head__desc { font-size: var(--gf-text-md); color: var(--gf-ink-soft); line-height: 1.55; }

/* ==========================================================================
   ABOUT PAGE — story, vision, CEO, team, values
   ========================================================================== */

.gf-story { display: grid; grid-template-columns: 1fr 1fr; gap: var(--gf-space-12); align-items: start; }
.gf-story__body p { margin-bottom: var(--gf-space-4); }
.gf-story__media {
  position: relative; aspect-ratio: 4 / 5; border-radius: var(--gf-radius-lg); overflow: hidden;
  background: var(--gf-bg-alt);
}

.gf-vision {
  display: grid; grid-template-columns: 1fr 2fr; gap: var(--gf-space-12); align-items: center;
  padding: var(--gf-space-12) 0;
}
.gf-vision__quote {
  font-size: var(--gf-text-2xl); line-height: 1.35; color: var(--gf-ink); font-weight: 500;
  letter-spacing: -0.02em;
}
.gf-vision__quote em { font-style: normal; color: var(--gf-cobalt); }

.gf-ceo {
  display: grid; grid-template-columns: 1fr 1.4fr; gap: var(--gf-space-12); align-items: center;
  padding: var(--gf-space-12) 0; border-top: 1px solid var(--gf-line);
}
.gf-ceo__media {
  position: relative; aspect-ratio: 4 / 5; border-radius: var(--gf-radius-lg); overflow: hidden;
  background: var(--gf-bg-alt);
}
.gf-ceo__media-tag {
  position: absolute; bottom: var(--gf-space-4); left: var(--gf-space-4);
  padding: 0.5rem 0.875rem; background: rgba(250, 250, 247, 0.92); backdrop-filter: blur(6px);
  border-radius: var(--gf-radius);
  font-size: var(--gf-text-xs); font-weight: 600; color: var(--gf-ink);
}
.gf-ceo__quote {
  font-size: var(--gf-text-xl); line-height: 1.5; color: var(--gf-ink);
  font-weight: 500; letter-spacing: -0.015em; margin-bottom: var(--gf-space-6);
  padding-left: var(--gf-space-5); border-left: 3px solid var(--gf-cobalt);
}
.gf-ceo__name { font-size: var(--gf-text-md); font-weight: 600; color: var(--gf-ink); }
.gf-ceo__role { font-size: var(--gf-text-sm); color: var(--gf-muted); margin-top: 2px; }

.gf-team-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--gf-space-5); }
.gf-team-card {
  background: var(--gf-white); border: 1px solid var(--gf-line); border-radius: var(--gf-radius-lg);
  overflow: hidden;
  transition: border-color var(--gf-dur) var(--gf-ease), transform var(--gf-dur) var(--gf-ease);
}
.gf-team-card:hover { border-color: var(--gf-cobalt); transform: translateY(-2px); }
.gf-team-card__media {
  position: relative; aspect-ratio: 1 / 1; background: var(--gf-bg-alt); overflow: hidden;
}
.gf-team-card__media-img { position: absolute; inset: 0; }
.gf-team-card__body { padding: var(--gf-space-4); }
.gf-team-card__name { font-size: var(--gf-text-md); font-weight: 600; margin-bottom: 2px; }
.gf-team-card__role { font-size: var(--gf-text-xs); color: var(--gf-muted); }

.gf-values-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--gf-space-6); }
.gf-value-item {
  padding: var(--gf-space-6); background: var(--gf-white); border: 1px solid var(--gf-line);
  border-radius: var(--gf-radius-lg);
}
.gf-value-item__num {
  font-size: var(--gf-text-xs); font-weight: 600; color: var(--gf-cobalt); letter-spacing: 0.1em;
  margin-bottom: var(--gf-space-3);
}
.gf-value-item__title { font-size: var(--gf-text-md); font-weight: 600; margin-bottom: var(--gf-space-2); }
.gf-value-item__desc { font-size: var(--gf-text-sm); color: var(--gf-muted); line-height: 1.6; }

/* ==========================================================================
   SERVICES PAGE
   ========================================================================== */

.gf-services-list { display: grid; gap: var(--gf-space-4); }
.gf-service {
  display: grid; grid-template-columns: 80px 1fr auto; gap: var(--gf-space-6); align-items: start;
  padding: var(--gf-space-8) var(--gf-space-6);
  background: var(--gf-white); border: 1px solid var(--gf-line); border-radius: var(--gf-radius-lg);
  transition: border-color var(--gf-dur) var(--gf-ease), transform var(--gf-dur) var(--gf-ease);
}
.gf-service:hover { border-color: var(--gf-cobalt); transform: translateY(-2px); }
.gf-service__num {
  font-size: var(--gf-text-sm); font-weight: 600; color: var(--gf-cobalt);
  letter-spacing: 0.05em; padding-top: 4px;
}
.gf-service__title { font-size: var(--gf-text-xl); font-weight: 600; margin-bottom: var(--gf-space-2); }
.gf-service__desc { font-size: var(--gf-text-sm); color: var(--gf-muted); line-height: 1.6; max-width: 60ch; }
.gf-service__tags { display: flex; flex-wrap: wrap; gap: var(--gf-space-2); margin-top: var(--gf-space-3); }
.gf-service__tag {
  padding: 0.25rem 0.625rem; background: var(--gf-bg-alt); border-radius: 999px;
  font-size: var(--gf-text-xs); color: var(--gf-ink-soft); font-weight: 500;
}
.gf-service__arrow {
  align-self: center; color: var(--gf-cobalt);
  transition: transform var(--gf-dur) var(--gf-ease);
}
.gf-service:hover .gf-service__arrow { transform: translateX(4px); }

.gf-process { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; border-top: 1px solid var(--gf-line); }
.gf-process__step {
  padding: var(--gf-space-8) var(--gf-space-5); border-right: 1px solid var(--gf-line);
}
.gf-process__step:last-child { border-right: none; }
.gf-process__num {
  font-size: var(--gf-text-sm); font-weight: 600; color: var(--gf-cobalt); letter-spacing: 0.1em; margin-bottom: var(--gf-space-3);
}
.gf-process__title { font-size: var(--gf-text-md); font-weight: 600; margin-bottom: var(--gf-space-2); }
.gf-process__desc { font-size: var(--gf-text-sm); color: var(--gf-muted); line-height: 1.55; }

/* ==========================================================================
   CONTACT PAGE
   ========================================================================== */

.gf-contact-layout { display: grid; grid-template-columns: 1fr 1.3fr; gap: var(--gf-space-12); align-items: start; }
.gf-contact-info__title { margin-bottom: var(--gf-space-4); }
.gf-contact-info__desc { color: var(--gf-ink-soft); margin-bottom: var(--gf-space-8); max-width: 40ch; }
.gf-contact-details { list-style: none; padding: 0; margin: 0 0 var(--gf-space-8); }
.gf-contact-details li {
  padding: var(--gf-space-4) 0; border-top: 1px solid var(--gf-line);
  display: flex; justify-content: space-between; align-items: center; gap: var(--gf-space-4);
}
.gf-contact-details li:last-child { border-bottom: 1px solid var(--gf-line); }
.gf-contact-details__lbl { font-size: var(--gf-text-xs); color: var(--gf-muted); font-weight: 500; letter-spacing: 0.05em; }
.gf-contact-details__val { font-size: var(--gf-text-sm); color: var(--gf-ink); font-weight: 500; text-align: right; }

.gf-form { display: grid; gap: var(--gf-space-5); background: var(--gf-white); padding: var(--gf-space-8); border: 1px solid var(--gf-line); border-radius: var(--gf-radius-lg); }
.gf-form__row { display: grid; grid-template-columns: 1fr 1fr; gap: var(--gf-space-4); }
.gf-field { display: grid; gap: var(--gf-space-2); }
.gf-field__label { font-size: var(--gf-text-xs); font-weight: 600; color: var(--gf-ink-soft); letter-spacing: 0.02em; }
.gf-field__label .req { color: var(--gf-cobalt); }
.gf-field input, .gf-field textarea, .gf-field select {
  background: var(--gf-bg); border: 1px solid var(--gf-line); border-radius: var(--gf-radius);
  padding: 0.75rem 0.875rem; font-size: var(--gf-text-sm); color: var(--gf-ink);
  transition: border-color var(--gf-dur) var(--gf-ease), background var(--gf-dur) var(--gf-ease);
  outline: none;
}
.gf-field input:focus, .gf-field textarea:focus, .gf-field select:focus {
  border-color: var(--gf-cobalt); background: var(--gf-white);
}
.gf-field input::placeholder, .gf-field textarea::placeholder { color: var(--gf-faint); }
.gf-field textarea { min-height: 130px; resize: vertical; }
.gf-form__status { font-size: var(--gf-text-sm); padding: var(--gf-space-3) var(--gf-space-4); border-radius: var(--gf-radius); }
.gf-form__status.is-success { background: var(--gf-cobalt-soft); color: var(--gf-cobalt-dark); }
.gf-form__status.is-error { background: #FEE2E2; color: #B91C1C; }
.gf-form__status:empty { display: none; }
.gf-form__legal { font-size: var(--gf-text-xs); color: var(--gf-muted); line-height: 1.55; }

/* ==========================================================================
   CTA BAND
   ========================================================================== */

.gf-cta-band { background: var(--gf-cobalt); color: var(--gf-white); padding: var(--gf-space-16) 0; }
.gf-cta-band__inner {
  display: grid; grid-template-columns: 1fr auto; gap: var(--gf-space-8); align-items: center;
}
.gf-cta-band__title {
  font-size: var(--gf-text-3xl); font-weight: 600; letter-spacing: -0.025em; line-height: 1.15;
  color: var(--gf-white); max-width: 18ch;
}
.gf-cta-band__title em { font-style: normal; color: var(--gf-ochre); }
.gf-cta-band__desc { color: rgba(255, 255, 255, 0.82); margin-top: var(--gf-space-3); max-width: 50ch; }

/* ==========================================================================
   FOOTER
   ========================================================================== */

.gf-footer { background: var(--gf-ink); color: rgba(255, 255, 255, 0.7); padding: var(--gf-space-16) 0 var(--gf-space-6); }
.gf-footer__main {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: var(--gf-space-10);
  padding-bottom: var(--gf-space-10); border-bottom: 1px solid rgba(255, 255, 255, 0.1); margin-bottom: var(--gf-space-6);
}
.gf-footer__brand-name {
  display: inline-flex; align-items: center; gap: var(--gf-space-3);
  font-size: var(--gf-text-md); font-weight: 700; color: var(--gf-white); margin-bottom: var(--gf-space-4);
  letter-spacing: -0.02em;
}
.gf-footer__brand-name .mark {
  width: 24px; height: 24px; border-radius: 50%; background: var(--gf-cobalt);
  display: inline-flex; align-items: center; justify-content: center;
}
.gf-footer__brand-name .mark::after { content: ""; width: 8px; height: 8px; background: var(--gf-ochre); border-radius: 50%; }
.gf-footer__brand-desc { font-size: var(--gf-text-sm); line-height: 1.65; color: rgba(255, 255, 255, 0.6); max-width: 36ch; margin-bottom: var(--gf-space-5); }
.gf-footer__col-title { font-size: var(--gf-text-xs); font-weight: 600; color: var(--gf-white); letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: var(--gf-space-4); }
.gf-footer__list { list-style: none; padding: 0; margin: 0; }
.gf-footer__list li { margin-bottom: var(--gf-space-3); }
.gf-footer__list a { font-size: var(--gf-text-sm); color: rgba(255, 255, 255, 0.65); transition: color var(--gf-dur) var(--gf-ease); }
.gf-footer__list a:hover { color: var(--gf-ochre); }
.gf-footer__bottom {
  display: flex; justify-content: space-between; align-items: center; gap: var(--gf-space-4); flex-wrap: wrap;
  font-size: var(--gf-text-xs); color: rgba(255, 255, 255, 0.45);
}
.gf-footer__bottom a { color: rgba(255, 255, 255, 0.6); }
.gf-footer__bottom a:hover { color: var(--gf-ochre); }

/* ==========================================================================
   ANIMATIONS — Bulletproof reveal-on-scroll
   ==========================================================================

   How this works (v2.1.0+):
   1. <body> starts with class "gf-anim-pending" (added in header.php).
   2. While gf-anim-pending is present, ALL .gf-reveal elements are VISIBLE
      (no animation). This is the no-JS fallback — content is never hidden.
   3. When the DOM is ready, main.js removes "gf-anim-pending" and adds
      "gf-anim-ready". At this exact moment, .gf-reveal elements snap to
      opacity:0 (their starting state).
   4. On the NEXT animation frame, main.js adds "is-in" to elements already
      in the viewport. The browser registers the opacity:0 → opacity:1
      change and plays the transition.
   5. As the user scrolls, the IntersectionObserver adds "is-in" to elements
      entering the viewport.

   This method is bulletproof because:
   - No inline <head> script that plugins can strip.
   - No class-swap timing issues between <html> and <body>.
   - The starting state (opacity:0) is applied for one full frame before
     is-in is added, so the transition always plays.
   - If main.js never loads, gf-anim-pending stays and content is visible.
*/

/* Default state: visible (while gf-anim-pending, or if JS fails entirely). */
.gf-reveal {
        transition: opacity 0.6s var(--gf-ease), transform 0.6s var(--gf-ease);
}

/* Once JS signals ready, hide reveal elements as their starting state. */
.gf-anim-ready .gf-reveal {
        opacity: 0;
        transform: translateY(24px);
}

/* Reveal them when is-in is added. */
.gf-anim-ready .gf-reveal.is-in {
        opacity: 1;
        transform: translateY(0);
}

/* Stagger delays for grouped reveals. */
.gf-reveal--delay-1 { transition-delay: 80ms; }
.gf-reveal--delay-2 { transition-delay: 160ms; }
.gf-reveal--delay-3 { transition-delay: 240ms; }

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */

@media (max-width: 1024px) {
  .gf-hero__grid { grid-template-columns: 1fr; gap: var(--gf-space-8); }
  .gf-hero__media { aspect-ratio: 16 / 11; max-width: 100%; }
  .gf-values__grid { grid-template-columns: 1fr; }
  .gf-projects-grid, .gf-projects-grid--3 { grid-template-columns: 1fr; }
  .gf-stats { grid-template-columns: repeat(2, 1fr); }
  .gf-stat:nth-child(2) { border-right: none; }
  .gf-stat:nth-child(1), .gf-stat:nth-child(2) { border-bottom: 1px solid var(--gf-line); }
  .gf-story, .gf-vision, .gf-ceo { grid-template-columns: 1fr; gap: var(--gf-space-6); }
  .gf-team-grid { grid-template-columns: repeat(2, 1fr); }
  .gf-values-list { grid-template-columns: 1fr; }
  .gf-process { grid-template-columns: repeat(2, 1fr); }
  .gf-process__step:nth-child(2) { border-right: none; }
  .gf-process__step:nth-child(1), .gf-process__step:nth-child(2) { border-bottom: 1px solid var(--gf-line); }
  .gf-contact-layout { grid-template-columns: 1fr; }
  .gf-cta-band__inner { grid-template-columns: 1fr; }
  .gf-footer__main { grid-template-columns: 1fr 1fr; }
  .gf-section-head { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 768px) {
  .gf-section { padding: var(--gf-space-12) 0; }
  .gf-container, .gf-container-narrow, .gf-container-wide { padding: 0 var(--gf-space-5); }
  .gf-header { padding: var(--gf-space-4) var(--gf-space-5); }
  .gf-nav__list, .gf-header__cta { display: none; }
  .gf-menu-toggle { display: flex; }
  .gf-hero { padding: 7rem 0 var(--gf-space-10); }
  .gf-page-header { padding: 7rem 0 var(--gf-space-10); }
  .gf-form__row { grid-template-columns: 1fr; }
  .gf-service { grid-template-columns: 1fr; gap: var(--gf-space-3); }
  .gf-service__arrow { display: none; }
  .gf-team-grid { grid-template-columns: 1fr; }
  .gf-footer__main { grid-template-columns: 1fr; gap: var(--gf-space-6); }
  .gf-footer__bottom { flex-direction: column; align-items: flex-start; }
}

/* ==========================================================================
   ACCESSIBILITY
   ========================================================================== */

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

.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0;
}
:focus-visible { outline: 2px solid var(--gf-cobalt); outline-offset: 3px; border-radius: var(--gf-radius); }

/* ==========================================================================
   v2.0.1 — ADDITIONS (refactored footer, 404, single post, honeypot, filters)
   ========================================================================== */

/* Skip link — visible on focus */
.sr-only-focusable:focus {
  position: fixed;
  top: 0;
  left: 0;
  width: auto;
  height: auto;
  padding: 0.75rem 1.25rem;
  margin: 0;
  clip: auto;
  overflow: visible;
  white-space: normal;
  background: var(--gf-cobalt);
  color: var(--gf-white);
  z-index: 1000;
  font-size: var(--gf-text-sm);
  font-weight: 600;
  border-radius: 0 0 var(--gf-radius) 0;
}

/* JS-ready body class — hide mobile nav by default, reveal once JS loads */
.gf-anim-pending .gf-mobile-nav { display: none; }

/* Honeypot field — visually hidden but accessible to bots */
.gf-honeypot {
  position: absolute;
  left: -9999px;
  top: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
}

/* Press card on contact page */
.gf-press-card {
  padding: var(--gf-space-5);
  background: var(--gf-cobalt-soft);
  border-radius: var(--gf-radius-lg);
  margin-top: var(--gf-space-6);
}
.gf-press-card p {
  font-size: var(--gf-text-sm);
  color: var(--gf-ink-soft);
  margin: 0;
}

/* Project filter bar */
.gf-filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: var(--gf-space-2);
  margin-bottom: var(--gf-space-8);
}
.gf-filter {
  padding: 0.5rem 1rem;
  font-size: var(--gf-text-xs);
  font-weight: 600;
  background: transparent;
  color: var(--gf-muted);
  border: 1px solid var(--gf-line);
  border-radius: var(--gf-radius);
  cursor: pointer;
  transition: all var(--gf-dur) var(--gf-ease);
  font-family: inherit;
}
.gf-filter:hover { color: var(--gf-ink); border-color: var(--gf-ink); }
.gf-filter.is-active { background: var(--gf-ink); color: var(--gf-white); border-color: var(--gf-ink); }
.gf-project-card.is-hidden { display: none; }

/* Footer refinements — replaced inline styles with semantic classes */
.gf-footer__col--brand { max-width: 36ch; }
.gf-footer__est {
  font-size: var(--gf-text-xs);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  margin-top: var(--gf-space-4);
  margin-bottom: 0;
}
.gf-footer__address {
  font-size: var(--gf-text-sm);
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.6);
  font-style: normal;
  margin: 0;
}
.gf-footer__copyright { margin: 0; }
.gf-footer__legal-nav {
  display: flex;
  align-items: center;
  gap: var(--gf-space-2);
}
.gf-footer__legal-nav a:hover { color: var(--gf-ochre); }

/* 404 page */
.gf-section-404 { padding-top: 10rem; padding-bottom: 10rem; text-align: center; }
.gf-404 { max-width: 640px; margin: 0 auto; }
.gf-404__title { margin-bottom: var(--gf-space-4); }
.gf-404__lead { color: var(--gf-ink-soft); margin-bottom: var(--gf-space-8); }
.gf-404__search { max-width: 420px; margin: 0 auto var(--gf-space-8); }
.gf-404__actions { display: flex; gap: var(--gf-space-3); justify-content: center; flex-wrap: wrap; margin-bottom: var(--gf-space-8); }
.gf-404__nav { font-size: var(--gf-text-sm); color: var(--gf-muted); }
.gf-404__nav a { color: var(--gf-cobalt); font-weight: 500; }
.gf-404__nav a:hover { color: var(--gf-cobalt-dark); }

/* Single post */
.gf-single__meta { margin-bottom: var(--gf-space-4); }
.gf-single__featured {
  margin: 0 0 var(--gf-space-8);
  border-radius: var(--gf-radius-lg);
  overflow: hidden;
}
.gf-single__featured img { width: 100%; height: auto; }
.gf-single__featured figcaption {
  padding: var(--gf-space-3) var(--gf-space-4);
  font-size: var(--gf-text-xs);
  color: var(--gf-muted);
  text-align: center;
}
.gf-single__content {
  font-size: var(--gf-text-md);
  line-height: 1.75;
  color: var(--gf-ink-soft);
}
.gf-single__content h2 { margin: var(--gf-space-8) 0 var(--gf-space-4); }
.gf-single__content h3 { margin: var(--gf-space-6) 0 var(--gf-space-3); }
.gf-single__content p { margin-bottom: var(--gf-space-5); color: var(--gf-ink-soft); }
.gf-single__content blockquote {
  margin: var(--gf-space-6) 0;
  padding: var(--gf-space-4) var(--gf-space-6);
  border-left: 3px solid var(--gf-cobalt);
  background: var(--gf-bg-alt);
  font-style: italic;
  color: var(--gf-ink);
  border-radius: 0 var(--gf-radius) var(--gf-radius) 0;
}
.gf-single__content img { border-radius: var(--gf-radius); margin: var(--gf-space-5) 0; }
.gf-single__content a { color: var(--gf-cobalt); text-decoration: underline; text-underline-offset: 2px; }
.gf-single__content a:hover { color: var(--gf-cobalt-dark); }
.gf-single__footer { margin-top: var(--gf-space-10); padding-top: var(--gf-space-6); border-top: 1px solid var(--gf-line); }
.gf-single__tags { display: flex; flex-wrap: wrap; gap: var(--gf-space-2); align-items: center; }
.gf-single__tags-label { font-size: var(--gf-text-xs); color: var(--gf-muted); margin-right: var(--gf-space-1); }
.gf-single__tag {
  font-size: var(--gf-text-xs);
  font-weight: 500;
  color: var(--gf-cobalt);
  padding: 0.25rem 0.625rem;
  background: var(--gf-cobalt-soft);
  border-radius: 999px;
  transition: background var(--gf-dur) var(--gf-ease);
}
.gf-single__tag:hover { background: var(--gf-cobalt); color: var(--gf-white); }
.gf-single__pagination {
  display: flex;
  justify-content: space-between;
  gap: var(--gf-space-4);
  margin-top: var(--gf-space-10);
  padding-top: var(--gf-space-6);
  border-top: 1px solid var(--gf-line);
  font-size: var(--gf-text-sm);
  flex-wrap: wrap;
}
.gf-single__pagination a { color: var(--gf-cobalt); font-weight: 500; }

/* Page links (for paginated posts) */
.gf-page-links { margin: var(--gf-space-6) 0; font-size: var(--gf-text-sm); }
.gf-page-links__label { margin-right: var(--gf-space-2); color: var(--gf-muted); }
.gf-page-links__link {
  display: inline-block;
  padding: 0.25rem 0.625rem;
  margin: 0 0.125rem;
  border: 1px solid var(--gf-line);
  border-radius: var(--gf-radius);
  color: var(--gf-ink);
}
.gf-page-links__link:hover { border-color: var(--gf-cobalt); color: var(--gf-cobalt); }

/* Comments */
.gf-comments { margin-top: var(--gf-space-10); padding-top: var(--gf-space-8); border-top: 1px solid var(--gf-line); }
.gf-comments__title { margin-bottom: var(--gf-space-5); font-size: var(--gf-text-xl); }
.gf-comments__list { list-style: none; padding: 0; margin: 0 0 var(--gf-space-6); }
.gf-comments__list .comment { padding: var(--gf-space-4) 0; border-bottom: 1px solid var(--gf-line); }
.gf-comments__closed { font-style: italic; color: var(--gf-muted); }
.gf-comment-form { display: grid; gap: var(--gf-space-3); max-width: 600px; }
.gf-comment-form input,
.gf-comment-form textarea {
  padding: 0.75rem;
  border: 1px solid var(--gf-line);
  border-radius: var(--gf-radius);
  font-family: inherit;
  font-size: var(--gf-text-sm);
  background: var(--gf-bg);
}
.gf-comment-form input:focus,
.gf-comment-form textarea:focus { border-color: var(--gf-cobalt); background: var(--gf-white); outline: none; }

/* Blog index post cards */
.gf-post-card { padding: var(--gf-space-8) 0; border-top: 1px solid var(--gf-line); }
.gf-post-card__meta { margin-bottom: var(--gf-space-3); }
.gf-post-card__title { font-size: var(--gf-text-xl); margin-bottom: var(--gf-space-3); }
.gf-post-card__title a { color: var(--gf-ink); transition: color var(--gf-dur) var(--gf-ease); }
.gf-post-card__title a:hover { color: var(--gf-cobalt); }
.gf-post-card__excerpt { color: var(--gf-ink-soft); margin-bottom: var(--gf-space-4); }

/* Search form */
.gf-search-form {
  display: flex;
  border: 1px solid var(--gf-line);
  border-radius: var(--gf-radius);
  overflow: hidden;
  background: var(--gf-white);
}
.gf-search-form__input {
  flex: 1;
  border: none;
  padding: 0.75rem 1rem;
  background: transparent;
  outline: none;
  font-family: inherit;
  font-size: var(--gf-text-sm);
  color: var(--gf-ink);
}
.gf-search-form__input:focus { background: var(--gf-bg-alt); }
.gf-search-form__submit {
  background: var(--gf-ink);
  color: var(--gf-white);
  border: none;
  padding: 0 1.25rem;
  font-size: var(--gf-text-xs);
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  cursor: pointer;
  font-family: inherit;
  transition: background var(--gf-dur) var(--gf-ease);
}
.gf-search-form__submit:hover { background: var(--gf-cobalt); }

/* Focus-visible on buttons */
button:focus-visible, .gf-btn:focus-visible, .gf-filter:focus-visible, .gf-search-form__submit:focus-visible {
  outline: 2px solid var(--gf-cobalt);
  outline-offset: 2px;
}

/* Hamburger button — visible focus */
.gf-menu-toggle:focus-visible {
  outline: 2px solid var(--gf-cobalt);
  outline-offset: 4px;
  border-radius: var(--gf-radius);
}

/* ==========================================================================
   v2.1.0 — JADE SQUARE SHOWCASE (Home page)
   ========================================================================== */

.gf-jade-showcase {
	display: grid;
	grid-template-columns: 1.1fr 1fr;
	gap: var(--gf-space-10);
	align-items: center;
	background: var(--gf-white);
	border: 1px solid var(--gf-line);
	border-radius: var(--gf-radius-lg);
	overflow: hidden;
}
.gf-jade-showcase__media {
	position: relative;
	aspect-ratio: 5 / 4;
	background: var(--gf-bg-alt);
	overflow: hidden;
}
.gf-jade-showcase__media-img {
	position: absolute;
	inset: 0;
	background: linear-gradient(135deg, #2A2F3A 0%, #1F2937 60%, #0B0F14 100%);
}
.gf-jade-showcase__media-img::after {
	content: "";
	position: absolute;
	inset: 0;
	background-image:
		linear-gradient(to right, rgba(255, 255, 255, 0.04) 1px, transparent 1px),
		linear-gradient(to bottom, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
	background-size: 50px 50px;
}
.gf-jade-showcase__badge {
	position: absolute;
	bottom: var(--gf-space-4);
	left: var(--gf-space-4);
	padding: 0.5rem 0.875rem;
	background: rgba(250, 250, 247, 0.92);
	backdrop-filter: blur(6px);
	border-radius: var(--gf-radius);
	font-size: var(--gf-text-xs);
	font-weight: 600;
	color: var(--gf-ink);
}
.gf-jade-showcase__body {
	padding: var(--gf-space-8);
}
.gf-jade-showcase__stats {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: var(--gf-space-4);
	margin-bottom: var(--gf-space-6);
	padding-bottom: var(--gf-space-6);
	border-bottom: 1px solid var(--gf-line);
}
.gf-jade-showcase__stat .num {
	font-size: var(--gf-text-xl);
	font-weight: 700;
	color: var(--gf-ink);
	letter-spacing: -0.02em;
	line-height: 1;
}
.gf-jade-showcase__stat .num .unit {
	font-size: 0.5em;
	color: var(--gf-cobalt);
	margin-left: 0.25em;
}
.gf-jade-showcase__stat .lbl {
	font-size: var(--gf-text-xs);
	color: var(--gf-muted);
	margin-top: 0.25rem;
}
.gf-jade-showcase__desc {
	color: var(--gf-ink-soft);
	margin-bottom: var(--gf-space-6);
	line-height: 1.7;
}
@media (max-width: 1024px) {
	.gf-jade-showcase { grid-template-columns: 1fr; }
	.gf-jade-showcase__media { aspect-ratio: 16 / 10; }
}

/* ==========================================================================
   v2.1.0 — DEMO COMPONENTS
   These styles power the showcase pages at /testimonials/, /clients/, /faq/,
   /process/, /service-area/, and /demo/. They are not used by the main 3 pages
   (Home, About, Contact) but are kept here so you can add these sections to
   any page in the future.
   ========================================================================== */

/* ---- Testimonial cards ---- */
.gf-testimonials-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: var(--gf-space-5);
}
.gf-testimonial {
	background: var(--gf-white);
	border: 1px solid var(--gf-line);
	border-radius: var(--gf-radius-lg);
	padding: var(--gf-space-6);
	transition: border-color var(--gf-dur) var(--gf-ease), transform var(--gf-dur) var(--gf-ease);
}
.gf-testimonial:hover { border-color: var(--gf-cobalt); transform: translateY(-2px); }
.gf-testimonial__quote {
	font-size: var(--gf-text-md);
	line-height: 1.55;
	color: var(--gf-ink);
	margin-bottom: var(--gf-space-5);
	font-weight: 500;
}
.gf-testimonial__quote::before {
	content: "\201C";
	font-size: 2.5rem;
	line-height: 0.8;
	color: var(--gf-cobalt);
	display: block;
	margin-bottom: var(--gf-space-2);
	font-family: Georgia, serif;
}
.gf-testimonial__cite {
	display: flex;
	align-items: center;
	gap: var(--gf-space-3);
	padding-top: var(--gf-space-4);
	border-top: 1px solid var(--gf-line);
}
.gf-testimonial__avatar {
	width: 44px;
	height: 44px;
	border-radius: 50%;
	background: var(--gf-cobalt-soft);
	color: var(--gf-cobalt);
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 700;
	font-size: var(--gf-text-sm);
	flex-shrink: 0;
}
.gf-testimonial__name {
	font-size: var(--gf-text-sm);
	font-weight: 600;
	color: var(--gf-ink);
}
.gf-testimonial__role {
	font-size: var(--gf-text-xs);
	color: var(--gf-muted);
}
@media (max-width: 768px) {
	.gf-testimonials-grid { grid-template-columns: 1fr; }
}

/* ---- Client logos grid ---- */
.gf-clients-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: var(--gf-space-4);
}
.gf-client-logo {
	background: var(--gf-white);
	border: 1px solid var(--gf-line);
	border-radius: var(--gf-radius);
	aspect-ratio: 3 / 2;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: var(--gf-space-5);
	transition: border-color var(--gf-dur) var(--gf-ease), transform var(--gf-dur) var(--gf-ease);
}
.gf-client-logo:hover { border-color: var(--gf-cobalt); transform: translateY(-2px); }
.gf-client-logo__name {
	font-size: var(--gf-text-md);
	font-weight: 700;
	color: var(--gf-muted);
	letter-spacing: -0.01em;
	text-align: center;
	transition: color var(--gf-dur) var(--gf-ease);
}
.gf-client-logo:hover .gf-client-logo__name { color: var(--gf-ink); }
@media (max-width: 1024px) {
	.gf-clients-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 768px) {
	.gf-clients-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ---- FAQ accordion ---- */
.gf-faq-list {
	max-width: 760px;
	margin: 0 auto;
	display: grid;
	gap: var(--gf-space-3);
}
.gf-faq-item {
	background: var(--gf-white);
	border: 1px solid var(--gf-line);
	border-radius: var(--gf-radius-lg);
	overflow: hidden;
	transition: border-color var(--gf-dur) var(--gf-ease);
}
.gf-faq-item[open] { border-color: var(--gf-cobalt); }
.gf-faq-item__question {
	padding: var(--gf-space-5) var(--gf-space-6);
	font-size: var(--gf-text-md);
	font-weight: 600;
	color: var(--gf-ink);
	cursor: pointer;
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: var(--gf-space-4);
	list-style: none;
	transition: color var(--gf-dur) var(--gf-ease);
}
.gf-faq-item__question::-webkit-details-marker { display: none; }
.gf-faq-item__question:hover { color: var(--gf-cobalt); }
.gf-faq-item__icon {
	flex-shrink: 0;
	width: 20px;
	height: 20px;
	position: relative;
	transition: transform var(--gf-dur) var(--gf-ease);
}
.gf-faq-item__icon::before,
.gf-faq-item__icon::after {
	content: "";
	position: absolute;
	background: var(--gf-cobalt);
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}
.gf-faq-item__icon::before { width: 12px; height: 2px; }
.gf-faq-item__icon::after { width: 2px; height: 12px; transition: opacity var(--gf-dur) var(--gf-ease); }
.gf-faq-item[open] .gf-faq-item__icon::after { opacity: 0; }
.gf-faq-item__answer {
	padding: 0 var(--gf-space-6) var(--gf-space-5);
	color: var(--gf-ink-soft);
	line-height: 1.7;
	font-size: var(--gf-text-sm);
}

/* ---- Process timeline (vertical) ---- */
.gf-timeline {
	max-width: 760px;
	margin: 0 auto;
	position: relative;
}
.gf-timeline::before {
	content: "";
	position: absolute;
	left: 24px;
	top: 0;
	bottom: 0;
	width: 2px;
	background: var(--gf-line);
}
.gf-timeline__item {
	position: relative;
	padding-left: 64px;
	padding-bottom: var(--gf-space-8);
}
.gf-timeline__item:last-child { padding-bottom: 0; }
.gf-timeline__marker {
	position: absolute;
	left: 0;
	top: 0;
	width: 48px;
	height: 48px;
	border-radius: 50%;
	background: var(--gf-cobalt);
	color: var(--gf-white);
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 700;
	font-size: var(--gf-text-sm);
	font-family: var(--font-mono);
	z-index: 1;
}
.gf-timeline__title {
	font-size: var(--gf-text-lg);
	font-weight: 600;
	color: var(--gf-ink);
	margin-bottom: var(--gf-space-2);
}
.gf-timeline__duration {
	display: inline-block;
	font-size: var(--gf-text-xs);
	font-weight: 600;
	color: var(--gf-cobalt);
	background: var(--gf-cobalt-soft);
	padding: 0.25rem 0.625rem;
	border-radius: 999px;
	margin-bottom: var(--gf-space-3);
}
.gf-timeline__desc {
	color: var(--gf-ink-soft);
	line-height: 1.7;
	font-size: var(--gf-text-sm);
}

/* ---- Service area map ---- */
.gf-service-area {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: var(--gf-space-10);
	align-items: start;
}
.gf-service-area__map {
	aspect-ratio: 4 / 3;
	background: var(--gf-bg-alt);
	border: 1px solid var(--gf-line);
	border-radius: var(--gf-radius-lg);
	position: relative;
	overflow: hidden;
}
.gf-service-area__map-img {
	position: absolute;
	inset: 0;
	background:
		radial-gradient(circle at 20% 30%, rgba(30, 58, 138, 0.15) 0%, transparent 30%),
		radial-gradient(circle at 70% 60%, rgba(30, 58, 138, 0.12) 0%, transparent 35%),
		radial-gradient(circle at 45% 75%, rgba(30, 58, 138, 0.10) 0%, transparent 25%),
		linear-gradient(135deg, #F2F1EC 0%, #FAFAF7 100%);
}
.gf-service-area__pin {
	position: absolute;
	width: 12px;
	height: 12px;
	border-radius: 50%;
	background: var(--gf-cobalt);
	border: 3px solid var(--gf-white);
	box-shadow: 0 0 0 2px var(--gf-cobalt);
}
.gf-service-area__pin::after {
	content: attr(data-label);
	position: absolute;
	bottom: calc(100% + 6px);
	left: 50%;
	transform: translateX(-50%);
	background: var(--gf-ink);
	color: var(--gf-white);
	padding: 0.25rem 0.5rem;
	border-radius: var(--gf-radius);
	font-size: var(--gf-text-xs);
	font-weight: 600;
	white-space: nowrap;
}
.gf-service-area__cities {
	display: grid;
	gap: var(--gf-space-3);
}
.gf-service-area__city {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: var(--gf-space-4);
	background: var(--gf-white);
	border: 1px solid var(--gf-line);
	border-radius: var(--gf-radius);
	transition: border-color var(--gf-dur) var(--gf-ease);
}
.gf-service-area__city:hover { border-color: var(--gf-cobalt); }
.gf-service-area__city-name {
	font-size: var(--gf-text-md);
	font-weight: 600;
	color: var(--gf-ink);
}
.gf-service-area__city-meta {
	font-size: var(--gf-text-xs);
	color: var(--gf-muted);
}
@media (max-width: 1024px) {
	.gf-service-area { grid-template-columns: 1fr; }
}

/* ---- Demo index page ---- */
.gf-demo-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: var(--gf-space-5);
}
.gf-demo-card {
	display: block;
	background: var(--gf-white);
	border: 1px solid var(--gf-line);
	border-radius: var(--gf-radius-lg);
	padding: var(--gf-space-6);
	transition: border-color var(--gf-dur) var(--gf-ease), transform var(--gf-dur) var(--gf-ease);
}
.gf-demo-card:hover { border-color: var(--gf-cobalt); transform: translateY(-2px); }
.gf-demo-card__icon {
	width: 44px;
	height: 44px;
	border-radius: var(--gf-radius);
	background: var(--gf-cobalt-soft);
	color: var(--gf-cobalt);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.25rem;
	font-weight: 700;
	margin-bottom: var(--gf-space-4);
}
.gf-demo-card__title {
	font-size: var(--gf-text-md);
	font-weight: 600;
	color: var(--gf-ink);
	margin-bottom: var(--gf-space-2);
}
.gf-demo-card__desc {
	font-size: var(--gf-text-sm);
	color: var(--gf-muted);
	line-height: 1.55;
	margin-bottom: var(--gf-space-3);
}
.gf-demo-card__url {
	font-family: var(--font-mono);
	font-size: var(--gf-text-xs);
	color: var(--gf-cobalt);
}
@media (max-width: 1024px) {
	.gf-demo-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
	.gf-demo-grid { grid-template-columns: 1fr; }
}
