/*
Theme Name: Gunner Contracting
Theme URI: https://gunnercontracting.com
Author: Faizan Media
Author URI: https://faizanmedia.com
Description: A premium, Elementor-integrated WordPress theme for Gunner Contracting — built for asphalt, grading, and civil construction businesses. Native American Woman-Owned positioning. Fully self-contained styling, no third-party plugin dependencies.
Version: 1.5.4
Requires at least: 6.0
Tested up to: 6.5
Requires PHP: 7.4
License: GPL v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: gunner-contracting
Tags: elementor, business, construction, one-column, custom-colors, custom-menu, featured-images, full-width-template, theme-options
*/

/* =================================================================
   Design tokens
   ================================================================= */
:root {
  --bg:            #f2ede3;
  --bg-soft:       #e8e1d2;
  --bg-card:       #faf6ed;
  --ink:           #1d1a15;
  --ink-soft:      #3a342b;
  --ink-muted:     #6b6355;
  --line:          rgba(29, 26, 21, 0.12);
  --line-soft:     rgba(29, 26, 21, 0.06);
  --gold:          #b88a3e;
  --gold-dark:     #8f6a2a;
  --gold-light:    #d4a85a;
  --shadow-sm:     0 2px 10px rgba(29, 26, 21, 0.04);
  --shadow-md:     0 10px 40px rgba(29, 26, 21, 0.08);
  --shadow-lg:     0 25px 60px rgba(29, 26, 21, 0.12);

  --font-display:  'Cormorant Garamond', 'Playfair Display', Georgia, serif;
  --font-body:     'Inter Tight', -apple-system, BlinkMacSystemFont, sans-serif;

  --container:     1240px;
  --radius:        2px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--ink);
  line-height: 1.6;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  margin: 0;
}

.gc-container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; height: auto; }

/* =================================================================
   Typography helpers
   ================================================================= */
.gc-display {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: -0.015em;
  color: var(--ink);
  margin: 0;
}
.gc-eyebrow {
  font-family: var(--font-body);
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 12px;
  font-weight: 700;
  color: var(--gold-dark);
  display: inline-block;
}

/* =================================================================
   Buttons
   ================================================================= */
.gc-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.05em;
  border-radius: var(--radius);
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.35s cubic-bezier(.4,0,.2,1);
  text-transform: uppercase;
  line-height: 1;
}
.gc-btn-primary {
  background: var(--gold);
  color: #fff;
  box-shadow: 0 4px 20px rgba(184, 138, 62, 0.25);
}
.gc-btn-primary:hover {
  background: var(--gold-dark);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(184, 138, 62, 0.35);
}
.gc-btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink);
}
.gc-btn-ghost:hover {
  background: var(--ink);
  color: var(--bg);
}
.gc-btn svg { width: 14px; height: 14px; transition: transform 0.3s; }
.gc-btn:hover svg { transform: translateX(4px); }

/* =================================================================
   Site Header / Navigation
   ================================================================= */
.gc-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(242, 237, 227, 0.92);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--line-soft);
}
.gc-nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 0;
}
.gc-brand { display: flex; align-items: center; gap: 14px; text-decoration: none; }

/* Custom uploaded logo — displays at configured height, scales proportionally */
.gc-brand-logo {
  display: block;
  height: auto;
  width: auto;
  max-width: 280px;
  object-fit: contain;
  /* height set inline via style attribute from PHP */
}

/* Brand style modifiers */
.gc-brand--logo_only { gap: 0; }
.gc-brand--logo_text .gc-brand-logo { max-width: 80px; }
.gc-brand--text_only { gap: 0; }

.gc-brand-mark {
  width: 44px;
  height: 44px;
  background: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 2px;
  position: relative;
  flex-shrink: 0;
}
.gc-brand-mark::after {
  content: '';
  position: absolute;
  inset: 3px;
  border: 1px solid var(--gold);
  border-radius: 2px;
  pointer-events: none;
}
.gc-brand-mark svg { width: 22px; height: 22px; }
.gc-brand-mark img { max-width: 32px; max-height: 32px; object-fit: contain; }
.gc-brand-text { line-height: 1.15; }
.gc-brand-text .name {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--ink);
}
.gc-brand-text .tag {
  font-size: 9px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin-top: 2px;
}

.gc-nav-links {
  display: flex;
  gap: 36px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.gc-nav-links a {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--ink-soft);
  position: relative;
  padding: 6px 0;
  transition: color 0.25s;
}
.gc-nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.3s ease;
}
.gc-nav-links a:hover,
.gc-nav-links li.current-menu-item a,
.gc-nav-links li.current_page_item a { color: var(--ink); }
.gc-nav-links li.current-menu-item a::after,
.gc-nav-links li.current_page_item a::after,
.gc-nav-links a:hover::after { width: 100%; }

.gc-nav-cta { display: flex; align-items: center; gap: 16px; }

.gc-mobile-toggle {
  display: none;
  background: transparent;
  border: 0;
  cursor: pointer;
  padding: 8px;
}
.gc-mobile-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--ink);
  margin: 5px 0;
  transition: transform 0.3s;
}

/* =================================================================
   Hero widget
   ================================================================= */
.gc-hero {
  position: relative;
  overflow: hidden;
  padding: 40px 0 0;
}
.gc-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 0;
  align-items: stretch;
  min-height: 560px;
}
.gc-hero-content {
  padding: 80px 60px 80px 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  z-index: 2;
}
.gc-hero-quote {
  font-family: var(--font-display);
  font-size: clamp(48px, 6vw, 86px);
  font-weight: 600;
  line-height: 0.98;
  color: var(--ink);
  letter-spacing: -0.02em;
  margin: 0 0 32px;
}
.gc-hero-quote .amp {
  color: var(--gold);
  font-style: italic;
  font-weight: 500;
}
.gc-hero-sub {
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink-soft);
  max-width: 520px;
  margin: 0 0 40px;
}
.gc-hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }

.gc-hero-media {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
}
.gc-hero-media::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg,
    rgba(242, 237, 227, 0.95) 0%,
    rgba(242, 237, 227, 0.4) 30%,
    rgba(242, 237, 227, 0) 60%);
  z-index: 1;
  pointer-events: none;
}
.gc-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: sepia(12%) saturate(0.92) contrast(1.05);
}

.gc-hero-meta {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 1fr;
  border-top: 1px solid var(--line);
  margin-top: 60px;
}
.gc-hero-meta-item {
  padding: 28px 24px;
  border-right: 1px solid var(--line-soft);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  min-height: 100%;
}
.gc-hero-meta-item:last-child { border-right: 0; }
.gc-hero-meta-label {
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin-bottom: 8px;
}
.gc-hero-meta-value {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  color: var(--ink);
}

/* =================================================================
   Section helpers
   ================================================================= */
.gc-section { padding: 120px 0; }
.gc-section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 72px;
}
.gc-section-header .gc-eyebrow { margin-bottom: 16px; }
.gc-section-header h2 {
  font-size: clamp(38px, 4.5vw, 58px);
  margin: 0 0 20px;
}
.gc-section-header p {
  font-size: 17px;
  color: var(--ink-muted);
  line-height: 1.6;
  margin: 0;
}

/* =================================================================
   Services widget
   ================================================================= */
.gc-services-head { margin-bottom: 48px; }
.gc-services-head .gc-eyebrow { margin-bottom: 14px; }
.gc-services-head h2 {
  font-size: clamp(34px, 3.6vw, 48px);
  margin: 0 0 14px;
}
.gc-services-head p {
  font-size: 16px;
  color: var(--ink-muted);
  margin: 0;
}

