/*
Theme Name:   Glacian Studio
Theme URI:    https://theglacian.com
Description:  Glacian Studio — Child theme for Blocksy. Clean, minimal, precise.
Author:       Glacian Studio
Author URI:   https://theglacian.com
Template:     blocksy
Version:      1.0.0
Text Domain:  glacian-studio
*/

/* ============================================================
   DESIGN TOKENS
   ============================================================ */

:root {
  /* ── Palette ── */
  --gs-black:    #0D0D0D;
  --gs-dark:     #1A1A1A;
  --gs-surface:  #F5F5F5;
  --gs-surface2: #EBEBEB;
  --gs-border:   #E0E0E0;
  --gs-muted:    #999999;
  --gs-ghost:    #BBBBBB;
  --gs-light:    #555555;
  --gs-white:    #FFFFFF;

  /* ── Accent ── */
  --gs-ice:      #2CE4FF;
  --gs-ice-08:   rgba(44, 228, 255, 0.08);
  --gs-ice-18:   rgba(44, 228, 255, 0.18);
  --gs-ice-35:   rgba(44, 228, 255, 0.35);

  /* ── Typography ── */
  --gs-font-display: 'Poppins', sans-serif;
  --gs-font-body:    'Poppins', sans-serif;
  --gs-font-mono:    'Space Mono', monospace;

  /* ── Type scale ── */
  --gs-text-hero:  clamp(64px, 10vw, 140px);
  --gs-text-h1:    clamp(40px, 6vw, 80px);
  --gs-text-h2:    clamp(28px, 4vw, 56px);
  --gs-text-h3:    clamp(20px, 3vw, 32px);
  --gs-text-h4:    20px;
  --gs-text-body:  16px;
  --gs-text-small: 14px;
  --gs-text-label: 11px;

  /* ── Spacing ── */
  --gs-space-xs:  8px;
  --gs-space-sm:  16px;
  --gs-space-md:  32px;
  --gs-space-lg:  64px;
  --gs-space-xl:  110px;
  --gs-space-2xl: 160px;

  /* ── Letter spacing ── */
  --gs-ls-tight:   -0.02em;
  --gs-ls-normal:   0em;
  --gs-ls-wide:     0.04em;
  --gs-ls-wider:    0.08em;
  --gs-ls-widest:   0.14em;

  /* ── Layout ── */
  --gs-max-width: 1280px;
  --gs-gutter:    48px;
  --gs-radius:    0px;

  /* ── Motion ── */
  --gs-ease:     cubic-bezier(0.4, 0, 0.2, 1);
  --gs-dur-fast: 150ms;
  --gs-dur-base: 260ms;
  --gs-dur-slow: 680ms;

  /* ── Blocksy overrides → light theme ── */
  --theme-palette-color-1: var(--gs-ice);
  --theme-palette-color-2: var(--gs-black);
  --theme-palette-color-3: var(--gs-muted);
  --theme-palette-color-4: var(--gs-surface);
  --theme-palette-color-5: var(--gs-border);
  --theme-palette-color-6: var(--gs-white);
  --theme-palette-color-7: var(--gs-surface2);
  --theme-palette-color-8: var(--gs-ghost);

  --theme-text-color:           var(--gs-black);
  --theme-link-initial-color:   var(--gs-black);
  --theme-link-hover-color:     var(--gs-muted);
  --theme-headings-color:       var(--gs-black);
  --theme-border-color:         var(--gs-border);
  --theme-selection-text-color: var(--gs-white);
  --theme-selection-bg:         var(--gs-black);

  --theme-button-background-initial-color: var(--gs-ice);
  --theme-button-text-initial-color:       #000000;
  --theme-button-background-hover-color:   var(--gs-black);
  --theme-button-text-hover-color:         #FFFFFF;
  --theme-button-border-radius:            0px;

  --theme-form-field-border-color:       var(--gs-border);
  --theme-form-field-background-color:   var(--gs-white);
  --theme-form-field-text-color:         var(--gs-black);
  --theme-form-field-focus-border-color: var(--gs-black);
  --theme-form-field-border-radius:      0px;
}


/* ============================================================
   BASE
   ============================================================ */

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  background-color: var(--gs-white) !important;
  color: var(--gs-black) !important;
  font-family: var(--gs-font-body) !important;
  font-size: var(--gs-text-body);
  line-height: 1.7;
}

/* ── Custom glacier cursor ── */
/* Native cursor hidden only when JS has initialised the custom one */
.gs-cursor-active,
.gs-cursor-active * { cursor: none !important; }

/* Text fields always show the I-beam regardless */
.gs-cursor-active input[type="text"],
.gs-cursor-active input[type="email"],
.gs-cursor-active input[type="search"],
.gs-cursor-active input[type="password"],
.gs-cursor-active textarea { cursor: text !important; }

/* The cursor element itself */
.gs-cursor {
  position: fixed;
  top: 0; left: 0;
  width: 28px;
  height: 28px;
  pointer-events: none;
  z-index: 999999;
  mix-blend-mode: difference;
  will-change: transform;
  transform: translate(-200px, -200px); /* start offscreen */
  transition: opacity 0.15s;
}
.gs-cursor svg {
  width: 100%;
  height: 100%;
  fill: #ffffff; /* white + difference = inverts whatever's below */
  display: block;
}

button,
.button,
input[type="submit"],
input[type="button"],
.wp-block-button__link,
.ct-button,
.ct-drop-down-content,
.ct-mega-menu-container {
  border-radius: var(--gs-radius) !important;
}

::selection {
  background: var(--gs-black);
  color: var(--gs-white);
}


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

h1, h2, h3, h4, h5, h6 {
  font-family: var(--gs-font-display) !important;
  color: var(--gs-black);
  line-height: 1.1;
  font-weight: 700;
  letter-spacing: var(--gs-ls-tight);
  text-transform: none;
}

h1 { font-size: var(--gs-text-h1); font-weight: 800; }
h2 { font-size: var(--gs-text-h2); font-weight: 700; }
h3 { font-size: var(--gs-text-h3); font-weight: 600; }
h4 { font-size: var(--gs-text-h4); font-weight: 600; }
h5 { font-size: 16px; font-weight: 500; }
h6 { font-size: var(--gs-text-label); font-family: var(--gs-font-mono) !important; letter-spacing: var(--gs-ls-widest); text-transform: uppercase; }

p {
  font-family: var(--gs-font-body);
  color: var(--gs-light);
  font-size: var(--gs-text-body);
  line-height: 1.75;
}

a {
  color: var(--gs-black);
  text-decoration: none;
  transition: color var(--gs-dur-fast) var(--gs-ease);
}

a:hover { color: var(--gs-muted); }

strong, b {
  color: var(--gs-black);
  font-weight: 600;
}

code, pre, kbd {
  font-family: var(--gs-font-mono) !important;
  font-size: 13px;
  background: var(--gs-surface);
  color: var(--gs-dark);
  border: 1px solid var(--gs-border);
  border-radius: 0;
}

code { padding: 2px 8px; }
pre  { padding: 20px 24px; overflow-x: auto; }

blockquote {
  border-left: 2px solid var(--gs-black);
  margin: var(--gs-space-md) 0;
  padding: 16px 28px;
  background: var(--gs-surface);
}

blockquote p {
  font-size: 20px;
  color: var(--gs-black);
  font-family: var(--gs-font-display);
  line-height: 1.4;
  font-style: normal;
}


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

.ct-container,
.entry-content,
.ct-container-narrow {
  max-width: var(--gs-max-width) !important;
  padding-left: var(--gs-gutter) !important;
  padding-right: var(--gs-gutter) !important;
}

@media (max-width: 768px) {
  .ct-container,
  .entry-content,
  .ct-container-narrow {
    padding-left: 20px !important;
    padding-right: 20px !important;
  }
}

.gs-full-width {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
}

.gs-section {
  padding-top: var(--gs-space-xl);
  padding-bottom: var(--gs-space-xl);
}

@media (max-width: 768px) {
  .gs-section { padding-top: 64px; padding-bottom: 64px; }
}


/* ============================================================
   NAVIGATION
   ============================================================ */

.ct-header {
  background: rgba(255, 255, 255, 0.96) !important;
  backdrop-filter: blur(16px) !important;
  border-bottom: 1px solid var(--gs-border) !important;
  transition: background var(--gs-dur-base) var(--gs-ease) !important;
}

.ct-header .ct-menu > li > a,
.ct-header [data-id="menu"] > li > a {
  font-family: var(--gs-font-body) !important;
  font-size: 14px !important;
  letter-spacing: 0 !important;
  text-transform: none !important;
  font-weight: 400 !important;
  color: var(--gs-muted) !important;
  transition: color var(--gs-dur-fast) var(--gs-ease) !important;
  padding: 8px 0 !important;
  position: relative !important;
}

.ct-header .ct-menu > li > a::after,
.ct-header [data-id="menu"] > li > a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 1px;
  background: var(--gs-black);
  transition: width var(--gs-dur-base) var(--gs-ease);
}

.ct-header .ct-menu > li > a:hover,
.ct-header [data-id="menu"] > li > a:hover,
.ct-header .ct-menu > li.current-menu-item > a,
.ct-header [data-id="menu"] > li.current-menu-item > a {
  color: var(--gs-black) !important;
}

.ct-header .ct-menu > li > a:hover::after,
.ct-header [data-id="menu"] > li.current-menu-item > a::after {
  width: 100%;
}

.ct-header .site-title,
.ct-header .ct-site-branding .site-title a {
  font-family: var(--gs-font-display) !important;
  font-size: 14px !important;
  font-weight: 700 !important;
  letter-spacing: var(--gs-ls-wide) !important;
  text-transform: uppercase !important;
  color: var(--gs-black) !important;
}

.ct-header .ct-button,
.ct-header [data-id="button"] {
  font-family: var(--gs-font-body) !important;
  font-size: 13px !important;
  font-weight: 500 !important;
  letter-spacing: 0 !important;
  text-transform: none !important;
  background: var(--gs-ice) !important;
  color: #000000 !important;
  padding: 10px 22px !important;
  border-radius: 0 !important;
  border: none !important;
  transition: background var(--gs-dur-fast) var(--gs-ease), color var(--gs-dur-fast) var(--gs-ease) !important;
}

.ct-header .ct-button:hover,
.ct-header [data-id="button"]:hover {
  background: var(--gs-black) !important;
  color: #FFFFFF !important;
}

.ct-mobile-menu {
  background: var(--gs-white) !important;
  border: 1px solid var(--gs-border) !important;
}

.ct-mobile-menu a {
  font-family: var(--gs-font-body) !important;
  font-size: 15px !important;
  letter-spacing: 0 !important;
  text-transform: none !important;
  color: var(--gs-muted) !important;
  border-bottom: 1px solid var(--gs-border) !important;
}

.ct-mobile-menu a:hover { color: var(--gs-black) !important; }


/* ============================================================
   FOOTER — dark, like Ollef
   ============================================================ */

.ct-footer {
  background: var(--gs-black) !important;
  border-top: none !important;
  color: var(--gs-muted) !important;
}

.ct-footer a {
  color: var(--gs-muted) !important;
  font-family: var(--gs-font-body) !important;
  font-size: 13px !important;
  letter-spacing: 0 !important;
  text-transform: none !important;
  transition: color var(--gs-dur-fast) var(--gs-ease) !important;
}