.gc-services-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.gc-service-card {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 34px 30px;
  position: relative;
  transition: all 0.4s cubic-bezier(.4,0,.2,1);
  display: flex;
  flex-direction: column;
  min-height: 320px;
}
.gc-service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s ease;
}
.gc-service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(184, 138, 62, 0.3);
}
.gc-service-card:hover::before { transform: scaleX(1); }

.gc-service-icon {
  width: 52px;
  height: 52px;
  margin-bottom: 20px;
  color: var(--gold);
}
.gc-service-icon svg { width: 100%; height: 100%; }

.gc-service-card h3 {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  margin: 0 0 12px;
  color: var(--ink);
}
.gc-service-desc {
  font-size: 14px;
  color: var(--ink-muted);
  line-height: 1.55;
  margin: 0 0 18px;
}
.gc-service-divider {
  height: 1px;
  background: var(--line);
  margin-bottom: 16px;
}
.gc-service-list {
  list-style: none;
  font-size: 13px;
  color: var(--ink-soft);
  line-height: 1.9;
  flex: 1;
  margin: 0;
  padding: 0;
}
.gc-service-cta {
  /* Arrow hidden by default per design feedback - the entire card
     is implicitly clickable in most use cases. To re-enable, set
     display: inline-flex */
  display: none;
  margin-top: 18px;
  align-items: center;
  justify-content: flex-end;
  width: 100%;
  color: var(--gold);
  font-size: 14px;
  transition: transform 0.3s;
}
.gc-service-card:hover .gc-service-cta { transform: translateX(4px); }

/* =================================================================
   Split layout wrapper
   ================================================================= */
.gc-split {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 80px;
  align-items: start;
}

/* =================================================================
   Legacy widget
   ================================================================= */
.gc-legacy-visual {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 36px;
}
.gc-legacy-visual img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  filter: grayscale(45%) contrast(1.05);
  border-radius: var(--radius);
}
.gc-legacy-visual img:nth-child(2) { margin-top: 36px; }

.gc-legacy-body h2 {
  font-size: clamp(34px, 3.6vw, 48px);
  margin: 12px 0 28px;
  color: var(--ink);
}
.gc-legacy-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 0;
  margin: 0;
}
.gc-legacy-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 15px;
  color: var(--ink-soft);
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line-soft);
}
.gc-legacy-list li:last-child { border-bottom: 0; }
.gc-legacy-list .dot {
  flex-shrink: 0;
  width: 8px;
  height: 8px;
  background: var(--gold);
  border-radius: 50%;
  margin-top: 8px;
}

/* =================================================================
   Stats widget
   ================================================================= */
.gc-stats-section {
  background: var(--bg);
  padding: 100px 0 0;
}
.gc-stats-header {
  text-align: center;
  margin-bottom: 60px;
}
.gc-stats-header .gc-eyebrow { margin-bottom: 14px; }
.gc-stats-header h2 { font-size: clamp(38px, 4.5vw, 58px); margin: 0; }

.gc-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  text-align: center;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.gc-stat {
  padding: 56px 24px;
  border-right: 1px solid var(--line-soft);
  position: relative;
  transition: background 0.3s;
}
.gc-stat:last-child { border-right: 0; }
.gc-stat:hover { background: var(--bg-card); }
.gc-stat-num {
  font-family: var(--font-display);
  font-size: clamp(56px, 6vw, 88px);
  font-weight: 600;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}
.gc-stat-label {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-soft);
  font-weight: 500;
}

/* Cinematic banner */
.gc-banner {
  position: relative;
  margin-top: 100px;
  height: 380px;
  overflow: hidden;
}
.gc-banner img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.55) contrast(1.1);
}
.gc-banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(29,26,21,0.3) 0%, rgba(29,26,21,0.7) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}
.gc-banner-text {
  font-family: var(--font-display);
  font-size: clamp(34px, 5vw, 64px);
  font-weight: 600;
  color: #fff;
  letter-spacing: 0.08em;
  text-align: center;
  text-transform: uppercase;
  margin: 0;
}
.gc-banner-text span {
  display: inline-block;
  margin: 0 12px;
  position: relative;
}
.gc-banner-text span:not(:last-child)::after {
  content: '•';
  position: absolute;
  right: -24px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--gold);
  font-size: 0.5em;
}

/* =================================================================
   Process widget
   ================================================================= */
.gc-process-section {
  padding: 130px 0;
  background: var(--bg);
  position: relative;
}
.gc-process-header {
  text-align: center;
  margin-bottom: 90px;
}
.gc-process-header .gc-eyebrow { margin-bottom: 14px; }
.gc-process-header h2 { font-size: clamp(38px, 4.5vw, 58px); margin: 0; }

.gc-process-timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  max-width: 1100px;
  margin: 0 auto;
}
.gc-process-timeline::before {
  content: '';
  position: absolute;
  top: 44px;
  left: 10%;
  right: 10%;
  height: 1px;
  background: repeating-linear-gradient(to right,
    var(--gold) 0, var(--gold) 6px,
    transparent 6px, transparent 12px);
  opacity: 0.5;
  z-index: 0;
}
.gc-process-step {
  position: relative;
  text-align: center;
  z-index: 1;
}
.gc-process-icon {
  width: 88px;
  height: 88px;
  margin: 0 auto 24px;
  background: var(--bg);
  border: 1.5px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  transition: all 0.4s;
}
.gc-process-icon svg { width: 36px; height: 36px; }
.gc-process-step:hover .gc-process-icon {
  background: var(--gold);
  color: #fff;
  transform: scale(1.06);
}
.gc-process-step h4 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin: 0 0 12px;
}
.gc-process-step h4 .num { color: var(--gold); margin-right: 6px; }
.gc-process-step p {
  font-size: 14px;
  color: var(--ink-muted);
  line-height: 1.55;
  max-width: 220px;
  margin: 0 auto;
}

/* =================================================================
   Serving strip
   ================================================================= */
.gc-serving {
  background: var(--ink);
  color: var(--bg);
  padding: 28px 0;
  overflow: hidden;
}
.gc-serving-inner {
  display: flex;
  align-items: center;
  gap: 60px;
  justify-content: center;
  flex-wrap: wrap;
}
.gc-serving-label {
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
}
.gc-serving-list {
  display: flex;
  gap: 48px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.gc-serving-list li {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  position: relative;
}
.gc-serving-list li:not(:last-child)::after {
  content: '|';
  position: absolute;
  right: -28px;
  color: var(--gold);
  opacity: 0.5;
}

/* =================================================================
   CTA section
   ================================================================= */
.gc-cta-section {
  padding: 120px 0;
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-soft) 100%);
  text-align: center;
  position: relative;
}
.gc-cta-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 1px;
  background: var(--gold);
}
.gc-cta-section .gc-eyebrow { margin-bottom: 18px; }
.gc-cta-section h2 {
  font-size: clamp(44px, 5.5vw, 72px);
  margin: 0 0 22px;
}
.gc-cta-section p {
  font-size: 17px;
  color: var(--ink-muted);
  max-width: 540px;
  margin: 0 auto 38px;
  line-height: 1.6;
}

/* =================================================================
   Footer
   ================================================================= */
.gc-footer {
  background: var(--ink);
  color: var(--bg);
  padding: 80px 0 30px;
}
.gc-footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1.1fr 1.1fr;
  gap: 60px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(242, 237, 227, 0.1);
}
.gc-footer-brand .gc-brand-mark {
  background: var(--bg);
  margin-bottom: 20px;
}
.gc-footer-brand .gc-brand-mark svg { color: var(--ink); }
.gc-footer-brand .gc-brand-mark::after { border-color: var(--gold); }
.gc-footer-brand .gc-brand-logo {
  margin-bottom: 20px;
  /* Don't auto-invert — user can upload either light or dark logo */
}
.gc-footer-brand .name { color: var(--bg); }
.gc-footer-brand .tag { color: var(--ink-muted); }
.gc-footer-brand p {
  margin-top: 20px;
  font-size: 14px;
  color: rgba(242, 237, 227, 0.6);
  line-height: 1.65;
  max-width: 280px;
}

.gc-footer-col h5 {
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 22px;
  font-weight: 600;
}
.gc-footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 0;
  margin: 0;
}
.gc-footer-col a,
.gc-footer-col li {
  font-size: 14px;
  color: rgba(242, 237, 227, 0.75);
  transition: color 0.25s;
  line-height: 1.5;
}
.gc-footer-col a:hover { color: var(--gold); }
.gc-footer-col .label {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-muted);
  display: block;
  margin-bottom: 2px;
}

.gc-footer-bottom {
  padding-top: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: rgba(242, 237, 227, 0.5);
  letter-spacing: 0.05em;
  flex-wrap: wrap;
  gap: 16px;
}
.gc-footer-bottom a { transition: color 0.25s; }
.gc-footer-bottom a:hover { color: var(--gold); }

/* =================================================================
   Animations
   ================================================================= */
@keyframes gcFadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}
.gc-reveal {
  opacity: 0;
  animation: gcFadeUp 0.9s cubic-bezier(.4,0,.2,1) forwards;
}
.gc-reveal-1 { animation-delay: 0.1s; }
.gc-reveal-2 { animation-delay: 0.25s; }
.gc-reveal-3 { animation-delay: 0.4s; }
.gc-reveal-4 { animation-delay: 0.55s; }

.gc-fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.9s cubic-bezier(.4,0,.2,1), transform 0.9s cubic-bezier(.4,0,.2,1);
}
.gc-fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* =================================================================
   Service / Project CPT archive + single
   ================================================================= */
.gc-archive-hero {
  padding: 80px 0;
  text-align: center;
  background: var(--bg-soft);
  border-bottom: 1px solid var(--line);
}
.gc-archive-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(44px, 5vw, 68px);
  margin: 12px 0 8px;
}
.gc-archive-hero p {
  color: var(--ink-muted);
  font-size: 16px;
  margin: 0;
}

.gc-cpt-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  padding: 80px 0;
}
.gc-cpt-card {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all 0.4s;
}
.gc-cpt-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.gc-cpt-card img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}
.gc-cpt-card-body { padding: 24px 26px 28px; }
.gc-cpt-card h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  margin: 0 0 10px;
}
.gc-cpt-card p { color: var(--ink-muted); font-size: 14px; margin: 0 0 14px; line-height: 1.55; }

.gc-single {
  padding: 80px 0;
  max-width: 820px;
  margin: 0 auto;
}
.gc-single h1 {
  font-family: var(--font-display);
  font-size: clamp(38px, 4.5vw, 58px);
  margin: 0 0 20px;
}
.gc-single .gc-meta {
  color: var(--ink-muted);
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 30px;
}
.gc-single-content p { font-size: 17px; line-height: 1.75; color: var(--ink-soft); margin: 0 0 20px; }
.gc-single-content h2, .gc-single-content h3 { font-family: var(--font-display); margin: 36px 0 16px; }

/* =================================================================
   Elementor helpers
   ================================================================= */
.elementor-widget-gc-hero .elementor-widget-container,
.elementor-widget-gc-services .elementor-widget-container,
.elementor-widget-gc-legacy .elementor-widget-container,
.elementor-widget-gc-stats .elementor-widget-container,
.elementor-widget-gc-process .elementor-widget-container,
.elementor-widget-gc-serving .elementor-widget-container,
.elementor-widget-gc-cta .elementor-widget-container,
.elementor-widget-gc-banner .elementor-widget-container {
  padding: 0;
}

/* =================================================================
   Responsive
   ================================================================= */
@media (max-width: 1024px) {
  .gc-hero-grid { grid-template-columns: 1fr; }
  .gc-hero-content { padding: 60px 0 40px; }
  .gc-hero-media { min-height: 380px; }
  .gc-split { grid-template-columns: 1fr; gap: 80px; }
  .gc-stats-grid { grid-template-columns: repeat(2, 1fr); }
  .gc-stat:nth-child(2) { border-right: 0; }
  .gc-stat:nth-child(1),
  .gc-stat:nth-child(2) { border-bottom: 1px solid var(--line-soft); }
  .gc-process-timeline { grid-template-columns: repeat(2, 1fr); gap: 60px 30px; }
  .gc-process-timeline::before { display: none; }
  .gc-footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .gc-cpt-grid { grid-template-columns: repeat(2, 1fr); }
  .gc-hero-meta { grid-template-columns: repeat(2, 1fr); }
  .gc-hero-meta-item:nth-child(2) { border-right: 0; }
  .gc-hero-meta-item:nth-child(1),
  .gc-hero-meta-item:nth-child(2) { border-bottom: 1px solid var(--line-soft); }

  .gc-nav-links { display: none; position: absolute; top: 100%; left: 0; right: 0; flex-direction: column; background: var(--bg); padding: 20px 32px; gap: 16px; border-bottom: 1px solid var(--line); box-shadow: var(--shadow-md); z-index: 99; }
  .gc-nav-links.open { display: flex; }
  .gc-mobile-toggle { display: block; }
  .gc-nav-cta .gc-btn { padding: 10px 18px; font-size: 12px; }
  .gc-nav-cta .gc-btn svg { width: 12px; height: 12px; }
}
@media (max-width: 640px) {
  .gc-container { padding: 0 20px; }
  .gc-section, .gc-stats-section, .gc-process-section, .gc-cta-section { padding: 70px 0; }
  .gc-services-grid { grid-template-columns: 1fr; }
  .gc-legacy-visual { grid-template-columns: 1fr; }
  .gc-legacy-visual img:nth-child(2) { margin-top: 0; }
  .gc-footer-grid { grid-template-columns: 1fr; }
  .gc-serving-list { gap: 24px; flex-wrap: wrap; justify-content: center; }
  .gc-serving-list li:not(:last-child)::after { display: none; }
  .gc-banner-text span { display: block; margin: 8px 0; }
  .gc-banner-text span:not(:last-child)::after { display: none; }
  .gc-hero-quote { font-size: 44px; }
  .gc-cpt-grid { grid-template-columns: 1fr; }
}

/* =================================================================
   v1.1.0 — Logos in Hero Meta + Header/Footer + Sub-page Hero
   ================================================================= */

/* ---- Hero Meta Logos ----
   Designed to gracefully fit 1-4 logos within the meta cell width.
   Each logo gets an equal share of the cell width and is height-capped
   to prevent tall portrait logos from breaking the layout.
   ================================================================= */
.gc-hero-meta-logos {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: flex-start;
  gap: 12px;
  margin-top: 6px;
  width: 100%;
  /* Cap the visual height of the row so portrait logos don't dominate */
  --gc-logo-row-h: var(--gc-logo-h, 56px);
}