.ct-footer a:hover { color: var(--gs-white) !important; }

.ct-footer p { color: var(--gs-muted); }

.ct-footer .widget-title,
.ct-footer .ct-widget-title {
  font-family: var(--gs-font-display) !important;
  font-size: 11px !important;
  font-weight: 600 !important;
  letter-spacing: var(--gs-ls-wider) !important;
  text-transform: uppercase !important;
  color: var(--gs-white) !important;
  margin-bottom: 20px !important;
}

.ct-footer-copyright {
  font-family: var(--gs-font-body) !important;
  font-size: 13px !important;
  color: var(--gs-muted) !important;
}


/* ============================================================
   BUTTONS — Global
   ============================================================ */

.wp-block-button__link,
.ct-button,
button,
input[type="submit"] {
  font-family: var(--gs-font-body) !important;
  font-size: 13px !important;
  font-weight: 500 !important;
  letter-spacing: 0 !important;
  text-transform: none !important;
  border-radius: 0 !important;
  transition: all var(--gs-dur-fast) var(--gs-ease) !important;
  cursor: pointer;
}

.wp-block-button.is-style-fill .wp-block-button__link {
  background: var(--gs-ice) !important;
  color: #000000 !important;
  border: none !important;
  padding: 16px 32px !important;
}

.wp-block-button.is-style-fill .wp-block-button__link:hover {
  background: var(--gs-black) !important;
  color: #FFFFFF !important;
}

.wp-block-button.is-style-outline .wp-block-button__link {
  background: transparent !important;
  color: var(--gs-black) !important;
  border: 1px solid var(--gs-black) !important;
  padding: 15px 31px !important;
}

.wp-block-button.is-style-outline .wp-block-button__link:hover {
  background: var(--gs-black) !important;
  color: var(--gs-white) !important;
}


/* ============================================================
   FORMS
   ============================================================ */

input[type="text"],
input[type="email"],
input[type="url"],
input[type="tel"],
input[type="number"],
input[type="search"],
textarea,
select {
  background: var(--gs-white) !important;
  border: 1px solid var(--gs-border) !important;
  border-radius: 0 !important;
  color: var(--gs-black) !important;
  font-family: var(--gs-font-body) !important;
  font-size: var(--gs-text-small) !important;
  padding: 14px 18px !important;
  transition: border-color var(--gs-dur-fast) var(--gs-ease) !important;
  width: 100%;
  outline: none;
}

input:focus, textarea:focus, select:focus {
  border-color: var(--gs-black) !important;
  box-shadow: none !important;
  outline: none !important;
}

input::placeholder, textarea::placeholder {
  color: var(--gs-ghost) !important;
}

label {
  font-family: var(--gs-font-body) !important;
  font-size: var(--gs-text-label) !important;
  letter-spacing: var(--gs-ls-widest) !important;
  text-transform: uppercase !important;
  color: var(--gs-muted) !important;
  display: block;
  margin-bottom: 8px;
}


/* ============================================================
   SIDEBAR
   ============================================================ */

.ct-sidebar .widget {
  background: var(--gs-surface) !important;
  border: 1px solid var(--gs-border) !important;
  padding: 28px !important;
  margin-bottom: 2px !important;
  border-radius: 0 !important;
}

.ct-sidebar .widget-title,
.ct-sidebar .ct-widget-title {
  font-family: var(--gs-font-body) !important;
  font-size: var(--gs-text-label) !important;
  font-weight: 600 !important;
  letter-spacing: var(--gs-ls-widest) !important;
  text-transform: uppercase !important;
  color: var(--gs-black) !important;
  margin-bottom: 20px !important;
  padding-bottom: 12px !important;
  border-bottom: 1px solid var(--gs-border) !important;
}

.ct-sidebar a { color: var(--gs-light) !important; font-size: var(--gs-text-small) !important; }
.ct-sidebar a:hover { color: var(--gs-black) !important; }


/* ============================================================
   CARDS / POST GRID
   ============================================================ */

.ct-card,
.ct-post-card {
  background: var(--gs-white) !important;
  border: 1px solid var(--gs-border) !important;
  border-radius: 0 !important;
  overflow: hidden !important;
  transition: border-color var(--gs-dur-base) var(--gs-ease) !important;
}

.ct-card:hover, .ct-post-card:hover { border-color: var(--gs-ghost) !important; }

.ct-card .ct-card-content,
.ct-post-card .entry-header { padding: 24px !important; }

.ct-card .entry-title,
.ct-post-card .entry-title {
  font-family: var(--gs-font-display) !important;
  font-size: 18px !important;
  font-weight: 600 !important;
  letter-spacing: var(--gs-ls-tight) !important;
  text-transform: none !important;
  color: var(--gs-black) !important;
  margin-bottom: 10px !important;
}

.entry-meta, .ct-meta, .posted-on, .post-categories {
  font-family: var(--gs-font-mono) !important;
  font-size: 10px !important;
  letter-spacing: var(--gs-ls-widest) !important;
  text-transform: uppercase !important;
  color: var(--gs-ghost) !important;
}

.entry-meta a, .ct-meta a { color: var(--gs-muted) !important; }
.entry-meta a:hover, .ct-meta a:hover { color: var(--gs-black) !important; }


/* ============================================================
   SINGLE POST / PAGE
   ============================================================ */

.single .entry-header,
.page .entry-header { margin-bottom: var(--gs-space-lg); }

.single .entry-title,
.page .entry-title { font-size: var(--gs-text-h1); font-weight: 800; color: var(--gs-black); }

.single .entry-content h2,
.page .entry-content h2 {
  margin-top: 56px; margin-bottom: 20px;
  font-size: clamp(22px, 3vw, 36px);
  color: var(--gs-black);
  border-bottom: 1px solid var(--gs-border);
  padding-bottom: 16px;
}

.single .entry-content h3,
.page .entry-content h3 { margin-top: 40px; margin-bottom: 16px; color: var(--gs-dark); }

.single .entry-content p,
.page .entry-content p { font-size: 17px; line-height: 1.8; color: var(--gs-light); margin-bottom: 24px; }

#gs-reading-bar {
  position: fixed; top: 0; left: 0;
  height: 2px; background: var(--gs-black);
  width: 0%; z-index: 9999;
  transition: width 0.1s linear;
}


/* ============================================================
   TAGS
   ============================================================ */

.post-tags a, .tags-links a, .wp-block-tag-cloud a {
  font-family: var(--gs-font-mono) !important;
  font-size: 10px !important;
  letter-spacing: var(--gs-ls-widest) !important;
  text-transform: uppercase !important;
  color: var(--gs-muted) !important;
  background: transparent !important;
  border: 1px solid var(--gs-border) !important;
  border-radius: 0 !important;
  padding: 5px 12px !important;
  display: inline-block !important;
  transition: all var(--gs-dur-fast) var(--gs-ease) !important;
}

.post-tags a:hover, .tags-links a:hover, .wp-block-tag-cloud a:hover {
  color: var(--gs-black) !important;
  border-color: var(--gs-black) !important;
}


/* ============================================================
   UTILITY CLASSES
   ============================================================ */

.gs-label {
  display: block;
  font-family: var(--gs-font-mono);
  font-size: var(--gs-text-label);
  letter-spacing: var(--gs-ls-widest);
  text-transform: uppercase;
  color: var(--gs-ghost);
  margin-bottom: 12px;
}

.gs-ice   { color: var(--gs-ice) !important; }
.gs-ghost { color: var(--gs-ghost) !important; }
.gs-muted { color: var(--gs-muted) !important; }
.gs-light { color: var(--gs-light) !important; }
.gs-black { color: var(--gs-black) !important; }

.gs-bg-surface  { background: var(--gs-surface)  !important; }
.gs-bg-surface2 { background: var(--gs-surface2) !important; }
.gs-bg-black    { background: var(--gs-black)    !important; }
.gs-bg-white    { background: var(--gs-white)    !important; }

.gs-card {
  background: var(--gs-white);
  border: 1px solid var(--gs-border);
  padding: 32px;
  transition: border-color var(--gs-dur-base) var(--gs-ease);
}
.gs-card:hover { border-color: var(--gs-ghost); }

.gs-rule { border: none; border-top: 1px solid var(--gs-border); margin: var(--gs-space-lg) 0; }

.gs-stat-label {
  font-family: var(--gs-font-mono);
  font-size: var(--gs-text-label);
  letter-spacing: var(--gs-ls-widest);
  text-transform: uppercase;
  color: var(--gs-ghost);
  display: block;
  margin-bottom: 6px;
}

.gs-stat-value {
  font-family: var(--gs-font-display);
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 800;
  letter-spacing: var(--gs-ls-tight);
  color: var(--gs-black);
}

/* Marquee */
.gs-marquee-wrap {
  overflow: hidden;
  white-space: nowrap;
  border-top: 1px solid var(--gs-border);
  border-bottom: 1px solid var(--gs-border);
  padding: 14px 0;
  background: var(--gs-white);
}

.gs-marquee-inner {
  display: inline-flex;
  gap: 48px;
  animation: gs-marquee 30s linear infinite;
}

.gs-marquee-inner span {
  font-family: var(--gs-font-mono);
  font-size: var(--gs-text-label);
  letter-spacing: var(--gs-ls-widest);
  text-transform: uppercase;
  color: var(--gs-ghost);
}

.gs-marquee-inner span.accent { color: var(--gs-border); }

@keyframes gs-marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* Fade-up animation */
.gs-fade-up {
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity var(--gs-dur-slow) var(--gs-ease),
    transform var(--gs-dur-slow) var(--gs-ease);
}
.gs-fade-up.is-visible { opacity: 1; transform: translateY(0); }


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

@media (max-width: 1024px) {
  :root { --gs-space-xl: 80px; --gs-space-2xl: 110px; --gs-gutter: 32px; }
}

@media (max-width: 768px) {
  :root { --gs-space-xl: 60px; --gs-gutter: 20px; }
}

@media (max-width: 480px) {
  :root { --gs-space-xl: 48px; --gs-gutter: 16px; }
}


/* ============================================================
   PRINT
   ============================================================ */

@media print {
  body { background: #fff !important; color: #000 !important; }
  .ct-header, .ct-footer, .gs-header, .gs-footer, #gs-reading-bar { display: none !important; }
}


/* ============================================================
   CUSTOM HEADER
   ============================================================ */

/* Page offset for fixed header */
#gs-content { padding-top: 64px; }

/* Hero overrides padding-top on its own — no extra needed */
.gs-hero #gs-content,
#gs-content:has(.gs-hero:first-child) { padding-top: 0; }

.gs-header {
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--gs-border);
  transition: box-shadow var(--gs-dur-base) var(--gs-ease);
}

.gs-header.is-scrolled {
  box-shadow: 0 1px 24px rgba(0, 0, 0, 0.07);
}

.gs-header__inner {
  max-width: var(--gs-max-width);
  margin: 0 auto;
  padding: 0 var(--gs-gutter);
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

/* Logo mark */
.gs-header__logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
  color: var(--gs-black);
}
.gs-logo-mark {
  display: block;
  width: 36px;
  height: 36px;
  fill: currentColor;
  transition: opacity 0.2s;
}
.gs-header__logo:hover .gs-logo-mark { opacity: 0.6; }

/* Nav */
.gs-header__nav { display: flex; align-items: center; }

.gs-header__nav-list {
  list-style: none;
  margin: 0; padding: 0;
  display: flex;
  align-items: center;
  gap: 36px;
}

.gs-header__nav-list li { margin: 0; padding: 0; }

.gs-header__nav-list a {
  font-family: var(--gs-font-body);
  font-size: 14px;
  font-weight: 400;
  color: var(--gs-muted);
  text-decoration: none;
  position: relative;
  transition: color var(--gs-dur-fast) var(--gs-ease);
}

.gs-header__nav-list a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0;
  width: 0; height: 1px;
  background: var(--gs-black);
  transition: width var(--gs-dur-base) var(--gs-ease);
}

.gs-header__nav-list a:hover,
.gs-header__nav-list .current-menu-item > a { color: var(--gs-black); }

.gs-header__nav-list a:hover::after,
.gs-header__nav-list .current-menu-item > a::after { width: 100%; }

/* CTA + toggle */
.gs-header__actions {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-shrink: 0;
}

/* Hamburger */
.gs-header__toggle {
  display: none;
  width: 28px;
  height: 18px;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
  flex-shrink: 0;
}

.gs-header__toggle span {
  width: 100%; height: 1px;
  background: var(--gs-black);
  display: block;
  transition: transform var(--gs-dur-base) var(--gs-ease),
              opacity var(--gs-dur-base) var(--gs-ease);
  transform-origin: center;
}

.gs-header__toggle.is-active span:nth-child(1) {
  transform: translateY(8.5px) rotate(45deg);
}
.gs-header__toggle.is-active span:nth-child(2) {
  transform: translateY(-8.5px) rotate(-45deg);
}

/* Mobile menu */
.gs-mobile-menu {
  position: fixed;
  inset: 0;
  background: var(--gs-white);
  z-index: 999;
  display: flex;
  flex-direction: column;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--gs-dur-base) var(--gs-ease);
}

.gs-mobile-menu.is-open {
  opacity: 1;
  pointer-events: all;
}

.gs-mobile-menu__inner {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 24px 48px;
}

.gs-mobile-menu__list {
  list-style: none;
  margin: 0; padding: 0;
}

.gs-mobile-menu__list li { margin: 0; }

.gs-mobile-menu__list a {
  display: block;
  font-family: var(--gs-font-display);
  font-size: clamp(28px, 9vw, 52px);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--gs-black);
  text-decoration: none;
  padding: 14px 0;
  border-bottom: 1px solid var(--gs-border);
  transition: color var(--gs-dur-fast) var(--gs-ease),
              padding-left var(--gs-dur-base) var(--gs-ease);
}

.gs-mobile-menu__list a:hover {
  color: var(--gs-muted);
  padding-left: 10px;
}

.gs-mobile-menu__foot {
  padding-top: 36px;
}

.gs-mobile-menu__foot a {
  font-family: var(--gs-font-mono);
  font-size: var(--gs-text-label);
  letter-spacing: var(--gs-ls-widest);
  text-transform: uppercase;
  color: var(--gs-ghost);
  text-decoration: none;
  transition: color var(--gs-dur-fast) var(--gs-ease);
}

.gs-mobile-menu__foot a:hover { color: var(--gs-black); }

@media (max-width: 768px) {
  .gs-header__nav  { display: none; }
  .gs-header__actions .gs-btn { display: none; }
  .gs-header__toggle { display: flex; }
  body.gs-menu-open { overflow: hidden; }
  #gs-content { padding-top: 56px; }
}

@media (max-width: 480px) {
  .gs-header__inner { padding: 0 16px; height: 56px; }
}


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

.gs-footer {
  background: var(--gs-black);
  overflow: hidden;
}

/* ── Main section ── */
.gs-footer__main {
  padding: 72px 0 64px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.gs-footer__main-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 80px;
  align-items: start;
}

/* Brand col */
.gs-footer__brand {
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 400px;
}

.gs-footer__logo-link {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  color: var(--gs-white);
  margin-bottom: 28px;
}

.gs-footer__logo-mark {
  display: block;
  width: 42px;
  height: 42px;
  fill: var(--gs-white);
  flex-shrink: 0;
}

.gs-footer__logo-text {
  font-family: var(--gs-font-display);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1;
}

.gs-footer__desc {
  font-size: 14px;
  line-height: 1.85;
  color: rgba(255, 255, 255, 0.36);
  margin: 0 0 14px;
  max-width: 320px;
}

.gs-footer__location {
  font-size: 11.5px;
  font-family: var(--gs-font-mono);
  color: rgba(255, 255, 255, 0.2);
  margin: 0 0 36px;
  letter-spacing: 0.04em;
}

/* Social icons */
.gs-footer__social {
  display: flex;
  align-items: center;
  gap: 6px;
}

.gs-footer__social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  color: rgba(255, 255, 255, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.1);
  text-decoration: none;
  transition: color 0.2s, border-color 0.2s, background 0.2s;
}

.gs-footer__social-link:hover {
  color: var(--gs-white);
  border-color: rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.05);
}

.gs-footer__social-link svg {
  width: 16px;
  height: 16px;
  display: block;
}

/* Nav cols */
.gs-footer__nav-cols {
  display: flex;
  gap: 64px;
}

.gs-footer__col .gs-label {
  color: rgba(255, 255, 255, 0.28);
  margin-bottom: 20px;
  display: block;
}

.gs-footer__col ul {
  list-style: none;
  margin: 0; padding: 0;
  display: flex;
  flex-direction: column;
  gap: 13px;
}

.gs-footer__col ul a {
  font-family: var(--gs-font-body);
  font-size: 14px;
  color: rgba(255, 255, 255, 0.42);
  text-decoration: none;
  transition: color var(--gs-dur-fast) var(--gs-ease);
}

.gs-footer__col ul a:hover { color: var(--gs-white); }

/* ── Wordmark ── */
.gs-footer__wordmark {
  overflow: hidden;
  line-height: 1;
  display: flex;
  justify-content: center;
  padding: 0;
  margin: 0;
}

.gs-footer__wordmark span {
  display: block;
  flex-shrink: 0;
  font-family: var(--gs-font-display);
  font-size: 22vw;
  font-weight: 900;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.06);
  white-space: nowrap;
  line-height: 0.88;
  user-select: none;
  padding-left: 0;
}

/* ── Bottom bar ── */
.gs-footer__bottom {
  padding: 20px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
}

.gs-footer__bottom .ct-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.gs-footer__copy {
  font-family: var(--gs-font-body);
  font-size: 12px;
  color: rgba(255, 255, 255, 0.22);
}

.gs-footer__bottom-links {
  display: flex;
  gap: 24px;
}

.gs-footer__bottom-links a {
  font-family: var(--gs-font-body);
  font-size: 12px;
  color: rgba(255, 255, 255, 0.22);
  text-decoration: none;
  transition: color var(--gs-dur-fast) var(--gs-ease);
}

.gs-footer__bottom-links a:hover { color: rgba(255, 255, 255, 0.7); }

@media (max-width: 960px) {
  .gs-footer__main-grid { grid-template-columns: 1fr; gap: 48px; }
  .gs-footer__brand { max-width: 100%; }
  .gs-footer__nav-cols { gap: 40px; }
}

@media (max-width: 540px) {
  .gs-footer__nav-cols { flex-direction: column; gap: 32px; }
  .gs-footer__main { padding: 56px 0 48px; }
  .gs-footer__bottom .ct-container { flex-direction: column; align-items: flex-start; gap: 10px; }
  .gs-footer__wordmark span { font-size: 26vw; }
}


/* ============================================================
   SHARED COMPONENTS
   ============================================================ */

.gs-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--gs-font-body) !important;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0;
  padding: 13px 26px;
  border-radius: 0;
  transition: all var(--gs-dur-fast) var(--gs-ease);
  cursor: pointer;
  border: none;
  text-decoration: none;
  line-height: 1;
}

.gs-btn--primary {
  background: var(--gs-ice);
  color: #000000;
}
.gs-btn--primary:hover {
  background: var(--gs-black);
  color: #FFFFFF;
}

.gs-btn--outline {
  background: transparent;
  color: var(--gs-black);
  border: 1px solid var(--gs-black);
}
.gs-btn--outline:hover {
  background: var(--gs-black);
  color: var(--gs-white);
}

.gs-btn--lg { padding: 17px 34px; font-size: 15px; }

.gs-link-arrow {
  font-family: var(--gs-font-body);
  font-size: 13px;
  font-weight: 400;
  color: var(--gs-muted);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: color var(--gs-dur-fast) var(--gs-ease);
}
.gs-link-arrow:hover { color: var(--gs-black); }


/* ============================================================
   HOMEPAGE — Ollef-inspired, light + minimal
   ============================================================ */

/* ── Hero ── */

.gs-hero {
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  border-bottom: 1px solid var(--gs-border);
  position: relative;
  overflow: hidden;
}


.gs-hero__inner {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  z-index: 1;
  padding-top: 120px;
  padding-bottom: 64px;
  max-width: var(--gs-max-width);
  margin: 0 auto;
  width: 100%;
  padding-left: var(--gs-gutter);
  padding-right: var(--gs-gutter);
}

.gs-hero__top {
  display: flex;
  justify-content: flex-end;
  align-items: flex-start;
}

.gs-hero__top-right {
  max-width: 320px;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.gs-hero__desc {
  font-size: 15px;
  line-height: 1.8;
  color: var(--gs-muted);
  margin: 0;
}

.gs-hero__scroll {
  font-family: var(--gs-font-mono);
  font-size: 10px;
  letter-spacing: var(--gs-ls-widest);
  text-transform: uppercase;
  color: var(--gs-ghost);
  display: block;
}

.gs-hero__wordmark {
  font-family: var(--gs-font-display) !important;
  font-size: clamp(72px, 12.5vw, 168px) !important;
  font-weight: 800 !important;
  line-height: 0.88 !important;
  letter-spacing: -0.04em !important;
  text-transform: uppercase !important;
  color: var(--gs-black) !important;
  margin: 0 !important;
}

@media (max-width: 768px) {
  .gs-hero__inner { padding-top: 100px; gap: 60px; justify-content: flex-start; flex-direction: column; }
  .gs-hero__top { justify-content: flex-start; }
  .gs-hero__top-right { max-width: 100%; gap: 20px; }
  .gs-hero__wordmark { font-size: 17vw !important; }
}

/* ── Hero reel / full-width image ── */

.gs-hero-reel {
  height: clamp(280px, 52vw, 760px);
  background: var(--gs-surface);
  overflow: hidden;
  position: relative;
}

.gs-hero-reel img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}

.gs-hero-reel__placeholder {
  width: 100%; height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gs-surface2);
}

/* ── About teaser ── */

.gs-home-about {
  border-bottom: 1px solid var(--gs-border);
}

.gs-home-about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(48px, 8vw, 100px);
  align-items: start;
}

.gs-home-about__lead p {
  font-size: clamp(16px, 1.8vw, 19px);
  line-height: 1.8;
  color: var(--gs-black);
  margin-bottom: 20px;
}