/* Each logo wrapper (whether <a> or direct <img>) gets equal flex share */
.gc-hero-meta-logos > a,
.gc-hero-meta-logos > img {
  flex: 1 1 0;
  min-width: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  height: var(--gc-logo-row-h);
}

.gc-hero-meta-logos img {
  max-height: 100%;
  max-width: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
  transition: transform 0.3s, filter 0.3s;
}

/* When inside an <a> wrapper, the img fills the wrapper */
.gc-hero-meta-logos > a img {
  width: 100%;
  height: 100%;
}

.gc-hero-meta-logos a:hover img,
.gc-hero-meta-logos img:hover {
  transform: translateY(-2px);
}

/* Treatments */
.gc-hero-meta-logos.gc-logo-grayscale img {
  filter: grayscale(80%) sepia(20%) brightness(0.85);
  opacity: 0.85;
}
.gc-hero-meta-logos.gc-logo-grayscale a:hover img,
.gc-hero-meta-logos.gc-logo-grayscale img:hover {
  filter: grayscale(0%) sepia(0%) brightness(1);
  opacity: 1;
}
.gc-hero-meta-logos.gc-logo-monochrome img {
  filter: brightness(0) saturate(100%) invert(11%) sepia(13%) saturate(700%) hue-rotate(345deg) brightness(95%) contrast(85%);
  opacity: 0.9;
}

/* When 4+ logos, tighten gap so they fit without overflowing */
.gc-hero-meta-logos:has(> :nth-child(4)) {
  gap: 8px;
}
.gc-hero-meta-logos:has(> :nth-child(5)) {
  gap: 6px;
}

/* Layout variants — applied via the .gc-logo-layout-* class on the wrapper */
/* "fit" (default): equal-width columns, height-capped */
/* "row": natural width, height-capped, may scroll horizontally on overflow */
.gc-hero-meta-logos.gc-logo-layout-row {
  flex-wrap: nowrap;
  overflow-x: auto;
  scrollbar-width: none;
}
.gc-hero-meta-logos.gc-logo-layout-row::-webkit-scrollbar { display: none; }
.gc-hero-meta-logos.gc-logo-layout-row > a,
.gc-hero-meta-logos.gc-logo-layout-row > img {
  flex: 0 0 auto;
}
.gc-hero-meta-logos.gc-logo-layout-row img {
  width: auto;
  height: var(--gc-logo-row-h);
}
.gc-hero-meta-logos.gc-logo-layout-row > a img {
  height: 100%;
  width: auto;
}

/* "stack": vertical stack (e.g. text labels next to logos) */
.gc-hero-meta-logos.gc-logo-layout-stack {
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}
.gc-hero-meta-logos.gc-logo-layout-stack > a,
.gc-hero-meta-logos.gc-logo-layout-stack > img {
  flex: 0 0 auto;
  width: auto;
  height: auto;
  max-height: var(--gc-logo-row-h);
}
.gc-hero-meta-logos.gc-logo-layout-stack img {
  max-height: var(--gc-logo-row-h);
  width: auto;
}

.gc-hero-meta-logos + .gc-hero-meta-value {
  margin-top: 10px;
  font-size: 13px;
  color: var(--ink-muted);
}

/* ---- Footer Cert Logos ---- */
.gc-footer-cert-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 18px;
  align-items: center;
  --gc-cert-row-h: var(--gc-cert-h, 56px);
}
.gc-footer-cert-logos > a,
.gc-footer-cert-logos > img {
  display: flex;
  align-items: center;
  justify-content: center;
  height: var(--gc-cert-row-h);
  max-width: 110px;
}
.gc-footer-cert-logos img {
  max-height: 100%;
  max-width: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: 0.85;
  transition: opacity 0.3s, filter 0.3s, transform 0.3s;
}
.gc-footer-cert-logos > a img {
  width: 100%;
  height: 100%;
}
.gc-footer-cert-logos a:hover img,
.gc-footer-cert-logos img:hover {
  opacity: 1;
  transform: translateY(-2px);
}

/* ---- Sticky modifier for Elementor header ---- */
.gc-nav.gc-nav--sticky {
  position: sticky;
  top: 0;
}

.gc-brand-img {
  display: block;
}

/* =================================================================
   Page Hero — Sub-page Hero (Services Overview, About, etc.)
   ================================================================= */
.gc-page-hero {
  padding: 60px 0 0;
  background: var(--bg);
}
.gc-page-hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 80px;
  align-items: center;
  padding: 60px 0 80px;
}
.gc-page-hero-content .gc-eyebrow {
  display: inline-block;
  margin-bottom: 18px;
}
.gc-page-hero-title {
  font-size: clamp(40px, 5vw, 68px) !important;
  margin: 0 0 30px !important;
  line-height: 1.05;
  letter-spacing: -0.02em;
}
.gc-page-hero-lead {
  font-size: 18px;
  line-height: 1.65;
  color: var(--ink-soft);
  margin: 0 0 22px;
  font-weight: 400;
}
.gc-page-hero-body {
  font-size: 16px;
  line-height: 1.7;
  color: var(--ink-muted);
  margin: 0;
}

.gc-page-hero-media {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.gc-page-hero-media img {
  width: 100%;
  height: auto;
  aspect-ratio: 4/5;
  object-fit: cover;
  filter: sepia(8%) saturate(0.95) contrast(1.05);
}
.gc-page-hero-caption {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: rgba(29, 26, 21, 0.8);
  color: var(--bg);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 8px 14px;
  border-radius: var(--radius);
  backdrop-filter: blur(8px);
}

.gc-page-hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 36px 0;
  margin-bottom: 40px;
}
.gc-page-hero-stat {
  text-align: center;
  border-right: 1px solid var(--line-soft);
  padding: 0 24px;
}
.gc-page-hero-stat:last-child { border-right: 0; }
.gc-page-hero-stat-num {
  font-family: var(--font-display);
  font-size: clamp(40px, 4.5vw, 64px);
  font-weight: 600;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}
.gc-page-hero-stat-label {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-soft);
  font-weight: 500;
}

/* =================================================================
   Image Cards Grid (used on About page)
   ================================================================= */
.gc-service-cards-section {
  padding: 100px 0;
  background: var(--bg);
}
.gc-image-cards-grid {
  display: grid;
  gap: 36px;
}
.gc-image-cards-grid.gc-cols-2 { grid-template-columns: repeat(2, 1fr); }
.gc-image-cards-grid.gc-cols-3 { grid-template-columns: repeat(3, 1fr); }

.gc-image-card {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all 0.5s cubic-bezier(.4,0,.2,1);
  display: flex;
  flex-direction: column;
  position: relative;
}
.gc-image-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s ease;
  z-index: 2;
}
a.gc-image-card { color: inherit; text-decoration: none; }
.gc-image-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(184, 138, 62, 0.3);
}
.gc-image-card:hover::before { transform: scaleX(1); }