.gs-home-about__lead p:last-of-type { margin-bottom: 28px; }

.gs-home-about__values {
  display: flex;
  flex-direction: column;
  gap: 36px;
  padding-top: 4px;
}

.gs-home-about__value .gs-label { margin-bottom: 8px; }

.gs-home-about__value p {
  font-size: 14px;
  color: var(--gs-muted);
  line-height: 1.7;
  margin: 0;
}

@media (max-width: 768px) {
  .gs-home-about__grid { grid-template-columns: 1fr; gap: var(--gs-space-md); }
}

/* ── Featured work ── */

.gs-home-work { border-bottom: 1px solid var(--gs-border); }

.gs-home-work__header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 48px;
}

.gs-home-work__header-right {
  text-align: right;
  max-width: 240px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: flex-end;
}

.gs-home-work__header-right > p { font-size: 13px; color: var(--gs-ghost); margin: 0; }

.gs-home-work__title {
  font-size: clamp(28px, 4vw, 52px) !important;
  font-weight: 700 !important;
  letter-spacing: -0.02em !important;
  text-transform: none !important;
  margin: 8px 0 0 !important;
  color: var(--gs-black) !important;
  line-height: 1.1 !important;
}

.gs-home-work__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.gs-home-work__card { background: transparent; }

.gs-home-work__card > a {
  display: block;
  text-decoration: none;
  color: inherit;
}

.gs-home-work__card-img {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--gs-surface);
  display: block;
  margin-bottom: 16px;
}

.gs-home-work__card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform var(--gs-dur-slow) var(--gs-ease);
}

.gs-home-work__card:hover .gs-home-work__card-img img { transform: scale(1.04); }

.gs-home-work__card-placeholder {
  width: 100%; height: 100%;
  background: var(--gs-surface2);
}

.gs-home-work__card-body {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
}

.gs-home-work__card-title {
  font-family: var(--gs-font-display) !important;
  font-size: 17px !important;
  font-weight: 600 !important;
  letter-spacing: -0.01em !important;
  text-transform: none !important;
  color: var(--gs-black) !important;
  margin: 0 0 4px !important;
  line-height: 1.25 !important;
}

.gs-home-work__card-sub { font-size: 13px; color: var(--gs-ghost); display: block; }

.gs-home-work__card-arrow {
  font-size: 18px;
  color: var(--gs-ghost);
  flex-shrink: 0;
  padding-top: 2px;
  transition: color var(--gs-dur-fast) var(--gs-ease), transform var(--gs-dur-fast) var(--gs-ease);
}

.gs-home-work__card:hover .gs-home-work__card-arrow {
  color: var(--gs-black);
  transform: translate(3px, -3px);
}

@media (max-width: 640px) {
  .gs-home-work__grid { grid-template-columns: 1fr; gap: 40px; }
  .gs-home-work__header { flex-direction: column; align-items: flex-start; gap: 20px; }
  .gs-home-work__header-right { text-align: left; align-items: flex-start; }
}

/* ── Services — stacked type ── */

.gs-home-services { border-bottom: 1px solid var(--gs-border); }

.gs-home-services__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 56px;
}

.gs-home-services__header .gs-label { margin: 0; }

.gs-home-services__header-desc {
  font-size: 14px;
  color: var(--gs-muted);
  line-height: 1.7;
  max-width: 260px;
  text-align: right;
  margin: 0;
}

.gs-home-services__stacked { border-top: 1px solid var(--gs-border); }

.gs-home-services__stacked-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 26px 0;
  border-bottom: 1px solid var(--gs-border);
  text-decoration: none;
  color: var(--gs-black);
  transition: padding-left var(--gs-dur-base) var(--gs-ease);
  gap: 20px;
}

.gs-home-services__stacked-item:hover { padding-left: 20px; color: var(--gs-black); }

.gs-home-services__stacked-name {
  font-family: var(--gs-font-display);
  font-size: clamp(22px, 3vw, 46px);
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1;
}

.gs-home-services__stacked-arrow {
  font-size: 20px;
  color: var(--gs-ghost);
  flex-shrink: 0;
  transition: color var(--gs-dur-fast) var(--gs-ease), transform var(--gs-dur-fast) var(--gs-ease);
}

.gs-home-services__stacked-item:hover .gs-home-services__stacked-arrow {
  color: var(--gs-black);
  transform: translate(3px, -3px);
}

@media (max-width: 768px) {
  .gs-home-services__header { flex-direction: column; gap: 16px; }
  .gs-home-services__header-desc { text-align: left; max-width: 100%; }
}

/* ── Blog ── */

.gs-home-blog { background: var(--gs-surface); }

.gs-home-blog .ct-container {
  padding-top: var(--gs-space-xl);
  padding-bottom: var(--gs-space-xl);
}

.gs-home-blog__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
}

.gs-home-blog__header .gs-label { margin: 0; }

.gs-home-blog__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.gs-home-blog__card { background: var(--gs-white); }

.gs-home-blog__card > a {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
}

.gs-home-blog__card-img {
  aspect-ratio: 3 / 2;
  overflow: hidden;
  background: var(--gs-surface2);
}

.gs-home-blog__card-img img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
  transition: transform var(--gs-dur-slow) var(--gs-ease);
}

.gs-home-blog__card:hover .gs-home-blog__card-img img { transform: scale(1.04); }

.gs-home-blog__card-img-placeholder { aspect-ratio: 3 / 2; background: var(--gs-surface2); }

.gs-home-blog__card-body {
  padding: 20px 24px 28px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.gs-home-blog__card-body .gs-label { margin: 0; }

.gs-home-blog__card-title {
  font-family: var(--gs-font-display) !important;
  font-size: 16px !important;
  font-weight: 600 !important;
  letter-spacing: -0.01em !important;
  text-transform: none !important;
  color: var(--gs-black) !important;
  margin: 0 !important;
  line-height: 1.35 !important;
}

.gs-home-blog__card-sub {
  font-size: 13px;
  color: var(--gs-muted);
  line-height: 1.6;
  margin: 0;
}

@media (max-width: 900px) { .gs-home-blog__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .gs-home-blog__grid { grid-template-columns: 1fr; } }

/* ── CTA row ── */

.gs-home-cta {
  border-top: 1px solid var(--gs-border);
  padding: var(--gs-space-xl) 0;
}

.gs-home-cta__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 48px;
}

.gs-home-cta__heading {
  font-size: clamp(26px, 3.5vw, 48px) !important;
  font-weight: 700 !important;
  letter-spacing: -0.02em !important;
  text-transform: none !important;
  color: var(--gs-black) !important;
  margin: 0 !important;
  line-height: 1.2 !important;
  max-width: 580px;
}

@media (max-width: 768px) {
  .gs-home-cta__inner { flex-direction: column; align-items: flex-start; gap: var(--gs-space-md); }
}


/* ============================================================
   SHARED PAGE PATTERNS
   ============================================================ */

/* Page hero — used across archive + inner pages */
.gs-page-hero {
  padding: 80px 0 56px;
  border-bottom: 1px solid var(--gs-border);
}

.gs-page-hero__top {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 40px;
  flex-wrap: wrap;
}

.gs-page-hero__title {
  font-size: clamp(52px, 9vw, 120px) !important;
  font-weight: 800 !important;
  letter-spacing: -0.04em !important;
  line-height: 0.9 !important;
  margin: 8px 0 0 !important;
  text-transform: none !important;
}

.gs-page-hero__desc {
  font-size: 15px;
  color: var(--gs-muted);
  line-height: 1.75;
  max-width: 320px;
  text-align: right;
  margin: 0;
}

/* Shared filter row */
.gs-archive-filters {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 36px;
  padding-top: 28px;
  border-top: 1px solid var(--gs-border);
}

.gs-archive-filter {
  font-family: var(--gs-font-body);
  font-size: 12px;
  font-weight: 400;
  padding: 7px 18px;
  border: 1px solid var(--gs-border);
  color: var(--gs-muted);
  text-decoration: none;
  transition: all var(--gs-dur-fast) var(--gs-ease);
  white-space: nowrap;
}

.gs-archive-filter:hover { color: var(--gs-black); border-color: var(--gs-black); }
.gs-archive-filter.is-active { background: var(--gs-black); border-color: var(--gs-black); color: var(--gs-white); }

/* Empty state */
.gs-empty-state {
  font-size: 15px;
  color: var(--gs-ghost);
  padding: 80px 0;
  text-align: center;
}

@media (max-width: 768px) {
  .gs-page-hero { padding: 64px 0 40px; }
  .gs-page-hero__top { flex-direction: column; align-items: flex-start; gap: 20px; }
  .gs-page-hero__desc { text-align: left; max-width: 100%; }
}


/* ============================================================
   WORK ARCHIVE — archive-gs_work.php
   ============================================================ */

.gs-work-archive-section { padding: 0 0 80px; }
.gs-work-count {
  display: block;
  font-family: var(--gs-font-mono);
  font-size: 11px;
  color: var(--gs-muted);
  letter-spacing: 0.06em;
  margin-top: 10px;
}

/* ── Work grid ── */
.gs-work-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px 32px;
}

.gs-work-card > a {
  display: block;
  text-decoration: none;
  color: inherit;
}

/* Image */
.gs-work-card__img {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  position: relative;
  background: var(--gs-surface);
  margin-bottom: 20px;
}
.gs-work-card__img img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(.25,.46,.45,.94);
}
.gs-work-card:hover .gs-work-card__img img { transform: scale(1.05); }
.gs-work-card__placeholder { width: 100%; height: 100%; background: var(--gs-surface); }

/* Overlay */
.gs-work-card__overlay {
  position: absolute;
  inset: 0;
  background: rgba(13,13,13,0.65);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.gs-work-card:hover .gs-work-card__overlay { opacity: 1; }
.gs-work-card__overlay-cta {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gs-white);
  border: 1px solid rgba(255,255,255,0.4);
  padding: 10px 20px;
}

/* Card body */
.gs-work-card__body { padding: 0; }

.gs-work-card__meta-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}
.gs-work-card__disc {
  font-family: var(--gs-font-mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gs-muted);
}
.gs-work-card__year {
  font-family: var(--gs-font-mono);
  font-size: 10px;
  letter-spacing: 0.08em;
  color: var(--gs-muted);
}
.gs-work-card__title {
  font-size: 1.3rem !important;
  font-weight: 700 !important;
  letter-spacing: -0.02em !important;
  text-transform: none !important;
  color: var(--gs-black) !important;
  margin: 0 0 10px !important;
  line-height: 1.2 !important;
  transition: color 0.2s !important;
}
.gs-work-card:hover .gs-work-card__title { color: var(--gs-muted) !important; }
.gs-work-card__excerpt {
  font-size: 0.875rem;
  color: var(--gs-muted);
  line-height: 1.65;
  margin: 0 0 14px;
}
.gs-work-card__arrow {
  font-size: 1rem;
  color: var(--gs-black);
  display: inline-block;
  transition: transform 0.2s ease;
}
.gs-work-card:hover .gs-work-card__arrow { transform: translate(3px, -3px); }

.gs-empty-state-wrap { padding: 40px 0; }

@media (max-width: 720px) {
  .gs-work-grid { grid-template-columns: 1fr; gap: 48px; }
}


/* ============================================================
   SINGLE PROJECT — single-gs_work.php
   ============================================================ */

.gs-project-header { padding: 72px 0 60px; border-bottom: 1px solid var(--gs-border); }

.gs-project-header__inner {
  display: grid;
  grid-template-columns: 1fr 260px;
  gap: 60px;
  align-items: end;
}

.gs-project-back {
  display: inline-flex;
  margin-bottom: 28px;
}

.gs-project-header__title {
  font-size: clamp(36px, 6vw, 80px) !important;
  font-weight: 800 !important;
  letter-spacing: -0.03em !important;
  margin: 12px 0 0 !important;
  line-height: 1 !important;
  text-transform: none !important;
}

.gs-project-header__excerpt {
  font-size: 16px;
  color: var(--gs-muted);
  line-height: 1.7;
  margin: 20px 0 0;
  max-width: 480px;
}

.gs-project-header__meta { display: flex; flex-direction: column; gap: 24px; }

.gs-project-meta-item .gs-label { margin-bottom: 4px; }

.gs-project-meta-item > span:last-of-type {
  font-size: 15px;
  color: var(--gs-black);
  display: block;
  font-weight: 500;
}

.gs-project-hero-img {
  aspect-ratio: 16 / 7;
  overflow: hidden;
  background: var(--gs-surface);
}

.gs-project-hero-img img { width: 100%; height: 100%; object-fit: cover; display: block; }

.gs-project-hero-video { aspect-ratio: 16 / 9; background: #000; }
.gs-project-hero-video iframe {
  width: 100%; height: 100%;
  border: none;
  display: block;
}

.gs-project-body__inner {
  max-width: 760px;
  margin: 0 auto;
}

.gs-project-body__inner h2 {
  font-size: clamp(20px, 2.5vw, 32px) !important;
  font-weight: 700 !important;
  letter-spacing: -0.02em !important;
  text-transform: none !important;
  margin-top: 56px !important;
  margin-bottom: 16px !important;
  padding-bottom: 16px !important;
  border-bottom: 1px solid var(--gs-border) !important;
}

.gs-project-body__inner p {
  font-size: 17px;
  line-height: 1.85;
  color: var(--gs-light);
  margin-bottom: 20px;
}

.gs-project-related { border-top: 1px solid var(--gs-border); }

.gs-project-related__header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 40px;
}

.gs-project-related__title {
  font-size: clamp(24px, 3vw, 40px) !important;
  font-weight: 700 !important;
  letter-spacing: -0.02em !important;
  text-transform: none !important;
  margin: 8px 0 0 !important;
}

@media (max-width: 768px) {
  .gs-project-header__inner { grid-template-columns: 1fr; gap: 40px; }
  .gs-project-header__meta { border-top: 1px solid var(--gs-border); padding-top: 32px; }
}


/* ============================================================
   SERVICES PAGE — page-services.php
   ============================================================ */

.gs-services-list { padding-top: 0 !important; }

.gs-service-item {
  display: grid;
  grid-template-columns: 56px 1fr 1fr;
  gap: 40px;
  padding: 56px 0;
  border-bottom: 1px solid var(--gs-border);
}

.gs-service-item:first-child { border-top: 1px solid var(--gs-border); }

.gs-service-item__num {
  font-family: var(--gs-font-mono);
  font-size: 11px;
  letter-spacing: var(--gs-ls-widest);
  color: var(--gs-ghost);
  padding-top: 6px;
}

.gs-service-item__name {
  font-size: clamp(22px, 2.5vw, 36px) !important;
  font-weight: 700 !important;
  letter-spacing: -0.02em !important;
  text-transform: none !important;
  margin: 0 0 16px !important;
  line-height: 1.1 !important;
}

.gs-service-item__intro {
  font-size: 15px;
  color: var(--gs-muted);
  line-height: 1.75;
  margin: 0;
}

.gs-service-item__right { padding-top: 4px; }

.gs-service-item__right .gs-label { margin-bottom: 16px; }

.gs-service-item__list {
  list-style: none;
  margin: 0; padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.gs-service-item__list li {
  font-size: 14px;
  color: var(--gs-muted);
  padding-left: 20px;
  position: relative;
  line-height: 1.5;
}

.gs-service-item__list li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--gs-ghost);
}

/* Process */
.gs-services-process { border-top: 1px solid var(--gs-border); }

.gs-services-process__header { margin-bottom: 48px; }

.gs-services-process__title {
  font-size: clamp(32px, 4vw, 52px) !important;
  font-weight: 700 !important;
  letter-spacing: -0.02em !important;
  text-transform: none !important;
  margin: 8px 0 0 !important;
}

.gs-services-process__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
}

.gs-process-step {
  padding: 40px 32px;
  border: 1px solid var(--gs-border);
  background: var(--gs-white);
  transition: background var(--gs-dur-base) var(--gs-ease);
}

.gs-process-step:hover { background: var(--gs-surface); }

.gs-process-step__num {
  font-family: var(--gs-font-mono);
  font-size: 11px;
  letter-spacing: var(--gs-ls-widest);
  color: var(--gs-ghost);
  display: block;
  margin-bottom: 20px;
}

.gs-process-step__name {
  font-size: 20px !important;
  font-weight: 700 !important;
  letter-spacing: -0.01em !important;
  text-transform: none !important;
  margin: 0 0 12px !important;
}

.gs-process-step__desc { font-size: 14px; color: var(--gs-muted); line-height: 1.7; margin: 0; }

@media (max-width: 960px) {
  .gs-service-item { grid-template-columns: 44px 1fr; gap: 20px 32px; }
  .gs-service-item__right { grid-column: 2; }
}

@media (max-width: 768px) {
  .gs-service-item {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  /* Reset the grid-column override from the 960px breakpoint */
  .gs-service-item__right { grid-column: auto; }
  .gs-service-item__num { display: none; }
  .gs-services-process__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 540px) {
  .gs-service-item { padding: 36px 0; }
  .gs-service-item__name { font-size: 22px !important; }
  .gs-services-process__grid { grid-template-columns: 1fr; gap: 2px; }
  .gs-process-step { padding: 28px 20px; }
}


/* ============================================================
   BLOG ARCHIVE — archive.php / category.php / tag.php
   ============================================================ */

.gs-blog-archive-section { padding: 0 0 80px; }

/* ── Featured post ── */
.gs-blog-featured {
  margin-bottom: 2px;
}
.gs-blog-featured > a {
  display: grid;
  grid-template-columns: 1fr 1fr;
  text-decoration: none;
  color: inherit;
  background: var(--gs-surface);
  transition: background 0.2s;
}
.gs-blog-featured:hover > a { background: #f0f0f0; }

.gs-blog-featured__img {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--gs-border);
}
.gs-blog-featured__placeholder {
  width: 100%; height: 100%;
  background: var(--gs-surface);
}
.gs-blog-featured__img img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
  transition: transform 0.55s cubic-bezier(.25,.46,.45,.94);
}
.gs-blog-featured:hover .gs-blog-featured__img img { transform: scale(1.04); }

.gs-blog-featured__body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 48px 52px;
  gap: 0;
}
.gs-blog-featured__meta {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  flex-wrap: wrap;
}
.gs-blog-featured__date,
.gs-blog-featured__read { font-size: 12px; color: var(--gs-muted); }
.gs-blog-featured__title {
  font-size: clamp(1.5rem, 2.5vw, 2.25rem) !important;
  font-weight: 700 !important;
  letter-spacing: -0.02em !important;
  text-transform: none !important;
  color: var(--gs-black) !important;
  margin: 0 0 16px !important;
  line-height: 1.15 !important;
  transition: color 0.2s !important;
}
.gs-blog-featured:hover .gs-blog-featured__title { color: var(--gs-muted) !important; }
.gs-blog-featured__excerpt {
  font-size: 0.9rem;
  color: var(--gs-muted);
  line-height: 1.75;
  margin: 0 0 24px;
}

/* ── Blog grid (remaining posts) ── */
.gs-blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-top: 2px;
}

.gs-blog-card > a {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  height: 100%;
}
.gs-blog-card__body {
  flex: 1;
  padding: 20px 0 28px;
  border-bottom: 1px solid var(--gs-border);
  display: flex;
  flex-direction: column;
}

.gs-blog-card__img {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--gs-surface);
}
.gs-blog-card__img img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
  transition: transform 0.55s cubic-bezier(.25,.46,.45,.94);
}
.gs-blog-card:hover .gs-blog-card__img img { transform: scale(1.04); }
.gs-blog-card__img-placeholder { aspect-ratio: 16 / 10; background: var(--gs-surface); }

.gs-blog-card__meta {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
  flex-wrap: wrap;
}
.gs-blog-card__cat {
  font-family: var(--gs-font-mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gs-muted);
}
.gs-blog-card__sep {
  width: 14px; height: 1px;
  background: var(--gs-border);
  display: inline-block;
  flex-shrink: 0;
}
.gs-blog-card__date { font-size: 11px; color: var(--gs-muted); }

.gs-blog-card__title {
  font-size: 1.05rem !important;
  font-weight: 600 !important;
  letter-spacing: -0.01em !important;
  text-transform: none !important;
  color: var(--gs-black) !important;
  margin: 0 0 10px !important;
  line-height: 1.3 !important;
  transition: color 0.2s !important;
}
.gs-blog-card:hover .gs-blog-card__title { color: var(--gs-muted) !important; }
.gs-blog-card__excerpt {
  font-size: 0.8rem;
  color: var(--gs-muted);
  line-height: 1.7;
  margin: 0;
  flex: 1;
}

/* Pagination */
.gs-pagination {
  padding: 48px 0;
  border-top: 1px solid var(--gs-border);
  display: flex;
  justify-content: center;
  gap: 4px;
}

.gs-pagination .page-numbers {
  font-size: 13px;
  color: var(--gs-muted);
  text-decoration: none;
  padding: 8px 14px;
  border: 1px solid var(--gs-border);
  transition: all var(--gs-dur-fast) var(--gs-ease);
  display: inline-block;
}

.gs-pagination .page-numbers.current,
.gs-pagination .page-numbers:hover {
  background: var(--gs-black);
  border-color: var(--gs-black);
  color: var(--gs-white);
}

@media (max-width: 900px) {
  .gs-blog-featured > a { grid-template-columns: 1fr; }
  .gs-blog-featured__img { aspect-ratio: 16 / 8; }
  .gs-blog-featured__body { padding: 32px; }
  .gs-blog-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .gs-blog-grid { grid-template-columns: 1fr; }
  .gs-blog-featured__body { padding: 24px 20px; }
}


/* ============================================================
   SINGLE POST — single.php
   ============================================================ */

.gs-post-header {
  padding: 80px 0 64px;
  border-bottom: 1px solid var(--gs-border);
}

.gs-post-header__inner { max-width: 760px; margin: 0 auto; }

.gs-post-header__meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}

.gs-post-header__cat {
  font-family: var(--gs-font-mono);
  font-size: 10px;
  letter-spacing: var(--gs-ls-widest);
  text-transform: uppercase;
  color: var(--gs-ghost);
  text-decoration: none;
  transition: color var(--gs-dur-fast) var(--gs-ease);
}

.gs-post-header__cat:hover { color: var(--gs-black); }