.gc-image-card-media {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--bg-soft);
}
.gc-image-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: sepia(8%) saturate(0.95) contrast(1.02);
  transition: transform 0.7s cubic-bezier(.4,0,.2,1), filter 0.5s;
}
.gc-image-card:hover .gc-image-card-media img {
  transform: scale(1.05);
  filter: sepia(0%) saturate(1) contrast(1.05);
}
.gc-image-card-body {
  padding: 32px 30px 36px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.gc-image-card-body h3 {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 0.02em;
  margin: 0 0 14px;
  color: var(--ink);
  line-height: 1.15;
}
.gc-image-card-body p {
  font-size: 14px;
  color: var(--ink-muted);
  line-height: 1.65;
  margin: 0;
}

/* =================================================================
   Responsive (v1.1)
   ================================================================= */
@media (max-width: 1024px) {
  .gc-page-hero-grid { grid-template-columns: 1fr; gap: 50px; }
  .gc-page-hero-media img { aspect-ratio: 16/10; }
  .gc-image-cards-grid.gc-cols-3 { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .gc-page-hero-stats { grid-template-columns: 1fr 1fr 1fr; }
}
@media (max-width: 640px) {
  .gc-image-cards-grid.gc-cols-3,
  .gc-image-cards-grid.gc-cols-2 { grid-template-columns: 1fr; }
  .gc-page-hero-stats { grid-template-columns: 1fr; gap: 30px; padding: 30px 0; }
  .gc-page-hero-stat { border-right: 0; border-bottom: 1px solid var(--line-soft); padding-bottom: 24px; }
  .gc-page-hero-stat:last-child { border-bottom: 0; padding-bottom: 0; }
  .gc-hero-meta-logos { gap: 12px; }
}

/* =================================================================
   v1.4.0 — About Page (Our Journey / Our Story / Our Values)
   ================================================================= */

/* ---- About Hero — "Our Journey" split layout ---- */
.gc-about-hero {
  padding: 100px 0 80px;
  background: var(--bg);
}
.gc-about-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: end;
}
.gc-about-hero--stacked .gc-about-hero-grid {
  grid-template-columns: 1fr;
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
}
.gc-about-hero-left .gc-eyebrow {
  margin-bottom: 16px;
  display: inline-block;
}
.gc-about-hero-title {
  font-size: clamp(48px, 6.5vw, 92px) !important;
  margin: 0 !important;
  line-height: 1 !important;
  letter-spacing: -0.025em;
  font-weight: 600;
}
.gc-about-hero-subtitle {
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink-soft);
  margin: 0;
  max-width: 480px;
}

/* ---- Our Story section ---- */
.gc-our-story {
  background: var(--bg-soft);
  padding: 100px 0 110px;
}
.gc-our-story-grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 80px;
  align-items: center;
}

.gc-our-story-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  position: relative;
  align-items: start;
}
.gc-our-story-img {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  display: block;
  /* No fixed aspect-ratio on container — image dictates height */
}
.gc-our-story-img img {
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  display: block;
  filter: sepia(8%) saturate(0.95) contrast(1.05);
  transition: filter 0.4s, transform 0.6s cubic-bezier(.4,0,.2,1);
}
.gc-our-story-img-1 {
  margin-top: 0;
  margin-bottom: 40px;
}
.gc-our-story-img-2 {
  margin-top: 40px;
}
.gc-our-story-img:hover img {
  filter: sepia(0%) saturate(1) contrast(1.05);
  transform: scale(1.03);
}

.gc-our-story-content .gc-eyebrow {
  margin-bottom: 14px;
  display: inline-block;
}
.gc-our-story-title {
  font-size: clamp(38px, 4.5vw, 56px) !important;
  margin: 0 0 24px !important;
  line-height: 1.05 !important;
  font-weight: 600;
}
.gc-our-story-body {
  font-size: 16px;
  line-height: 1.75;
  color: var(--ink-soft);
  margin: 0 0 32px;
}

/* Checkmark list */
.gc-our-story-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.gc-our-story-list li {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 15px;
  color: var(--ink);
  font-weight: 500;
}
.gc-check-icon {
  flex-shrink: 0;
  width: 26px;
  height: 26px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.gc-check-icon svg {
  width: 100%;
  height: 100%;
}
.gc-check-text {
  flex: 1;
}

/* ---- Our Values section ---- */
.gc-our-values {
  background: var(--bg);
  padding: 110px 0 130px;
}
.gc-our-values-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: end;
  margin-bottom: 70px;
}
.gc-our-values-header-left .gc-eyebrow {
  margin-bottom: 14px;
  display: inline-block;
}
.gc-our-values-title {
  font-size: clamp(38px, 4.5vw, 56px) !important;
  margin: 0 !important;
  line-height: 1.05 !important;
  font-weight: 600;
}
.gc-our-values-header-right p {
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink-muted);
  margin: 0;
  max-width: 480px;
}

.gc-our-values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 50px;
  border-top: 1px solid var(--line);
  padding-top: 50px;
}
.gc-value-card {
  position: relative;
  padding-top: 0;
}
.gc-value-card::before {
  content: '';
  display: block;
  width: 32px;
  height: 1px;
  background: var(--gold);
  margin-bottom: 20px;
}
.gc-value-card h3 {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 700;
  margin: 0 0 16px;
  color: var(--ink);
  letter-spacing: 0.01em;
}
.gc-value-card p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--ink-muted);
  margin: 0;
}

/* ---- Responsive ---- */
@media (max-width: 1024px) {
  .gc-about-hero-grid { grid-template-columns: 1fr; gap: 30px; }
  .gc-about-hero-subtitle { max-width: none; }
  .gc-our-story-grid { grid-template-columns: 1fr; gap: 50px; }
  .gc-our-values-header { grid-template-columns: 1fr; gap: 30px; }
  .gc-our-values-grid { grid-template-columns: 1fr; gap: 40px; padding-top: 40px; }
}
@media (max-width: 640px) {
  .gc-about-hero { padding: 60px 0 40px; }
  .gc-our-story { padding: 70px 0 80px; }
  .gc-our-values { padding: 70px 0 90px; }
  .gc-our-story-images { gap: 12px; }
  .gc-our-story-img-1 { margin-bottom: 24px; }
  .gc-our-story-img-2 { margin-top: 24px; }
}

/* =================================================================
   v1.5.0 — Contact Page (Get In Touch / Info Grid / Form)
   ================================================================= */

/* ---- Contact Info Grid ---- */
.gc-contact-info {
  background: var(--bg-soft);
  padding: 80px 0 100px;
}
.gc-contact-info-header {
  margin-bottom: 50px;
}
.gc-contact-info-header .gc-eyebrow {
  margin-bottom: 14px;
  display: inline-block;
}
.gc-contact-info-title {
  font-size: clamp(34px, 4vw, 48px) !important;
  margin: 0 !important;
  line-height: 1.1 !important;
}

.gc-contact-info-grid {
  display: grid;
  gap: 40px;
}
.gc-contact-info-grid.gc-cols-2 { grid-template-columns: repeat(2, 1fr); }
.gc-contact-info-grid.gc-cols-3 { grid-template-columns: repeat(3, 1fr); }
.gc-contact-info-grid.gc-cols-4 { grid-template-columns: repeat(4, 1fr); }