.gs-post-header__sep {
  width: 20px; height: 1px;
  background: var(--gs-border);
  display: inline-block;
}

.gs-post-header__date,
.gs-post-header__read { font-size: 12px; color: var(--gs-ghost); }

.gs-post-header__title {
  font-size: clamp(28px, 5vw, 60px) !important;
  font-weight: 800 !important;
  letter-spacing: -0.03em !important;
  line-height: 1.05 !important;
  margin: 0 0 20px !important;
  text-transform: none !important;
}

.gs-post-header__lead {
  font-size: 18px;
  color: var(--gs-muted);
  line-height: 1.7;
  margin: 0;
}

.gs-post-featured-img {
  width: 100%;
  height: clamp(240px, 44vw, 620px);
  overflow: hidden;
  background: var(--gs-surface);
}

.gs-post-featured-img img { width: 100%; height: 100%; object-fit: cover; display: block; }

.gs-post-content-section { padding-top: 60px !important; }

.gs-post-body { max-width: 760px; margin: 0 auto; }

.gs-post-body h2 {
  font-size: clamp(20px, 2.5vw, 30px) !important;
  font-weight: 700 !important;
  letter-spacing: -0.02em !important;
  text-transform: none !important;
  margin-top: 52px !important;
  margin-bottom: 16px !important;
  padding-bottom: 16px !important;
  border-bottom: 1px solid var(--gs-border) !important;
}

.gs-post-body h3 {
  font-size: clamp(17px, 2vw, 22px) !important;
  font-weight: 600 !important;
  letter-spacing: -0.01em !important;
  text-transform: none !important;
  margin-top: 36px !important;
  margin-bottom: 12px !important;
}

.gs-post-body p { font-size: 17px; line-height: 1.85; color: var(--gs-light); margin-bottom: 20px; }

.gs-post-body ul,
.gs-post-body ol {
  font-size: 16px;
  color: var(--gs-light);
  line-height: 1.8;
  padding-left: 20px;
  margin-bottom: 20px;
}

.gs-post-body blockquote { margin: 40px 0; }

/* Tags section */
.gs-post-tags-section { border-top: 1px solid var(--gs-border); padding: 28px 0 20px; }

.gs-post-tags-inner {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.gs-post-tag {
  font-family: var(--gs-font-mono);
  font-size: 10px;
  letter-spacing: var(--gs-ls-widest);
  text-transform: uppercase;
  color: var(--gs-muted);
  border: 1px solid var(--gs-border);
  padding: 7px 14px;
  text-decoration: none;
  transition: all var(--gs-dur-fast) var(--gs-ease);
}

.gs-post-tag:hover { background: var(--gs-black); border-color: var(--gs-black); color: var(--gs-white); }

/* Post navigation */
.gs-post-nav {
  border-top: 1px solid var(--gs-border);
  border-bottom: 1px solid var(--gs-border);
  padding: 40px 0;
}

.gs-post-nav__inner {
  display: flex;
  justify-content: space-between;
  gap: 40px;
}

.gs-post-nav__link {
  display: flex;
  flex-direction: column;
  gap: 8px;
  text-decoration: none;
  max-width: 360px;
  transition: opacity var(--gs-dur-fast) var(--gs-ease);
}

.gs-post-nav__link--next { text-align: right; margin-left: auto; }

.gs-post-nav__label {
  font-family: var(--gs-font-mono);
  font-size: 10px;
  letter-spacing: var(--gs-ls-widest);
  text-transform: uppercase;
  color: var(--gs-ghost);
}

.gs-post-nav__title {
  font-size: 15px;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--gs-black);
  line-height: 1.35;
  transition: color var(--gs-dur-fast) var(--gs-ease);
}

.gs-post-nav__link:hover .gs-post-nav__title { color: var(--gs-muted); }

@media (max-width: 600px) {
  .gs-post-nav__inner { flex-direction: column; gap: 24px; }
  .gs-post-nav__link--next { text-align: left; margin-left: 0; }
}

/* ════════════════════════════════════════
   ABOUT PAGE
   ════════════════════════════════════════ */

/* Intro split */
.gs-about-intro__grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 64px;
	align-items: start;
}
.gs-about-intro__lead {
	font-size: clamp(1.25rem, 2vw, 1.625rem);
	font-weight: 500;
	line-height: 1.45;
	color: var(--gs-black);
}
.gs-about-intro__right p {
	color: var(--gs-muted);
	line-height: 1.75;
	margin-bottom: 20px;
}
.gs-about-intro__right p:last-child { margin-bottom: 0; }

/* Philosophy grid */
.gs-about-philosophy__header {
	display: flex;
	flex-direction: column;
	gap: 12px;
	margin-bottom: 56px;
}
.gs-about-philosophy__title {
	font-size: clamp(2rem, 4vw, 3.25rem);
	font-weight: 700;
	margin: 0;
	line-height: 1.1;
}
.gs-about-philosophy__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 0;
	border-top: 1px solid var(--gs-border);
}
.gs-about-principle {
	display: flex;
	gap: 20px;
	padding: 36px 32px 36px 0;
	border-bottom: 1px solid var(--gs-border);
	align-items: flex-start;
}
.gs-about-principle:nth-child(3n) { padding-right: 0; }
.gs-about-principle__num {
	font-family: var(--gs-font-mono);
	font-size: 0.7rem;
	color: var(--gs-ice);
	min-width: 28px;
	padding-top: 4px;
}
.gs-about-principle__name {
	font-size: 1rem;
	font-weight: 600;
	margin: 0 0 10px;
	line-height: 1.3;
}
.gs-about-principle__desc {
	font-size: 0.9rem;
	color: var(--gs-muted);
	line-height: 1.7;
	margin: 0;
}

/* Capabilities */
.gs-about-capabilities__inner {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 80px;
	align-items: start;
}
.gs-about-capabilities__left {
	display: flex;
	flex-direction: column;
	gap: 20px;
	position: sticky;
	top: 100px;
}
.gs-about-capabilities__title {
	font-size: clamp(1.75rem, 3.5vw, 2.75rem);
	font-weight: 700;
	line-height: 1.2;
	margin: 0;
}
.gs-about-capability-row {
	display: flex;
	align-items: center;
	gap: 20px;
	padding: 20px 0;
	border-bottom: 1px solid var(--gs-border);
	transition: padding-left 0.3s ease;
}
.gs-about-capability-row:first-child { border-top: 1px solid var(--gs-border); }
.gs-about-capability-row:hover { padding-left: 12px; }
.gs-about-capability-row__num {
	font-family: var(--gs-font-mono);
	font-size: 0.7rem;
	color: var(--gs-muted);
	min-width: 28px;
}
.gs-about-capability-row__name {
	font-size: 1.05rem;
	font-weight: 500;
}

/* Stats */
.gs-about-stats { background: var(--gs-surface); }
.gs-about-stats__grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 0;
	border-top: 1px solid var(--gs-border);
	border-left: 1px solid var(--gs-border);
}
.gs-about-stat {
	display: flex;
	flex-direction: column;
	gap: 8px;
	padding: 48px 40px;
	border-right: 1px solid var(--gs-border);
	border-bottom: 1px solid var(--gs-border);
}
.gs-about-stat__number {
	font-size: clamp(2.5rem, 5vw, 4rem);
	font-weight: 800;
	line-height: 1;
	color: var(--gs-black);
}
.gs-about-stat__label {
	font-size: 0.85rem;
	color: var(--gs-muted);
	font-weight: 400;
}

/* About page responsive */
@media (max-width: 900px) {
	.gs-about-intro__grid { grid-template-columns: 1fr; gap: 32px; }
	.gs-about-philosophy__grid { grid-template-columns: 1fr; }
	.gs-about-principle { padding-right: 0; }
	.gs-about-capabilities__inner { grid-template-columns: 1fr; gap: 40px; }
	.gs-about-capabilities__left { position: static; }
	.gs-about-stats__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 540px) {
	.gs-about-stats__grid { grid-template-columns: 1fr; }
	.gs-about-stat { padding: 32px 24px; }
}


/* ════════════════════════════════════════
   CONTACT PAGE
   ════════════════════════════════════════ */

.gs-contact-section { padding-bottom: 120px; }

.gs-contact-grid {
	display: grid;
	grid-template-columns: 1fr 300px;
	gap: 80px;
	align-items: start;
}

/* ── Notices ── */
.gs-form-notice {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 14px 18px;
	margin-bottom: 32px;
	font-size: 0.875rem;
	font-weight: 500;
	line-height: 1.5;
	border-radius: 2px;
}
.gs-form-notice svg { width: 16px; height: 16px; flex-shrink: 0; }
.gs-form-notice--success { background: #edfaf3; color: #166534; }
.gs-form-notice--error   { background: #fef2f2; color: #991b1b; }
.gs-form-notice--error a { color: inherit; font-weight: 600; }

/* ── Fields ── */
#gs-contact-form {
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.gs-field {
	display: flex;
	flex-direction: column;
	gap: 7px;
}
.gs-field-row--half {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 20px;
}

.gs-field label {
	font-size: 0.75rem;
	font-weight: 600;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: var(--gs-black);
}
.gs-req { color: var(--gs-ice); margin-left: 2px; }
.gs-opt {
	font-weight: 400;
	text-transform: none;
	letter-spacing: 0;
	color: var(--gs-muted);
	margin-left: 4px;
	font-size: 0.7rem;
}

.gs-field input,
.gs-field textarea {
	background: var(--gs-surface);
	border: 1.5px solid var(--gs-border);
	padding: 12px 14px;
	font-family: var(--gs-font-body);
	font-size: 0.95rem;
	color: var(--gs-black);
	width: 100%;
	outline: none;
	transition: border-color 0.2s, box-shadow 0.2s;
	border-radius: 2px;
	-webkit-appearance: none;
}
.gs-field input::placeholder,
.gs-field textarea::placeholder { color: #bbb; }
.gs-field input:focus,
.gs-field textarea:focus {
	border-color: var(--gs-black);
	box-shadow: 0 0 0 3px rgba(13,13,13,0.06);
	background: var(--gs-white);
}
.gs-field textarea { resize: vertical; min-height: 150px; line-height: 1.65; }

/* Select wrapper */
.gs-select-wrap { position: relative; }
.gs-select-wrap select {
	appearance: none;
	-webkit-appearance: none;
	width: 100%;
	background: var(--gs-surface);
	border: 1.5px solid var(--gs-border);
	padding: 12px 40px 12px 14px;
	font-family: var(--gs-font-body);
	font-size: 0.95rem;
	color: var(--gs-black);
	outline: none;
	cursor: pointer;
	transition: border-color 0.2s, box-shadow 0.2s;
	border-radius: 2px;
}
.gs-select-wrap select:focus {
	border-color: var(--gs-black);
	box-shadow: 0 0 0 3px rgba(13,13,13,0.06);
}
.gs-select-wrap::after {
	content: '';
	position: absolute;
	right: 14px;
	top: 50%;
	transform: translateY(-50%);
	width: 10px;
	height: 6px;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 10 6'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%23999' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-size: contain;
	pointer-events: none;
}

/* Checkbox pills */
.gs-check-group {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-top: 2px;
}
.gs-check-pill {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	padding: 8px 14px;
	border: 1.5px solid var(--gs-border);
	border-radius: 2px;
	cursor: pointer;
	font-size: 0.875rem;
	font-weight: 500;
	color: var(--gs-black);
	transition: border-color 0.18s, background 0.18s, color 0.18s;
	user-select: none;
}
.gs-check-pill:hover { border-color: var(--gs-black); }
.gs-check-pill input[type="checkbox"] {
	position: absolute;
	opacity: 0;
	width: 0;
	height: 0;
}
.gs-check-pill:has(input:checked) {
	background: var(--gs-black);
	border-color: var(--gs-black);
	color: var(--gs-white);
}

/* Submit button */
.gs-submit-btn {
	width: 100%;
	padding: 16px 24px;
	background: var(--gs-black);
	color: var(--gs-white);
	border: 2px solid var(--gs-black);
	font-family: var(--gs-font-body);
	font-size: 0.95rem;
	font-weight: 600;
	letter-spacing: 0.04em;
	cursor: pointer;
	transition: background 0.22s, color 0.22s;
	border-radius: 2px;
	margin-top: 4px;
}
.gs-submit-btn:hover {
	background: transparent;
	color: var(--gs-black);
}
.gs-submit-btn:disabled { opacity: 0.55; cursor: not-allowed; }

/* ── Aside ── */
.gs-contact-aside {
	position: sticky;
	top: 96px;
	display: flex;
	flex-direction: column;
	gap: 0;
	border-left: 1px solid var(--gs-border);
	padding-left: 36px;
}

.gs-contact-aside__block {
	display: flex;
	flex-direction: column;
	gap: 8px;
	padding: 28px 0;
	border-bottom: 1px solid var(--gs-border);
}
.gs-contact-aside__block:first-child { padding-top: 0; }

.gs-contact-aside .gs-label {
	color: var(--gs-muted);
	font-size: 0.7rem;
}
.gs-contact-aside__val {
	font-size: 0.975rem;
	font-weight: 500;
	line-height: 1.55;
	color: var(--gs-black);
	text-decoration: none;
}
.gs-contact-aside__val--link:hover { color: var(--gs-ice); }

.gs-contact-aside__socials {
	display: flex;
	flex-direction: column;
	gap: 6px;
}
.gs-contact-aside__socials a {
	font-size: 0.875rem;
	font-weight: 500;
	color: var(--gs-black);
	text-decoration: none;
	transition: color 0.2s;
}
.gs-contact-aside__socials a:hover { color: var(--gs-ice); }

.gs-contact-aside__note {
	padding-top: 28px;
}
.gs-contact-aside__note p {
	font-size: 0.8rem;
	line-height: 1.75;
	color: var(--gs-muted);
	margin: 0;
}

/* Responsive */
@media (max-width: 960px) {
	.gs-contact-grid {
		grid-template-columns: 1fr;
		gap: 56px;
	}
	.gs-contact-aside {
		position: static;
		border-left: none;
		border-top: 1px solid var(--gs-border);
		padding-left: 0;
		padding-top: 40px;
		display: grid;
		grid-template-columns: repeat(2, 1fr);
		gap: 0 48px;
	}
	.gs-contact-aside__note { grid-column: 1 / -1; }
}
@media (max-width: 600px) {
	.gs-field-row--half { grid-template-columns: 1fr; }
	.gs-contact-aside { grid-template-columns: 1fr; }
}


/* ════════════════════════════════════════
   CONTACT FORM 7 — Glacian overrides
   ════════════════════════════════════════ */

/* Form layout */
.wpcf7-form {
	display: flex;
	flex-direction: column;
	gap: 20px;
}

/* CF7 wraps each field in a span — make it block so grids work */
.wpcf7 .wpcf7-form-control-wrap {
	display: block;
}

/* Inputs & textarea — inherit .gs-field styles but ensure full width */
.wpcf7 input.wpcf7-text,
.wpcf7 input.wpcf7-email {
	width: 100%;
	background: var(--gs-surface);
	border: 1.5px solid var(--gs-border);
	padding: 12px 14px;
	font-family: var(--gs-font-body);
	font-size: 0.95rem;
	color: var(--gs-black);
	outline: none;
	transition: border-color 0.2s, box-shadow 0.2s;
	border-radius: 2px;
	-webkit-appearance: none;
}
.wpcf7 input.wpcf7-text::placeholder,
.wpcf7 input.wpcf7-email::placeholder { color: #bbb; }
.wpcf7 input.wpcf7-text:focus,
.wpcf7 input.wpcf7-email:focus {
	border-color: var(--gs-black);
	box-shadow: 0 0 0 3px rgba(13,13,13,0.06);
	background: var(--gs-white);
}

.wpcf7 textarea.wpcf7-textarea {
	width: 100%;
	background: var(--gs-surface);
	border: 1.5px solid var(--gs-border);
	padding: 12px 14px;
	font-family: var(--gs-font-body);
	font-size: 0.95rem;
	color: var(--gs-black);
	outline: none;
	transition: border-color 0.2s, box-shadow 0.2s;
	border-radius: 2px;
	resize: vertical;
	min-height: 150px;
	line-height: 1.65;
}
.wpcf7 textarea.wpcf7-textarea::placeholder { color: #bbb; }
.wpcf7 textarea.wpcf7-textarea:focus {
	border-color: var(--gs-black);
	box-shadow: 0 0 0 3px rgba(13,13,13,0.06);
	background: var(--gs-white);
}

/* Select — same as .gs-select-wrap select */
.wpcf7 .gs-select-wrap select.wpcf7-select {
	appearance: none;
	-webkit-appearance: none;
	width: 100%;
	background: var(--gs-surface);
	border: 1.5px solid var(--gs-border);
	padding: 12px 40px 12px 14px;
	font-family: var(--gs-font-body);
	font-size: 0.95rem;
	color: var(--gs-black);
	outline: none;
	cursor: pointer;
	transition: border-color 0.2s, box-shadow 0.2s;
	border-radius: 2px;
}
.wpcf7 .gs-select-wrap select.wpcf7-select:focus {
	border-color: var(--gs-black);
	box-shadow: 0 0 0 3px rgba(13,13,13,0.06);
}

/* Pill wrapper — div.gs-cf7-pills wraps [checkbox] and [radio] CF7 tags */
.gs-cf7-pills .wpcf7-checkbox,
.gs-cf7-pills .wpcf7-radio {
	display: flex !important;
	flex-wrap: wrap !important;
	gap: 8px !important;
}
.gs-cf7-pills .wpcf7-list-item {
	margin: 0 !important;
}
.gs-cf7-pills .wpcf7-list-item label {
	display: inline-flex !important;
	align-items: center !important;
	padding: 8px 14px !important;
	border: 1.5px solid rgba(0,0,0,0.18) !important;
	border-radius: 2px !important;
	cursor: pointer !important;
	font-size: 0.875rem !important;
	font-weight: 500 !important;
	color: #0D0D0D !important;
	background: transparent !important;
	text-transform: none !important;
	letter-spacing: 0 !important;
	line-height: 1.2 !important;
	margin: 0 !important;
	user-select: none;
	transition: border-color 0.18s, background 0.18s, color 0.18s;
}
.gs-cf7-pills .wpcf7-list-item label:hover {
	border-color: #0D0D0D !important;
}
.gs-cf7-pills .wpcf7-list-item input[type="checkbox"],
.gs-cf7-pills .wpcf7-list-item input[type="radio"] {
	position: absolute !important;
	opacity: 0 !important;
	width: 0 !important;
	height: 0 !important;
	pointer-events: none !important;
}
.gs-cf7-pills .wpcf7-list-item label:has(input:checked) {
	background: #0D0D0D !important;
	border-color: #0D0D0D !important;
	color: #FFFFFF !important;
}

/* Submit button */
.wpcf7 input[type="submit"] {
	width: 100%;
	padding: 16px 24px;
	background: var(--gs-black);
	color: var(--gs-white);
	border: 2px solid var(--gs-black);
	font-family: var(--gs-font-body);
	font-size: 0.95rem;
	font-weight: 600;
	letter-spacing: 0.04em;
	cursor: pointer;
	transition: background 0.22s, color 0.22s;
	border-radius: 2px;
	margin-top: 4px;
	-webkit-appearance: none;
}
.wpcf7 input[type="submit"]:hover {
	background: transparent;
	color: var(--gs-black);
}
.wpcf7 input[type="submit"]:disabled { opacity: 0.55; cursor: not-allowed; }

/* Hide default CF7 spinner */
.wpcf7-spinner { display: none !important; }

/* Response output (success / error) */
.wpcf7-response-output {
	padding: 14px 18px !important;
	margin: 8px 0 0 !important;
	border-radius: 2px !important;
	font-size: 0.875rem !important;
	font-weight: 500 !important;
	line-height: 1.5 !important;
}
.wpcf7-response-output:empty { display: none !important; }

.wpcf7-response-output.wpcf7-mail-sent-ok {
	background: #edfaf3 !important;
	color: #166534 !important;
	border-color: #166534 !important;
}
.wpcf7-response-output.wpcf7-mail-sent-ng,
.wpcf7-response-output.wpcf7-validation-errors,
.wpcf7-response-output.wpcf7-spam-blocked {
	background: #fef2f2 !important;
	color: #991b1b !important;
	border-color: #991b1b !important;
}

/* Inline validation tips */
.wpcf7-not-valid-tip {
	display: block;
	font-size: 11px;
	color: #991b1b;
	margin-top: 5px;
}
.wpcf7 input.wpcf7-not-valid,
.wpcf7 textarea.wpcf7-not-valid {
	border-color: #991b1b !important;
}

/* ════════════════════════════════════════
   CONTACT FAQ
   ════════════════════════════════════════ */

.gs-contact-faq {
	padding: 80px 0 120px;
	border-top: 1px solid var(--gs-border);
}

.gs-faq-header {
	display: flex;
	flex-direction: column;
	gap: 14px;
	margin-bottom: 56px;
}

.gs-faq-title {
	font-size: clamp(1.75rem, 3vw, 2.5rem);
	font-weight: 800;
	letter-spacing: -0.03em;
	line-height: 1.1;
	margin: 0;
	color: var(--gs-black);
}

.gs-faq-list {
	max-width: 780px;
}

.gs-faq-item {
	border-top: 1px solid var(--gs-border);
}
.gs-faq-item:last-child {
	border-bottom: 1px solid var(--gs-border);
}

.gs-faq-question {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 32px;
	padding: 26px 0;
	cursor: pointer;
	list-style: none;
	font-size: 1rem;
	font-weight: 600;
	color: var(--gs-black);
	letter-spacing: -0.01em;
	line-height: 1.4;
}
.gs-faq-question::-webkit-details-marker { display: none; }
.gs-faq-question::marker { display: none; }

.gs-faq-icon {
	font-size: 1.25rem;
	font-weight: 300;
	color: var(--gs-muted);
	flex-shrink: 0;
	transition: transform 0.25s ease;
	line-height: 1;
	font-family: var(--gs-font-mono);
}
.gs-faq-item[open] .gs-faq-icon {
	transform: rotate(45deg);
	color: var(--gs-black);
}
.gs-faq-item[open] .gs-faq-question {
	color: var(--gs-black);
}

.gs-faq-answer {
	padding: 0 48px 28px 0;
}
.gs-faq-answer p {
	font-size: 0.9375rem;
	color: var(--gs-muted);
	line-height: 1.8;
	margin: 0;
}

@media (max-width: 600px) {
	.gs-contact-faq { padding: 56px 0 80px; }
	.gs-faq-answer { padding-right: 0; }
}

/* ════════════════════════════════════════
   404 PAGE
   ════════════════════════════════════════ */

.gs-404-section {
	min-height: calc(100vh - 72px);
	display: flex;
	align-items: center;
	position: relative;
	overflow: hidden;
}
.gs-404-inner {
	position: relative;
	z-index: 1;
	padding: 80px 0;
}

/* Ghost "404" behind the content */
.gs-404-num {
	position: absolute;
	font-family: var(--gs-font-display);
	font-size: clamp(180px, 32vw, 420px);
	font-weight: 900;
	letter-spacing: -0.05em;
	color: var(--gs-surface);
	line-height: 1;
	right: -0.04em;
	top: 50%;
	transform: translateY(-50%);
	user-select: none;
	pointer-events: none;
	white-space: nowrap;
}

/* Logo mark */
.gs-404-mark {
	width: 36px;
	height: 36px;
	fill: var(--gs-black);
	display: block;
	margin-bottom: 28px;
}

.gs-404-content {
	display: flex;
	flex-direction: column;
	gap: 16px;
}
.gs-404-content .gs-label { margin: 0; }

.gs-404-title {
	font-size: clamp(2.5rem, 6vw, 4.5rem) !important;
	font-weight: 800 !important;
	letter-spacing: -0.04em !important;
	line-height: 1.05 !important;
	margin: 4px 0 0 !important;
	color: var(--gs-black) !important;
}
.gs-404-desc {
	font-size: 1rem;
	color: var(--gs-muted);
	line-height: 1.7;
	margin: 4px 0 8px;
	max-width: 380px;
}
.gs-404-links {
	display: flex;
	align-items: center;
	gap: 28px;
	flex-wrap: wrap;
}

@media (max-width: 600px) {
	.gs-404-num { font-size: 52vw; right: -8px; }
}


/* ════════════════════════════════════════
   SEARCH PAGE
   ════════════════════════════════════════ */

.gs-search-form-wrap .search-form {
	display: flex;
	gap: 0;
	max-width: 520px;
}
.gs-search-form-wrap .search-field {
	flex: 1;
	padding: 14px 18px;
	border: 1px solid var(--gs-border);
	border-right: none;
	font-family: var(--gs-font-body);
	font-size: 1rem;
	background: var(--gs-surface);
	outline: none;
	border-radius: 0;
}
.gs-search-form-wrap .search-field:focus { border-color: var(--gs-black); }
.gs-search-form-wrap .search-submit {
	padding: 14px 24px;
	background: var(--gs-black);
	color: var(--gs-white);
	border: 1px solid var(--gs-black);
	font-family: var(--gs-font-body);
	font-size: 0.9rem;
	font-weight: 600;
	cursor: pointer;
	transition: background 0.2s, color 0.2s;
	border-radius: 0;
}
.gs-search-form-wrap .search-submit:hover {
	background: var(--gs-ice);
	border-color: var(--gs-ice);
	color: var(--gs-black);
}
.gs-search-empty {
	padding: 40px 0;
}
.gs-search-empty__links {
	display: flex;
	gap: 28px;
	flex-wrap: wrap;
	margin-top: 24px;
}


/* ════════════════════════════════════════
   SINGLE POST — RELATED POSTS
   ════════════════════════════════════════ */

.gs-related-posts {
  padding: 80px 0;
  border-top: 1px solid var(--gs-border);
}

.gs-related-posts__header {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 48px;
}

.gs-related-posts__title {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 700;
  margin: 0;
  line-height: 1.1;
}



/* ════════════════════════════════════════
   LEGAL PAGES — Privacy & Terms
   ════════════════════════════════════════ */

/* Hero */
.gs-legal-hero {
	padding: 80px 0 64px;
	border-bottom: 1px solid var(--gs-border);
}
.gs-legal-hero .gs-label {
	display: block;
	margin-bottom: 16px;
}
.gs-legal-hero__title {
	font-size: clamp(2.5rem, 6vw, 5rem);
	font-weight: 800;
	letter-spacing: -0.04em;
	line-height: 1.05;
	margin: 0 0 40px;
	color: var(--gs-black);
}
.gs-legal-meta {
	display: flex;
	flex-wrap: wrap;
	gap: 8px 32px;
}
.gs-legal-meta span {
	font-size: 0.8rem;
	color: var(--gs-muted);
}
.gs-legal-meta strong {
	color: var(--gs-black);
	font-weight: 600;
}

/* Body layout */
.gs-legal-body {
	padding: 80px 0 120px;
}
.gs-legal-layout {
	display: grid;
	grid-template-columns: 220px 1fr;
	gap: 80px;
	align-items: start;
}

/* Table of contents */
.gs-legal-toc {
	position: sticky;
	top: 96px;
}
.gs-legal-toc__label {
	font-family: var(--gs-font-mono);
	font-size: 10px;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--gs-muted);
	margin: 0 0 16px;
}
.gs-legal-toc__list {
	list-style: none;
	padding: 0;
	margin: 0 0 40px;
	display: flex;
	flex-direction: column;
	gap: 4px;
	counter-reset: toc-counter;
}
.gs-legal-toc__list li {
	counter-increment: toc-counter;
}
.gs-legal-toc__list a {
	font-size: 0.8rem;
	color: var(--gs-muted);
	text-decoration: none;
	transition: color 0.2s;
	line-height: 1.5;
	display: block;
	padding: 3px 0;
}
.gs-legal-toc__list a:hover {
	color: var(--gs-black);
}
.gs-legal-toc__other a {
	font-size: 0.8rem;
	font-weight: 500;
	color: var(--gs-black);
	text-decoration: none;
	transition: color 0.2s;
}
.gs-legal-toc__other a:hover {
	color: var(--gs-ice);
}

/* Content */
.gs-legal-content {
	max-width: 720px;
}
.gs-legal-intro {
	font-size: 1rem;
	color: var(--gs-muted);
	line-height: 1.8;
	margin: 0 0 16px;
}
.gs-legal-content section {
	padding: 48px 0 0;
	border-top: 1px solid var(--gs-border);
	margin-top: 48px;
}
.gs-legal-content section:first-of-type {
	margin-top: 56px;
}
.gs-legal-content h2 {
	font-size: 1.15rem !important;
	font-weight: 700 !important;
	letter-spacing: -0.01em !important;
	color: var(--gs-black) !important;
	margin: 0 0 20px !important;
	line-height: 1.3 !important;
}
.gs-legal-content h3 {
	font-size: 0.9rem !important;
	font-weight: 600 !important;
	letter-spacing: 0.04em !important;
	text-transform: uppercase !important;
	color: var(--gs-black) !important;
	margin: 28px 0 12px !important;
}
.gs-legal-content p {
	font-size: 0.9375rem;
	color: var(--gs-muted);
	line-height: 1.8;
	margin: 0 0 16px;
}
.gs-legal-content ul,
.gs-legal-content ol {
	padding-left: 20px;
	margin: 0 0 16px;
	display: flex;
	flex-direction: column;
	gap: 6px;
}
.gs-legal-content li {
	font-size: 0.9375rem;
	color: var(--gs-muted);
	line-height: 1.7;
}
.gs-legal-content a {
	color: var(--gs-black);
	text-underline-offset: 3px;
	transition: color 0.2s;
}
.gs-legal-content a:hover {
	color: var(--gs-ice);
}
.gs-legal-contact-block {
	font-size: 0.9375rem;
	color: var(--gs-muted);
	line-height: 1.9;
	padding: 24px 28px;
	border: 1px solid var(--gs-border);
	border-radius: 2px;
	margin-top: 8px;
}
.gs-legal-contact-block strong {
	color: var(--gs-black);
	font-weight: 600;
}

/* Responsive */
@media (max-width: 900px) {
	.gs-legal-layout {
		grid-template-columns: 1fr;
		gap: 48px;
	}
	.gs-legal-toc {
		position: static;
		border: 1px solid var(--gs-border);
		padding: 24px;
		border-radius: 2px;
	}
}
@media (max-width: 600px) {
	.gs-legal-hero { padding: 56px 0 40px; }
	.gs-legal-body { padding: 48px 0 80px; }
	.gs-legal-content section { padding-top: 36px; margin-top: 36px; }
}


/* ============================================================
   MOBILE — 480px pass
   (fills gaps not covered by existing breakpoints)
   ============================================================ */

@media (max-width: 480px) {

  /* ── Global section padding ── */
  .gs-section { padding-top: 48px; padding-bottom: 48px; }

  /* ── Hero ── */
  .gs-hero__inner { padding-top: 80px; padding-bottom: 40px; gap: 40px; }
  .gs-hero__scroll { display: none; }

  /* ── Hero reel ── */
  .gs-hero-reel { height: 52vw; min-height: 200px; }

  /* ── Marquee ── */
  .gs-marquee-inner { gap: 24px; }
  .gs-marquee-inner span { font-size: 9px; }

  /* ── About ── */
  .gs-home-about__lead p { font-size: 15px; }
  .gs-home-about__values { gap: 24px; }

  /* ── Work cards ── */
  .gs-home-work__header { margin-bottom: 28px; }
  .gs-home-work__card-title { font-size: 15px !important; }

  /* ── Services stacked ── */
  .gs-home-services__stacked-item { padding: 18px 0; }
  .gs-home-services__stacked-name { font-size: 22px; }
  .gs-home-services__header { margin-bottom: 32px; }

  /* ── Blog grid ── */
  .gs-home-blog .ct-container { padding-top: 48px; padding-bottom: 48px; }

  /* ── CTA ── */
  .gs-home-cta { padding: 56px 0; }
  .gs-home-cta__heading { font-size: 26px !important; }

  /* ── Page hero (work + services) ── */
  .gs-page-hero { padding: 48px 0 28px; }
  .gs-page-hero__title { font-size: 48px !important; }

  /* ── Work archive ── */
  .gs-work-archive-section { padding-bottom: 48px; }
  .gs-work-card__title { font-size: 1.1rem !important; }
  .gs-work-card__excerpt { font-size: 0.82rem; }

  /* ── Services detail ── */
  .gs-service-item { padding: 36px 0; gap: 14px; }
  .gs-process-step { padding: 28px 20px; }
  .gs-process-step__name { font-size: 17px !important; }

  /* ── Single project ── */
  .gs-project-header { padding: 48px 0 40px; }
  .gs-project-header__inner { gap: 28px; }
  .gs-project-hero-img { aspect-ratio: 16/10; }
  .gs-project-related__header { flex-direction: column; gap: 12px; }

  /* ── Footer ── */
  .gs-footer__wordmark span { font-size: 30vw; }
  .gs-footer__bottom-links { gap: 16px; }

  /* ── Blog archive ── */
  .gs-blog-featured > a { grid-template-columns: 1fr; }
  .gs-blog-featured__body { padding: 28px 24px 32px; }
  .gs-blog-grid { grid-template-columns: 1fr; }

  /* ── Contact ── */
  .gs-faq-q { font-size: 0.9rem; }
}