.gc-contact-info-item {
  position: relative;
  padding-top: 4px;
}
.gc-contact-info-icon {
  width: 36px;
  height: 36px;
  margin-bottom: 18px;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.gc-contact-info-icon svg {
  width: 100%;
  height: 100%;
}
.gc-contact-info-label {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 8px;
  letter-spacing: 0.01em;
}
.gc-contact-info-content {
  font-size: 15px;
  line-height: 1.65;
  color: var(--ink-soft);
}
.gc-contact-info-content a {
  color: var(--ink-soft);
  border-bottom: 1px solid transparent;
  transition: color 0.25s, border-color 0.25s;
}
.gc-contact-info-content a:hover {
  color: var(--gold);
  border-bottom-color: var(--gold);
}

/* ---- Contact Form Section ---- */
.gc-contact-form-section {
  background: var(--bg);
  padding: 100px 0 130px;
}
.gc-contact-form-header {
  margin-bottom: 50px;
  max-width: 720px;
}
.gc-contact-form-header .gc-eyebrow {
  margin-bottom: 14px;
  display: inline-block;
}
.gc-contact-form-title {
  font-size: clamp(34px, 4vw, 48px) !important;
  margin: 0 !important;
  line-height: 1.1 !important;
}

.gc-contact-form {
  max-width: 720px;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/* Honeypot — completely hidden from real users + screen readers */
.gc-honeypot {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

/* Form rows */
.gc-form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
.gc-form-row-2 {
  grid-template-columns: 1fr 1fr;
}

/* Form fields */
.gc-form-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.gc-form-field label {
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--ink);
}
.gc-form-field label .required {
  color: var(--gold);
  margin-left: 2px;
}
.gc-form-field input,
.gc-form-field textarea,
.gc-form-field select {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.5;
  color: var(--ink);
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 14px 16px;
  width: 100%;
  transition: border-color 0.25s, box-shadow 0.25s, background 0.25s;
  outline: none;
  -webkit-appearance: none;
  appearance: none;
}
.gc-form-field input:hover,
.gc-form-field textarea:hover,
.gc-form-field select:hover {
  border-color: rgba(184, 138, 62, 0.35);
}
.gc-form-field input:focus,
.gc-form-field textarea:focus,
.gc-form-field select:focus {
  border-color: var(--gold);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(184, 138, 62, 0.15);
}
.gc-form-field textarea {
  resize: vertical;
  min-height: 140px;
  font-family: var(--font-body);
}
.gc-form-field input::placeholder,
.gc-form-field textarea::placeholder {
  color: var(--ink-muted);
  opacity: 0.55;
}

/* Error state */
.gc-form-field input.gc-field-error,
.gc-form-field textarea.gc-field-error {
  border-color: #c0392b;
  background: rgba(192, 57, 43, 0.04);
}
.gc-form-field input.gc-field-error:focus,
.gc-form-field textarea.gc-field-error:focus {
  border-color: #c0392b;
  box-shadow: 0 0 0 3px rgba(192, 57, 43, 0.15);
}

/* Submit row */
.gc-form-submit-row {
  margin-top: 8px;
}
.gc-form-submit {
  position: relative;
  font-size: 13px;
  padding: 16px 36px;
}
.gc-form-submit:disabled {
  opacity: 0.7;
  cursor: not-allowed;
  transform: none !important;
}
.gc-form-submit--loading {
  pointer-events: none;
}
.gc-form-submit--loading svg {
  display: none;
}
.gc-form-submit--loading::after {
  content: '';
  width: 14px;
  height: 14px;
  border: 2px solid rgba(255,255,255,0.4);
  border-top-color: #fff;
  border-radius: 50%;
  animation: gcSpin 0.7s linear infinite;
  display: inline-block;
}
@keyframes gcSpin {
  to { transform: rotate(360deg); }
}

/* Status messages */
.gc-form-status {
  margin-top: 12px;
  padding: 0;
  font-size: 14px;
  line-height: 1.5;
  border-radius: var(--radius);
  transition: all 0.3s;
}
.gc-form-status:empty {
  display: none;
}
.gc-form-status--success {
  background: rgba(120, 160, 90, 0.12);
  border: 1px solid rgba(120, 160, 90, 0.3);
  color: #4a6b35;
  padding: 14px 18px;
}
.gc-form-status--error {
  background: rgba(192, 57, 43, 0.08);
  border: 1px solid rgba(192, 57, 43, 0.25);
  color: #8b2820;
  padding: 14px 18px;
}
.gc-form-status--pending {
  display: none;
}

/* ---- Responsive ---- */
@media (max-width: 1024px) {
  .gc-contact-info-grid.gc-cols-4 { grid-template-columns: repeat(2, 1fr); gap: 36px 30px; }
}
@media (max-width: 640px) {
  .gc-contact-info { padding: 60px 0 70px; }
  .gc-contact-info-grid.gc-cols-4,
  .gc-contact-info-grid.gc-cols-3,
  .gc-contact-info-grid.gc-cols-2 { grid-template-columns: 1fr; gap: 32px; }
  .gc-contact-form-section { padding: 60px 0 80px; }
  .gc-form-row-2 { grid-template-columns: 1fr; }
}

/* =================================================================
   v1.5.4 — Comprehensive Responsive Polish
   =================================================================
   Three breakpoints aligned to common device widths:
   - 1280px+ : full desktop (no overrides needed)
   - 1024px  : large tablet / small laptop
   -  768px  : tablet portrait
   -  480px  : mobile
   ================================================================= */

/* ---- Image rules: prevent overflow + fluid scaling site-wide ---- */
img, svg, video {
  max-width: 100%;
  height: auto;
}
.gc-container {
  width: 100%;
}

/* ---- Mid-tablet: 1024px and below ---- */
@media (max-width: 1024px) {
  /* Container padding */
  .gc-container { padding: 0 28px; }

  /* Sections */
  .gc-section { padding: 90px 0; }
  .gc-stats-section { padding: 80px 0 0; }
  .gc-process-section { padding: 100px 0; }
  .gc-cta-section { padding: 90px 0; }

  /* Hero */
  .gc-hero-content { padding: 50px 0 30px; }
  .gc-hero-quote { font-size: clamp(40px, 6vw, 64px); }

  /* Process timeline — single dotted line still hidden, but 2-col now spaced better */
  .gc-process-timeline { gap: 50px 30px; }
  .gc-process-step h4 { font-size: 17px; }
  .gc-process-step p { font-size: 14px; }
}

/* ---- Tablet portrait: 768px and below ---- */
@media (max-width: 768px) {
  .gc-container { padding: 0 24px; }

  /* Header: ensure proper compaction */
  .gc-nav-inner { padding: 18px 0; }
  .gc-brand-text .name { font-size: 18px; letter-spacing: 0.12em; }
  .gc-brand-text .tag { font-size: 8px; }

  /* Sections */
  .gc-section { padding: 70px 0; }
  .gc-section-header { margin-bottom: 50px; }
  .gc-section-header h2 { font-size: clamp(30px, 5vw, 42px); }
  .gc-section-header p { font-size: 16px; }

  /* Hero */
  .gc-hero { padding: 20px 0 0; }
  .gc-hero-content { padding: 30px 0 20px; }
  .gc-hero-quote { font-size: clamp(36px, 7vw, 52px); margin-bottom: 24px; }
  .gc-hero-sub { font-size: 16px; margin-bottom: 30px; }
  .gc-hero-meta { margin-top: 40px; }
  .gc-hero-meta-item { padding: 22px 18px; }
  .gc-hero-meta-label { font-size: 9px; letter-spacing: 0.22em; }
  .gc-hero-meta-value { font-size: 16px; }

  /* Services */
  .gc-services-head { margin-bottom: 36px; }
  .gc-services-head h2 { font-size: clamp(28px, 5vw, 38px); }
  .gc-service-card { padding: 28px 24px; min-height: auto; }
  .gc-service-card h3 { font-size: 20px; }

  /* Legacy block */
  .gc-legacy-body h2 { font-size: clamp(28px, 5vw, 38px); margin-bottom: 22px; }
  .gc-legacy-list li { font-size: 14px; }

  /* Stats */
  .gc-stats-section { padding: 70px 0 0; }
  .gc-stats-header { margin-bottom: 40px; }
  .gc-stat { padding: 40px 18px; }
  .gc-stat-num { font-size: clamp(48px, 8vw, 64px); }
  .gc-stat-label { font-size: 10px; letter-spacing: 0.18em; }

  /* Banner */
  .gc-banner { margin-top: 70px; height: 280px; }

  /* Process */
  .gc-process-section { padding: 80px 0; }
  .gc-process-header { margin-bottom: 60px; }
  .gc-process-icon { width: 72px; height: 72px; }
  .gc-process-icon svg { width: 30px; height: 30px; }

  /* Serving strip */
  .gc-serving { padding: 22px 0; }
  .gc-serving-list { gap: 28px; }
  .gc-serving-list li { font-size: 18px; letter-spacing: 0.12em; }
  .gc-serving-list li:not(:last-child)::after { right: -18px; }

  /* CTA */
  .gc-cta-section { padding: 80px 0; }
  .gc-cta-section h2 { font-size: clamp(34px, 6vw, 52px); margin-bottom: 18px; }
  .gc-cta-section p { font-size: 16px; margin-bottom: 30px; }

  /* Footer — drop to 2 columns, brand spans full width */
  .gc-footer { padding: 60px 0 24px; }
  .gc-footer-grid { grid-template-columns: 1fr 1fr; gap: 36px 30px; padding-bottom: 40px; }
  .gc-footer-brand { grid-column: 1 / -1; }
  .gc-footer-bottom { flex-direction: column; align-items: flex-start; gap: 8px; padding-top: 22px; }

  /* About / Page Hero */
  .gc-about-hero { padding: 70px 0 50px; }
  .gc-about-hero-grid { gap: 24px; }
  .gc-about-hero-title { font-size: clamp(40px, 8vw, 64px) !important; }
  .gc-about-hero-subtitle { font-size: 16px; }

  /* Our Story */
  .gc-our-story { padding: 70px 0 80px; }
  .gc-our-story-grid { gap: 40px; }
  .gc-our-story-title { font-size: clamp(30px, 5.5vw, 42px) !important; }
  .gc-our-story-body { font-size: 15px; margin-bottom: 24px; }
  .gc-our-story-list li { font-size: 14px; }

  /* Our Values */
  .gc-our-values { padding: 70px 0 90px; }
  .gc-our-values-header { gap: 24px; margin-bottom: 50px; }
  .gc-our-values-title { font-size: clamp(30px, 5.5vw, 42px) !important; }
  .gc-our-values-grid { gap: 36px; padding-top: 40px; }
  .gc-value-card h3 { font-size: 21px; }

  /* Image cards (Services overview) */
  .gc-service-cards-section { padding: 70px 0; }
  .gc-image-cards-grid { gap: 24px; }
  .gc-image-cards-grid.gc-cols-3 { grid-template-columns: repeat(2, 1fr); }
  .gc-image-card-body { padding: 24px 22px 28px; }
  .gc-image-card-body h3 { font-size: 21px; }
  .gc-image-card-body p { font-size: 13.5px; }

  /* Contact info */
  .gc-contact-info { padding: 60px 0 80px; }
  .gc-contact-info-grid.gc-cols-4 { grid-template-columns: repeat(2, 1fr); gap: 32px 24px; }
  .gc-contact-info-icon { width: 32px; height: 32px; margin-bottom: 14px; }
  .gc-contact-info-label { font-size: 16px; }
  .gc-contact-info-content { font-size: 14px; }

  /* Contact form */
  .gc-contact-form-section { padding: 70px 0 90px; }
  .gc-contact-form-title { font-size: clamp(28px, 5.5vw, 40px) !important; }
  .gc-form-row-2 { grid-template-columns: 1fr; gap: 18px; }
  .gc-form-field input, .gc-form-field textarea, .gc-form-field select {
    font-size: 16px; /* prevents iOS zoom */
    padding: 12px 14px;
  }
  .gc-form-submit { width: 100%; justify-content: center; padding: 16px 28px; }

  /* Hero meta logos — tighten on tablet */
  .gc-hero-meta-logos { gap: 8px; }

  /* Brand logo on mobile - cap at smaller height */
  .gc-brand-logo { max-width: 180px !important; }
  .gc-brand--logo_only .gc-brand-logo { max-height: 44px; }
  .gc-brand--logo_text .gc-brand-logo { max-width: 60px !important; max-height: 44px; }
}

/* ---- Mobile: 480px and below ---- */
@media (max-width: 480px) {
  .gc-container { padding: 0 18px; }

  /* Buttons */
  .gc-btn { font-size: 12px; padding: 12px 20px; gap: 8px; }
  .gc-btn svg { width: 12px; height: 12px; }

  /* Hero */
  .gc-hero-content { padding: 24px 0 16px; }
  .gc-hero-quote { font-size: clamp(34px, 9vw, 44px); line-height: 1.05; margin-bottom: 20px; }
  .gc-hero-sub { font-size: 15px; line-height: 1.6; margin-bottom: 24px; }
  .gc-hero-actions { flex-direction: column; gap: 12px; align-items: stretch; }
  .gc-hero-actions .gc-btn { justify-content: center; }
  .gc-hero-meta { grid-template-columns: 1fr; }
  .gc-hero-meta-item {
    border-right: 0 !important;
    border-bottom: 1px solid var(--line-soft);
    padding: 18px 0;
  }
  .gc-hero-meta-item:last-child { border-bottom: 0; }

  /* Sections - tighter padding */
  .gc-section { padding: 56px 0; }
  .gc-stats-section { padding: 56px 0 0; }
  .gc-process-section { padding: 60px 0; }
  .gc-cta-section { padding: 60px 0; }

  /* Section header */
  .gc-section-header { margin-bottom: 36px; }
  .gc-section-header h2 { font-size: clamp(26px, 7vw, 34px); margin-bottom: 12px; }
  .gc-section-header p { font-size: 14.5px; }

  /* Eyebrow - keep readable */
  .gc-eyebrow { font-size: 11px; letter-spacing: 0.18em; }

  /* Service cards */
  .gc-service-card { padding: 24px 20px; }
  .gc-service-card h3 { font-size: 18px; }
  .gc-service-desc { font-size: 13px; }
  .gc-service-list { font-size: 12.5px; line-height: 1.8; }

  /* Legacy */
  .gc-legacy-list li { font-size: 13.5px; padding-bottom: 10px; gap: 10px; }
  .gc-legacy-visual img { aspect-ratio: 1/1 !important; }
  .gc-legacy-visual img:nth-child(2) { margin-top: 0 !important; }

  /* Stats */
  .gc-stats-grid { grid-template-columns: 1fr 1fr; }
  .gc-stat { padding: 32px 14px; }
  .gc-stat-num { font-size: clamp(42px, 11vw, 56px); }
  .gc-stat-label { font-size: 9px; letter-spacing: 0.16em; line-height: 1.4; }

  /* Banner */
  .gc-banner { height: 220px; margin-top: 56px; }
  .gc-banner-text { font-size: clamp(24px, 7vw, 36px); letter-spacing: 0.04em; }
  .gc-banner-text span { display: block; margin: 6px 0; }
  .gc-banner-text span:not(:last-child)::after { display: none; }

  /* Process */
  .gc-process-timeline { grid-template-columns: 1fr; gap: 40px; }
  .gc-process-icon { width: 64px; height: 64px; margin-bottom: 18px; }
  .gc-process-icon svg { width: 26px; height: 26px; }
  .gc-process-step h4 { font-size: 16px; margin-bottom: 8px; }
  .gc-process-step p { font-size: 13px; max-width: none; }

  /* Serving */
  .gc-serving { padding: 18px 0; }
  .gc-serving-inner { gap: 18px; }
  .gc-serving-label { font-size: 10px; letter-spacing: 0.22em; }
  .gc-serving-list { gap: 14px 20px; flex-wrap: wrap; justify-content: center; }
  .gc-serving-list li { font-size: 14px; letter-spacing: 0.08em; }
  .gc-serving-list li:not(:last-child)::after { display: none; }

  /* CTA */
  .gc-cta-section h2 { font-size: clamp(28px, 7vw, 40px); margin-bottom: 14px; }
  .gc-cta-section p { font-size: 14.5px; margin-bottom: 24px; }

  /* Footer */
  .gc-footer { padding: 50px 0 20px; }
  .gc-footer-grid { grid-template-columns: 1fr; gap: 32px; padding-bottom: 32px; }
  .gc-footer-brand { grid-column: auto; }
  .gc-footer-col h5 { font-size: 10px; margin-bottom: 16px; }
  .gc-footer-col a, .gc-footer-col li { font-size: 13.5px; }
  .gc-footer-bottom { font-size: 11px; letter-spacing: 0.04em; }

  /* About hero */
  .gc-about-hero { padding: 50px 0 40px; }
  .gc-about-hero-grid { gap: 18px; }
  .gc-about-hero-title { font-size: clamp(36px, 10vw, 48px) !important; }
  .gc-about-hero-subtitle { font-size: 15px; line-height: 1.55; }

  /* Page hero */
  .gc-page-hero { padding: 30px 0 0; }
  .gc-page-hero-title { font-size: clamp(36px, 9vw, 52px) !important; }
  .gc-page-hero-lead { font-size: 16px; }
  .gc-page-hero-body { font-size: 14.5px; }
  .gc-page-hero-stats { grid-template-columns: 1fr; padding: 24px 0; gap: 22px; }
  .gc-page-hero-stat { border-right: 0; border-bottom: 1px solid var(--line-soft); padding: 0 0 20px; }
  .gc-page-hero-stat:last-child { border-bottom: 0; padding-bottom: 0; }

  /* Our Story */
  .gc-our-story { padding: 56px 0 64px; }
  .gc-our-story-grid { gap: 32px; }
  .gc-our-story-images { grid-template-columns: 1fr 1fr; gap: 10px; }
  .gc-our-story-img-1 { margin-bottom: 16px; }
  .gc-our-story-img-2 { margin-top: 16px; }
  .gc-our-story-title { font-size: clamp(28px, 7vw, 36px) !important; margin-bottom: 18px !important; }
  .gc-our-story-body { font-size: 14.5px; line-height: 1.65; margin-bottom: 22px; }
  .gc-our-story-list { gap: 12px; }
  .gc-our-story-list li { font-size: 13.5px; gap: 10px; }
  .gc-check-icon { width: 22px; height: 22px; }

  /* Our Values */
  .gc-our-values { padding: 56px 0 70px; }
  .gc-our-values-header { gap: 16px; margin-bottom: 36px; }
  .gc-our-values-title { font-size: clamp(28px, 7vw, 36px) !important; }
  .gc-our-values-header-right p { font-size: 14.5px; }
  .gc-our-values-grid { gap: 28px; padding-top: 32px; }
  .gc-value-card { padding-top: 0; }
  .gc-value-card::before { width: 24px; margin-bottom: 14px; }
  .gc-value-card h3 { font-size: 19px; margin-bottom: 12px; }
  .gc-value-card p { font-size: 14px; }

  /* Image cards (Services Overview) */
  .gc-service-cards-section { padding: 56px 0; }
  .gc-image-cards-grid.gc-cols-3,
  .gc-image-cards-grid.gc-cols-2 { grid-template-columns: 1fr; gap: 20px; }
  .gc-image-card-body { padding: 22px 20px 26px; }
  .gc-image-card-body h3 { font-size: 19px; margin-bottom: 10px; }
  .gc-image-card-body p { font-size: 13.5px; }

  /* Contact */
  .gc-contact-info { padding: 50px 0 56px; }
  .gc-contact-info-header { margin-bottom: 32px; }
  .gc-contact-info-title { font-size: clamp(28px, 6vw, 36px) !important; }
  .gc-contact-info-grid.gc-cols-4 { grid-template-columns: 1fr; gap: 28px; }
  .gc-contact-info-icon { width: 28px; height: 28px; margin-bottom: 12px; }

  /* Contact form */
  .gc-contact-form-section { padding: 56px 0 70px; }
  .gc-contact-form-header { margin-bottom: 36px; }
  .gc-contact-form-title { font-size: clamp(26px, 6vw, 34px) !important; }
  .gc-contact-form { gap: 18px; }
  .gc-form-field label { font-size: 10px; letter-spacing: 0.18em; }

  /* CPT archive */
  .gc-archive-hero { padding: 50px 0; }
  .gc-archive-hero h1 { font-size: clamp(32px, 8vw, 48px); }
  .gc-cpt-grid { padding: 50px 0; }

  /* Mobile menu styling */
  .gc-nav-links {
    padding: 16px 24px !important;
    gap: 12px !important;
  }
  .gc-nav-links a { font-size: 16px; }

  /* Status messages on form */
  .gc-form-status--success,
  .gc-form-status--error {
    padding: 12px 14px;
    font-size: 13.5px;
  }

  /* Hero meta logos on mobile */
  .gc-hero-meta-logos {
    --gc-logo-row-h: 44px;
    gap: 10px;
  }

  /* Footer cert logos */
  .gc-footer-cert-logos {
    --gc-cert-row-h: 44px;
    gap: 10px;
  }
  .gc-footer-cert-logos > a,
  .gc-footer-cert-logos > img { max-width: 90px; }

  /* Brand on smallest screens */
  .gc-brand { gap: 10px; }
  .gc-brand-mark { width: 36px; height: 36px; }
  .gc-brand-mark svg { width: 18px; height: 18px; }
  .gc-brand-text .name { font-size: 16px; letter-spacing: 0.1em; }
  .gc-brand-text .tag { font-size: 7.5px; letter-spacing: 0.22em; }
}

/* ---- Tiny screens: 360px and below ---- */
@media (max-width: 360px) {
  .gc-container { padding: 0 16px; }
  .gc-stats-grid { grid-template-columns: 1fr; }
  .gc-stat { border-right: 0; border-bottom: 1px solid var(--line-soft); }
  .gc-stat:last-child { border-bottom: 0; }
  .gc-our-story-images { grid-template-columns: 1fr; }
  .gc-our-story-img-1 { margin-bottom: 0; }
  .gc-our-story-img-2 { margin-top: 0; }
  .gc-hero-quote { font-size: 30px; }
  .gc-about-hero-title { font-size: 32px !important; }
}

/* ---- Reduced motion ---- */
@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;
  }
  .gc-fade-in { opacity: 1; transform: none; }
  .gc-reveal { opacity: 1; }
}

/* ---- Print friendly ---- */
@media print {
  .gc-nav,
  .gc-footer,
  .gc-cta-section,
  .gc-banner,
  .gc-serving,
  .gc-mobile-toggle,
  .gc-form-submit-row,
  .gc-form-status { display: none !important; }
  body { background: #fff !important; color: #000 !important; }
  .gc-section { padding: 20px 0 !important; }
  a { color: #000 !important; text-decoration: underline !important; }
}
