/* ============================================================
   GHAITH&JAD — Website UI kit styles
   Inspired by Tsubame's layout vocabulary, expressed through
   the GHAITH&JAD brand system.
   ============================================================ */

@import url('colors_and_type.css');

/* ============================================================
   MOTION — global rules
   No animation > 600ms. Subtle and functional.
   ============================================================ */

/* Scroll reveals are driven by GSAP ScrollTrigger (see motion.js).
   We set an initial opacity:0 to prevent FOUC before GSAP binds. */
[data-reveal] { opacity: 0; }
[data-reveal-bound] { }

/* Page transition — opacity 0→1, 400ms ease-in-out on mount */
html {
  scroll-behavior: smooth;
  overflow-y: scroll;
  background: var(--color-bg);
  color: var(--color-fg);
  /* Enable smooth momentum scrolling for WebKit/Blink containers */
  -webkit-overflow-scrolling: touch;
  scroll-padding-top: 80px; /* Protects our header layout during anchor jumps */
}

/* Lenis layout reset — lock the physics cleanly */
html.lenis, html.lenis body {
  height: auto;
}
html.lenis {
  scroll-behavior: auto !important;
}

.gj-page-fade {
  animation: gj-page-fade 400ms ease-in-out both;
}
@keyframes gj-page-fade {
  from { opacity: 0; }
  to   { opacity: 1; }
}

/* Page transitions wrapper (Fade Out / Fade In) */
.gj-page-wrap {
  position: relative;
  width: 100%;
  will-change: opacity;
  transition: opacity 300ms ease;
}
.gj-page-enter {
  opacity: 1;
}
.gj-page-exit {
  opacity: 0;
}

/* Respect reduced motion */
@media (prefers-reduced-motion: reduce) {
  [data-reveal] { opacity: 1 !important; transform: none !important; }
  .gj-page-fade { animation: none; }
  * { animation-duration: 1ms !important; transition-duration: 1ms !important; }
}


/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  position: relative;
  width: 100%;
  margin: 0;
  padding: 0;
  background: var(--color-bg);
  color: var(--color-fg);
  font-family: var(--font-body);
  font-size: var(--fs-body);
  line-height: var(--lh-body);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  /* Prevent the inline-block baseline gap on stacked images / inline content
     bleeding through into our layouts. */
  text-rendering: optimizeLegibility;
}
button { font: inherit; cursor: pointer; background: none; border: 0; color: inherit; padding: 0; }
a { color: inherit; text-decoration: none; }
img {
  display: block;
  max-width: 100%;
  vertical-align: top; /* kill baseline gap */
}
h1, h2, h3, h4 { margin: 0; font-weight: var(--fw-regular); }
p { margin: 0; }
ul, ol { margin: 0; padding: 0; list-style: none; }

/* ---------- Atoms ---------- */
.gj-amp { font-weight: var(--fw-light); }

.gj-eyebrow {
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--color-fg);
  font-weight: var(--fw-medium);
  line-height: 1.4;
}
.gj-eyebrow--light { color: rgba(253, 247, 242, 0.9); }

.gj-arrow {
  display: inline-block;
  transition: transform 200ms ease;
  margin-left: 6px;
}
.gj-arrow-cta {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: var(--fw-regular);
  color: var(--color-fg-strong);
  display: inline-flex;
  align-items: baseline;
  cursor: pointer;
  transition: color 200ms ease;
  letter-spacing: 0.01em;
}
.gj-arrow-cta:hover { color: var(--color-primary); }
.gj-arrow-cta:hover .gj-arrow { transform: translateX(4px); }
.gj-arrow-cta--light { color: #FDF7F2; }
.gj-arrow-cta--light:hover { color: #FDF7F2; opacity: 0.85; }

/* ============================================================
   ADAPTIVE NAV
   Three states: vertical (top of page), horizontal (scroll up),
   hidden (scroll down).
   ============================================================ */
.gj-anav {
  position: fixed;
  z-index: 60;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px 64px;
  background: transparent;
  color: #FDF7F2;
  transition: background 0.3s ease, color 0.3s ease;
  pointer-events: auto;
}

.gj-anav__mark {
  font-family: var(--font-display);
  font-weight: var(--fw-medium);
  font-size: 18px;
  letter-spacing: 0.28em;
  white-space: nowrap;
  color: inherit;
  transition: color 0.3s ease;
}
.gj-anav__mark .gj-amp { font-weight: var(--fw-light); letter-spacing: 0; padding: 0 0.05em; }

.gj-anav__links {
  display: flex;
  align-items: center;
  flex-direction: row;
  gap: 20px;
}

.gj-anav__link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  letter-spacing: 0.24em;
  color: inherit;
  cursor: pointer;
  padding: 6px 0;
  transition: color 0.3s ease;
  white-space: nowrap;
}
.gj-anav__link:hover { opacity: 0.85; }

.gj-anav__box {
  display: inline-flex;
  align-items: center;
  font-family: var(--font-body);
  font-size: 13px;
  letter-spacing: 0;
  line-height: 1;
  font-feature-settings: "tnum";
}
.gj-anav__bracket {
  display: inline-block;
  font-weight: var(--fw-regular);
  transition: transform 180ms ease;
}
.gj-anav__dot {
  display: inline-block;
  width: 10px;
  text-align: center;
  color: #FDF7F2;
  font-size: 16px;
  line-height: 0.5;
  position: relative;
  top: -2px;
  opacity: 0;
  transition: opacity 180ms ease, color 0.3s ease;
}
.gj-anav__link:hover .gj-anav__dot,
.gj-anav__link.is-active .gj-anav__dot { opacity: 1; }
.gj-anav__link:hover .gj-anav__bracket:first-child  { transform: translateX(-3px); }
.gj-anav__link:hover .gj-anav__bracket:last-child   { transform: translateX(3px); }

/* ---- LAYOUT STATES (vertical stacked at home top, horizontal elsewhere) ---- */
.gj-anav--vertical {
  padding: 36px 64px;
  align-items: flex-start;
}
.gj-anav--vertical .gj-anav__links {
  flex-direction: column;
  align-items: flex-end;
  gap: 20px;
}

.gj-anav--horizontal {
  align-items: center;
}
.gj-anav--horizontal .gj-anav__links {
  flex-direction: row;
  gap: 20px;
}

/* ---- LIGHT STATE (when hero is scrolled out of view) ---- */
.gj-anav.navbar--light {
  background: rgba(253, 247, 242, 0.98); /* Premium opaque cream matching --color-bg */
  border-bottom: 1px solid var(--color-line-soft);
  color: var(--color-fg-strong);
  padding: 20px 64px;
}
.gj-anav.navbar--light .gj-anav__dot {
  color: var(--color-primary);
}

/* ---- MOBILE BURGER TOGGLE (hidden on desktop) ---- */
.gj-anav__burger {
  display: none;
  position: relative;
  width: 30px;
  height: 18px;
  padding: 0;
  margin: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  color: inherit;
  flex: 0 0 auto;
  z-index: 2;
}
.gj-anav__burger-line {
  position: absolute;
  left: 0;
  right: 0;
  height: 1.5px;
  background: currentColor;
  transition: transform 0.32s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.2s ease;
}
.gj-anav__burger-line:nth-child(1) { top: 4px; }
.gj-anav__burger-line:nth-child(2) { bottom: 4px; }
.gj-anav.is-menu-open .gj-anav__burger-line:nth-child(1) {
  transform: translateY(4px) rotate(45deg);
}
.gj-anav.is-menu-open .gj-anav__burger-line:nth-child(2) {
  transform: translateY(-4px) rotate(-45deg);
}

@media (max-width: 860px) {
  /* Force a clean single-row bar (logo + burger) regardless of scroll state */
  .gj-anav,
  .gj-anav--vertical,
  .gj-anav--horizontal {
    align-items: center;
    padding: 18px 24px;
  }
  .gj-anav.navbar--light {
    padding: 16px 24px;
  }
  .gj-anav__burger {
    display: block;
  }
  /* Keep wordmark + burger above the overlay and force dark ink when open */
  .gj-anav__mark { position: relative; z-index: 2; }
  .gj-anav.is-menu-open,
  .gj-anav.is-menu-open .gj-anav__mark {
    color: var(--color-fg-strong, #1a1a1a);
  }
  /* Full-screen slide-down overlay menu */
  .gj-anav__links,
  .gj-anav--vertical .gj-anav__links,
  .gj-anav--horizontal .gj-anav__links {
    position: fixed;
    inset: 0;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 4px;
    padding: 0 32px;
    background: var(--color-bg, #FDF7F2);
    color: var(--color-fg-strong, #1a1a1a);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-12px);
    transition: opacity 0.4s ease, transform 0.5s cubic-bezier(0.22, 1, 0.36, 1), visibility 0s linear 0.4s;
    pointer-events: none;
    z-index: 1;
  }
  .gj-anav.is-menu-open .gj-anav__links {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    transition: opacity 0.4s ease, transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
    pointer-events: auto;
  }
  /* Large editorial link rows inside the overlay */
  .gj-anav .gj-anav__link {
    color: var(--color-fg-strong, #1a1a1a);
    font-size: 13px;
    letter-spacing: 0.26em;
    padding: 16px 0;
    width: 100%;
    border-bottom: 1px solid var(--color-line-soft);
    gap: 14px;
    opacity: 0;
    transform: translateY(8px);
  }
  .gj-anav.is-menu-open .gj-anav__link {
    animation: gj-nav-item-in 0.5s cubic-bezier(0.22, 1, 0.36, 1) forwards;
  }
  .gj-anav.is-menu-open .gj-anav__link:nth-child(1) { animation-delay: 0.08s; }
  .gj-anav.is-menu-open .gj-anav__link:nth-child(2) { animation-delay: 0.13s; }
  .gj-anav.is-menu-open .gj-anav__link:nth-child(3) { animation-delay: 0.18s; }
  .gj-anav.is-menu-open .gj-anav__link:nth-child(4) { animation-delay: 0.23s; }
  .gj-anav.is-menu-open .gj-anav__link:nth-child(5) { animation-delay: 0.28s; }
  .gj-anav.is-menu-open .gj-anav__link:nth-child(6) { animation-delay: 0.33s; border-bottom: 0; }
  .gj-anav .gj-anav__link .gj-anav__dot { color: var(--color-primary); }
  .gj-anav .gj-anav__link.is-active .gj-anav__label { color: var(--color-primary); }
}

@keyframes gj-nav-item-in {
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 460px) {
  .gj-anav,
  .gj-anav--vertical,
  .gj-anav--horizontal,
  .gj-anav.navbar--light {
    padding-left: 20px;
    padding-right: 20px;
  }
}

/* ============================================================
   HERO — full-bleed slider with caption overlay
   Scrolls away normally with the page (no sticky pinning).
   ============================================================ */
.gj-hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 720px;
  overflow: hidden;
  background: #0c0c0c;
  z-index: 1;
  /* GPU promote — keeps the sticky layer composited, prevents repaint
     of the overlay during scroll. */
  will-change: transform;
  transform: translateZ(0);
  contain: layout paint style;
}
.gj-hero__stage { position: absolute; inset: 0; }

.gj-hero__slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0;
  transition: opacity 1500ms ease;
  pointer-events: none;
}
.gj-hero__slide.is-active { opacity: 1; }

.gj-hero__scrim {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(12,12,12,0.45) 0%, rgba(12,12,12,0) 22%, rgba(12,12,12,0) 50%, rgba(12,12,12,0.65) 100%);
  pointer-events: none;
}

/* Caption pinned bottom-left. Uses grid-stacking so the container
   grows to fit the tallest slide; all slides occupy the same cell. */
.gj-hero__caption {
  position: absolute;
  left: 64px;
  bottom: 100px;
  z-index: 3;
  width: min(620px, calc(100% - 128px));
  display: grid;
  grid-template-columns: 1fr;
  pointer-events: none;
}
.gj-hero__caption-slide {
  grid-area: 1 / 1;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 600ms cubic-bezier(0.22, 1, 0.36, 1), transform 600ms cubic-bezier(0.22, 1, 0.36, 1);
  display: flex;
  flex-direction: column;
  gap: 18px;
  pointer-events: none;
}
.gj-hero__caption-slide.is-active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
  transition-delay: 300ms;
}

.gj-hero__title {
  font-family: var(--font-display);
  font-size: clamp(48px, 5.4vw, 72px);
  line-height: 1.02;
  letter-spacing: -0.02em;
  font-weight: var(--fw-regular);
  color: #FDF7F2;
}
.gj-hero__sub {
  font-size: 14px;
  color: rgba(253, 247, 242, 0.85);
  letter-spacing: 0.04em;
}
.gj-hero__blurb {
  font-size: 16px;
  color: rgba(253, 247, 242, 0.92);
  max-width: 460px;
  line-height: 1.5;
}

/* Dots */
.gj-hero__dots {
  position: absolute;
  left: 50%;
  bottom: 44px;
  transform: translateX(-50%);
  display: flex;
  gap: 14px;
  z-index: 3;
}
.gj-hero__dot {
  width: 10px;
  height: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}
.gj-hero__dot span {
  display: block;
  width: 6px;
  height: 6px;
  background: rgba(253, 247, 242, 0.5);
  transition: background var(--dur-fast) var(--ease-out);
}
.gj-hero__dot.is-active span { background: #FDF7F2; }
.gj-hero__dot:hover span { background: rgba(253, 247, 242, 0.85); }

/* Side arrows — soft, only visible on hover */
.gj-hero__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 56px;
  height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: rgba(253, 247, 242, 0.7);
  font-size: 22px;
  z-index: 3;
  transition: color var(--dur-fast) var(--ease-out), opacity var(--dur-fast) var(--ease-out);
  opacity: 0.5;
}
.gj-hero__arrow:hover { color: #FDF7F2; opacity: 1; }
.gj-hero__arrow--prev { left: 32px; }
.gj-hero__arrow--next { right: 32px; }

/* ============================================================
   INTRO — centered narrow column on full-bleed cream
   ============================================================ */
.gj-intro {
  position: relative;
  z-index: 2;
  background: var(--color-bg);
  padding: 60px 64px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 24px;
  /* Composite-layer so the cream surface overlays the sticky hero cleanly. */
  will-change: transform;
  transform: translateZ(0);
  contain: layout paint style;
}
.gj-intro > * {
  width: 100%;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}
.gj-intro__eyebrow {
  margin-bottom: 8px;
}
.gj-intro__title {
  font-family: var(--font-display);
  font-size: clamp(38px, 10.5vw, 84px);
  line-height: 1.0;
  letter-spacing: -0.02em;
  font-weight: var(--fw-regular);
  color: var(--color-fg-strong);
}
.gj-intro__subtitle {
  font-family: var(--font-body);
  font-size: 18px;
  color: var(--color-fg);
  letter-spacing: 0.01em;
  margin-top: -16px;
}
.gj-intro__body {
  display: flex;
  flex-direction: column;
  gap: 28px;               /* paragraphes espacés — le texte respire */
  max-width: 540px;        /* bloc éditorial resserré, centré, qui respire */
  margin-bottom: 32px;     /* air sous le paragraphe */
  font-size: 16px;
  line-height: 1.8;        /* aligné sur --lh-body, calme japonais */
  color: var(--color-fg);
}
.gj-intro .gj-arrow-cta { margin-top: 8px; }

/* ============================================================
   PROJECT GRID
   ============================================================ */
.gj-grid {
  position: relative;
  z-index: 2;
  background: var(--color-bg);
  padding: 60px 64px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  will-change: transform;
  transform: translateZ(0);
  contain: layout paint style;
}
.gj-grid__head {
  display: flex;
  justify-content: flex-end;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--color-line);
}

.gj-grid__row { width: 100%; }
.gj-grid__row--trio {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: stretch;
}
.gj-grid__row--feature { display: block; }

.gj-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
  cursor: pointer;
  color: inherit;
  height: 100%;
  /* Stable card frame — prevents reflow when titles change length. */
  contain: layout style;
}
.gj-card__media {
  width: 100%;
  overflow: hidden;
  background: #EAE2D8;
  position: relative;
  /* Reserve space at the same dimensions regardless of img load state */
  flex-shrink: 0;
}
.gj-card__media::after {
  /* tiny inner gradient hint on hover for depth */
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(12, 12, 12, 0);
  transition: background var(--dur-med) var(--ease-out);
  pointer-events: none;
}
.gj-card:hover .gj-card__media::after { background: rgba(12, 12, 12, 0.05); }

.gj-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  will-change: opacity;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.gj-card:hover .gj-card__media img { transform: scale(1.03); }

/* Trio (3-up) — portrait */
.gj-card--trio .gj-card__media {
  aspect-ratio: 4 / 5;
}

/* Feature — landscape full width */
.gj-card--feature .gj-card__media {
  aspect-ratio: 16 / 9;
}

.gj-card__meta {
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
  /* The card grows to fill the grid track height; the meta block
     absorbs the difference so adjacent cards align at the same y. */
}
.gj-card__eyebrow {
  color: var(--color-fg-muted);
  font-weight: var(--fw-medium);
}
.gj-card__title {
  font-family: var(--font-display);
  font-size: 18px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  line-height: 1.3;
  font-weight: var(--fw-medium);
  color: var(--color-fg-strong);
  transition: color var(--dur-fast) var(--ease-out);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  word-break: break-word;
  overflow-wrap: break-word;
  min-height: calc(2 * 1.3em);
}
.gj-card__title--feature {
  font-size: clamp(28px, 3vw, 44px);
  letter-spacing: -0.015em;
  text-transform: none;
  font-weight: var(--fw-light);
  max-width: 760px;
  -webkit-line-clamp: 3;
  min-height: 0;
}
.gj-card:hover .gj-card__title { color: var(--color-primary); }

.gj-card__place {
  font-size: 14px;
  color: var(--color-fg-muted);
  letter-spacing: 0.02em;
}

/* Reserve fixed meta height so all cards in a row line up regardless
   of how long the title is. */
.gj-card--trio    .gj-card__meta { min-height: 96px; }
.gj-card--feature .gj-card__meta { min-height: 80px; }

/* ============================================================
   FOOTER
   ============================================================ */
.gj-footer {
  position: relative;
  z-index: 2;
  padding: 60px 64px;
  background: var(--color-bg);
  will-change: transform;
  transform: translateZ(0);
  contain: layout paint style;
}
.gj-footer__rule { height: 1px; background: var(--color-line); margin-bottom: 60px; }

.gj-footer__top {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 60px;
  flex-wrap: wrap;
  gap: 24px;
}
.gj-footer__mark {
  font-family: var(--font-display);
  font-size: clamp(40px, 11.5vw, 168px);
  font-weight: var(--fw-light);
  letter-spacing: -0.025em;
  line-height: 0.9;
  color: var(--color-fg-strong);
  white-space: nowrap;
}
.gj-footer__tagline {
  font-family: var(--font-body);
  font-size: 13px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--color-fg-muted);
  font-weight: var(--fw-medium);
  padding-bottom: 18px;
}

.gj-footer__cols {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 48px;
  padding-top: 48px;
  border-top: 1px solid var(--color-line-soft);
  margin-bottom: 80px;
}
.gj-footer__col {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.gj-footer__h {
  color: var(--color-fg-strong);
  margin-bottom: 6px;
}
.gj-footer__line {
  font-size: 15px;
  color: var(--color-fg-strong);
  letter-spacing: 0;
}
.gj-footer__line--muted { color: var(--color-fg-muted); }
.gj-footer__navlink {
  font-size: 15px;
  color: var(--color-fg-strong);
  padding: 2px 0;
  width: fit-content;
  transition: color var(--dur-fast) var(--ease-out);
}
.gj-footer__navlink:hover { color: var(--color-primary); }

.gj-footer__bottom {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--color-fg-muted);
  padding-top: 32px;
  border-top: 1px solid var(--color-line-soft);
}

/* ============================================================
   Selection / focus
   ============================================================ */
::selection { background: var(--color-primary); color: var(--color-bg); }
:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 3px;
}

/* ============================================================
   PROJECT DETAIL — Tsubame product-page layout
   ============================================================ */

.gj-pd { display: block; }

/* ---- Hero splitscreen ---- */
.gj-pd-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 100vh;
  background: var(--color-bg);
}

.gj-pd-hero__left {
  padding: 96px 64px 64px;
  display: flex;
  flex-direction: column;
  position: relative;
}

.gj-pd-hero__body {
  display: flex;
  flex-direction: column;
  gap: 80px;
  flex: 1;
  max-width: 560px;
}

.gj-pd-hero__top {
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.gj-pd-hero__eyebrow {
  color: var(--color-fg-strong);
  font-weight: var(--fw-medium);
}
.gj-pd-hero__title {
  font-family: var(--font-display);
  font-size: clamp(40px, 4.4vw, 56px);
  letter-spacing: 0.04em;
  line-height: 1.05;
  font-weight: var(--fw-medium);
  text-transform: uppercase;
  color: var(--color-fg-strong);
}
.gj-pd-hero__desc {
  font-size: 16px;
  line-height: 1.65;
  color: var(--color-fg);
  max-width: 480px;
}
.gj-pd-hero__cta { margin-top: 4px; }

/* Specs table — 5 stacked rows, hairline below each */
.gj-pd-specs {
  display: flex;
  flex-direction: column;
  margin: 0;
}
.gj-pd-specs__row {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: baseline;
  padding: 22px 0;
  border-bottom: 1px solid var(--color-line);
  gap: 16px;
}
.gj-pd-specs__row:first-child { border-top: 1px solid var(--color-line); }
.gj-pd-specs__label {
  font-family: var(--font-body);
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--color-fg);
  font-weight: var(--fw-medium);
  margin: 0;
}
.gj-pd-specs__value {
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--color-fg-strong);
  margin: 0;
  text-align: right;
  letter-spacing: 0.01em;
}

/* Right photo panel */
.gj-pd-hero__right {
  position: relative;
  overflow: hidden;
  background: #1a1a1a;
}
.gj-pd-hero__right img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 400ms ease;
}
.gj-pd-hero__right:hover img { transform: scale(1.03); }

/* ---- Centered text section ---- */
.gj-pd-text {
  padding: 160px 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 36px;
  max-width: 880px;
  margin: 0 auto;
}
.gj-pd-text__label {
  color: var(--color-fg-strong);
  font-size: 13px;
  letter-spacing: 0.28em;
}
.gj-pd-text__body {
  font-size: 18px;
  line-height: 1.65;
  color: var(--color-fg);
  max-width: 620px;
}

/* ---- Full-bleed horizontal drag-carousel gallery ---- */
.gj-pd-gallery {
  padding: 0 0 96px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 48px;
}
.gj-pd-gallery__viewport {
  width: 100%;
  overflow: hidden;
}
.gj-pd-gallery__track {
  display: flex;
  gap: 4px;
  overflow-x: scroll;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  cursor: grab;
  user-select: none;
  width: 100%;
}
.gj-pd-gallery__track::-webkit-scrollbar { display: none; }
.gj-pd-gallery__track.dragging {
  cursor: grabbing;
  scroll-behavior: auto !important;
}
.gj-pd-gallery__cell {
  flex: 0 0 calc(25vw - 3px);
  aspect-ratio: 3 / 4;
  margin: 0;
  overflow: hidden;
  background: #EAE2D8;
  cursor: pointer;
}
.gj-pd-gallery__cell img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 400ms ease;
  pointer-events: none;
}
.gj-pd-gallery__cell:hover img { transform: scale(1.03); }

.gj-pd-gallery__dots {
  display: flex;
  justify-content: center;
  gap: 14px;
}
.gj-pd-gallery__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: none;
  background: #CDC5BB;
  cursor: pointer;
  padding: 0;
  transition: background var(--dur-fast) var(--ease-out), transform var(--dur-fast) var(--ease-out);
}
.gj-pd-gallery__dot.is-active { background: #333; transform: scale(1.2); }
.gj-pd-gallery__dot:hover { background: var(--color-fg); }

/* ---- Lightbox (effet tableaux) ---- */
.gj-lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-bg, #FDF7F2);
  cursor: zoom-out;
  overflow: hidden;
  user-select: none;
}
.gj-lightbox__tableaux-frame {
  position: relative;
  background: #FFFFFF;
  padding: 36px;
  box-shadow: 0 32px 80px -20px rgba(12, 12, 12, 0.12);
  border: 1px solid rgba(0, 0, 0, 0.05);
  max-width: 90vw;
  max-height: 80vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
  cursor: default;
  transition: opacity 300ms ease, transform 300ms ease;
}
.gj-lightbox__img {
  max-width: 100%;
  max-height: calc(80vh - 130px);
  object-fit: contain;
  display: block;
  user-select: none;
  pointer-events: none;
}
.gj-lightbox__caption {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  text-align: center;
  max-width: 100%;
}
.gj-lightbox__caption-title {
  font-family: var(--font-body);
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-fg-strong, #0C0C0C);
}
.gj-lightbox__caption-text {
  font-family: var(--font-body);
  font-size: 12px;
  letter-spacing: 0.04em;
  color: var(--color-fg-muted, #6E6A66);
}
.gj-lightbox__img--transition {
  animation: gj-img-fade 350ms cubic-bezier(0.22, 1, 0.36, 1) both;
}
@keyframes gj-img-fade {
  from { opacity: 0; transform: scale(0.98); }
  to   { opacity: 1; transform: scale(1); }
}
.gj-lightbox__close {
  position: fixed;
  top: 28px;
  right: 32px;
  z-index: 220;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  transition: opacity 200ms ease, transform 200ms ease;
}
.gj-lightbox__close:hover { opacity: 0.5; transform: scale(1.1); }
.gj-lightbox__close svg {
  width: 28px;
  height: 28px;
  stroke: var(--color-fg-strong, #0C0C0C);
  stroke-width: 1.5;
  fill: none;
}
.gj-lightbox__nav {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  z-index: 220;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.04);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 50%;
  cursor: pointer;
  color: var(--color-fg-strong, #0C0C0C);
  font-size: 20px;
  transition: opacity 300ms ease, background 200ms ease, transform 200ms ease;
  padding: 0;
}
.gj-lightbox__nav:hover {
  background: rgba(0, 0, 0, 0.08);
  transform: translateY(-50%) scale(1.08);
}
.gj-lightbox__nav--prev { left: 24px; }
.gj-lightbox__nav--next { right: 24px; }
.gj-lightbox__nav svg {
  width: 22px;
  height: 22px;
  stroke: var(--color-fg-strong, #0C0C0C);
  stroke-width: 2;
  fill: none;
}
.gj-lightbox__counter {
  position: fixed;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 220;
  font-family: var(--font-body);
  font-size: 13px;
  letter-spacing: 0.15em;
  color: var(--color-fg-muted, #6E6A66);
  font-variant-numeric: tabular-nums;
  transition: opacity 300ms ease;
}
.gj-lightbox--entering { animation: gj-lb-enter 400ms ease-out both; }
.gj-lightbox--exiting { animation: gj-lb-exit 350ms ease-in both; pointer-events: none; }
.gj-lightbox--entering .gj-lightbox__tableaux-frame {
  animation: gj-frame-enter 450ms cubic-bezier(0.22, 1, 0.36, 1) both;
}
.gj-lightbox--exiting .gj-lightbox__tableaux-frame {
  animation: gj-frame-exit 350ms cubic-bezier(0.22, 1, 0.36, 1) both;
}
@keyframes gj-lb-enter { from { opacity: 0; } to { opacity: 1; } }
@keyframes gj-lb-exit  { from { opacity: 1; } to { opacity: 0; } }
@keyframes gj-frame-enter {
  from { opacity: 0; transform: scale(0.95) translateY(12px); }
  to   { opacity: 1; transform: scale(1) translateY(0); }
}
@keyframes gj-frame-exit {
  from { opacity: 1; transform: scale(1) translateY(0); }
  to   { opacity: 0; transform: scale(0.95) translateY(12px); }
}

/* ---- Responsive — detail ---- */
@media (max-width: 1024px) {
  .gj-pd-hero__left  { padding: 80px 32px 48px; }
  .gj-pd-hero__body  { gap: 56px; }
  .gj-pd-text        { padding: 96px 32px; }
}
@media (max-width: 720px) {
  .gj-pd-hero        { grid-template-columns: 1fr; min-height: auto; }
  .gj-pd-hero__right { height: 70vh; }
  .gj-pd-gallery__cell { flex: 0 0 calc(50vw - 2px); aspect-ratio: 3 / 4; }
  .gj-lightbox__tableaux-frame { padding: 20px; max-width: 92vw; }
  .gj-lightbox__img { max-height: calc(80vh - 40px); }
}

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 1024px) {
  .gj-nav { padding: 24px 32px; }
  .gj-nav__links { gap: 24px; }
  .gj-hero__caption { left: 32px; right: 32px; bottom: 80px; }
  .gj-grid { padding: 0 32px 96px; }
  .gj-footer { padding: 0 32px 32px; }
  .gj-intro { padding-left: 32px; padding-right: 32px; }
}
@media (max-width: 720px) {
  .gj-nav__links { display: none; }
  .gj-hero { min-height: 560px; }
  .gj-hero__title { font-size: 40px; }
  .gj-grid__row--trio { grid-template-columns: 1fr; gap: 48px; }
  .gj-footer__cols { grid-template-columns: 1fr 1fr; gap: 32px; }
  .gj-footer__bottom { flex-direction: column; gap: 8px; }
  .gj-intro { padding-left: 24px; padding-right: 24px; }
  .gj-grid { padding-left: 24px; padding-right: 24px; }
  .gj-footer { padding-left: 24px; padding-right: 24px; }
}
@media (max-width: 480px) {
  .gj-footer__cols { grid-template-columns: 1fr; gap: 28px; }
  .gj-footer__rule { margin-bottom: 36px; }
}

/* ============================================================
   SCROLL CHOREOGRAPHY — line-draw + scroll lock
   ============================================================ */
[data-line] { transform-origin: left center; }
html.gj-no-scroll, html.gj-no-scroll body { overflow: hidden; }

/* ============================================================
   HORIZONTAL SHOWCASE — pinned "Walk through the work"
   Pinned by motion.js (__gjBuildScroll). The track translates
   horizontally as the page scrolls past this section.
   ============================================================ */
.gj-showcase {
  position: relative;
  z-index: 2;
  height: 100vh;
  background: var(--color-bg);
  overflow: hidden;
  will-change: transform;
  transform: translateZ(0);
}
.gj-showcase__viewport {
  height: 100%;
  width: 100%;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.gj-showcase__track {
  display: flex;
  align-items: center;
  gap: clamp(28px, 4vw, 72px);
  height: 100%;
  padding: 0 64px;
  will-change: transform;
}

/* Lead panel */
.gj-showcase__lead {
  flex: 0 0 auto;
  width: min(40vw, 440px);
  display: flex;
  flex-direction: column;
  gap: 22px;
  padding-right: clamp(16px, 3vw, 48px);
}
.gj-showcase__lead-title {
  font-family: var(--font-display);
  font-size: clamp(40px, 4.4vw, 64px);
  line-height: 1.0;
  letter-spacing: -0.02em;
  font-weight: var(--fw-regular);
  color: var(--color-fg-strong);
}
.gj-showcase__lead-rule {
  width: 64px;
  height: 1px;
  background: var(--color-line);
}
.gj-showcase__lead-sub {
  max-width: 320px;
  font-size: 16px;
  line-height: 1.6;
  color: var(--color-fg);
}
.gj-showcase__counter {
  font-family: var(--font-mono);
  font-variant-numeric: tabular-nums;
  font-size: 14px;
  letter-spacing: 0.12em;
  color: var(--color-fg-strong);
  margin-top: 6px;
}
.gj-showcase__hint {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--color-fg-muted);
}
.gj-showcase__hint-track {
  position: relative;
  width: 40px;
  height: 1px;
  background: var(--color-line-soft);
  overflow: hidden;
}
.gj-showcase__hint-track span {
  position: absolute;
  inset: 0;
  width: 40%;
  background: var(--color-primary);
  animation: gj-hint 1.8s var(--ease-inout) infinite;
}
@keyframes gj-hint {
  0%   { transform: translateX(-110%); }
  100% { transform: translateX(260%); }
}

/* Plates */
.gj-showcase__plate {
  flex: 0 0 auto;
  width: clamp(300px, 38vw, 540px);
  display: flex;
  flex-direction: column;
  gap: 20px;
  color: inherit;
  opacity: 0.46;
  transition: opacity 520ms var(--ease-out);
}
.gj-showcase__plate.is-active { opacity: 1; }
.gj-showcase__plate-media {
  position: relative;
  width: 100%;
  height: 56vh;
  overflow: hidden;
  background: #EAE2D8;
}
.gj-showcase__plate-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 620ms var(--ease-out);
}
.gj-showcase__plate:hover .gj-showcase__plate-media img { transform: scale(1.04); }
.gj-showcase__plate-num {
  position: absolute;
  left: 16px;
  top: 14px;
  font-family: var(--font-mono);
  font-variant-numeric: tabular-nums;
  font-size: 12px;
  letter-spacing: 0.1em;
  color: #FDF7F2;
  mix-blend-mode: difference;
}
.gj-showcase__plate-meta {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.gj-showcase__plate-title {
  font-family: var(--font-display);
  font-size: 18px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  line-height: 1.3;
  font-weight: var(--fw-medium);
  color: var(--color-fg-strong);
  transition: color var(--dur-fast) var(--ease-out);
}
.gj-showcase__plate:hover .gj-showcase__plate-title { color: var(--color-primary); }
.gj-showcase__plate-place {
  font-size: 14px;
  color: var(--color-fg-muted);
  letter-spacing: 0.02em;
}
.gj-showcase__plate:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 8px;
  opacity: 1;
}

/* End cap */
.gj-showcase__end {
  flex: 0 0 auto;
  width: clamp(180px, 22vw, 300px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
}
.gj-showcase__end-line {
  width: 120px;
  height: 1px;
  background: var(--color-line);
}

/* Reduced-motion fallback — no pin, plain horizontal scroller */
.gj-showcase.is-static {
  height: auto;
  padding: 80px 0;
}
.gj-showcase.is-static .gj-showcase__viewport { overflow-x: auto; }
.gj-showcase.is-static .gj-showcase__plate { opacity: 1; }

@media (max-width: 1024px) {
  .gj-showcase__track { padding: 0 32px; }
}
@media (max-width: 720px) {
  .gj-showcase__lead { width: 78vw; }
  .gj-showcase__plate { width: 74vw; }
  .gj-showcase__plate-media { height: 50vh; }
}

/* ============================================================
   INQUIRY / CONTACT OVERLAY
   ============================================================ */
.gj-inq {
  position: fixed;
  inset: 0;
  z-index: 200;
  pointer-events: none;
}
.gj-inq.is-open { pointer-events: auto; }

.gj-inq__scrim {
  position: absolute;
  inset: 0;
  background: rgba(12, 12, 12, 0.42);
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 480ms var(--ease-out);
}
.gj-inq.is-open .gj-inq__scrim {
  opacity: 1;
  pointer-events: auto;
}

.gj-inq__panel {
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  width: min(520px, 100%);
  background: var(--color-bg-elev);
  border-left: 1px solid var(--color-line-soft);
  box-shadow: var(--shadow-lift);
  transform: translateX(100%);
  transition: transform 560ms var(--ease-out);
  display: flex;
  flex-direction: column;
}
.gj-inq.is-open .gj-inq__panel { transform: translateX(0); }

.gj-inq__head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 28px 40px;
  border-bottom: 1px solid var(--color-line-soft);
  flex-shrink: 0;
}
.gj-inq__close {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-fg-strong);
  transition: color var(--dur-fast) var(--ease-out);
}
.gj-inq__close:hover { color: var(--color-primary); }
.gj-inq__close-x { font-size: 20px; line-height: 1; }

.gj-inq__scroll {
  flex: 1;
  overflow-y: auto;
  padding: 44px 40px;
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.gj-inq__title {
  font-family: var(--font-display);
  font-size: clamp(30px, 3.4vw, 42px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  font-weight: var(--fw-light);
  color: var(--color-fg-strong);
}

.gj-inq__form { display: flex; flex-direction: column; gap: 28px; }
.gj-inq__scope { display: flex; flex-direction: column; gap: 14px; }
.gj-inq__scope-label { color: var(--color-fg-muted); }
.gj-inq__chips { display: flex; flex-wrap: wrap; gap: 10px; }
.gj-inq__chip {
  padding: 10px 18px;
  border: 1px solid var(--color-line-soft);
  font-family: var(--font-body);
  font-size: 13px;
  letter-spacing: 0.06em;
  color: var(--color-fg);
  background: transparent;
  transition: color var(--dur-fast) var(--ease-out),
              border-color var(--dur-fast) var(--ease-out),
              background var(--dur-fast) var(--ease-out);
}
.gj-inq__chip:hover { border-color: var(--color-line); color: var(--color-fg-strong); }
.gj-inq__chip.is-selected {
  background: var(--color-fg-strong);
  border-color: var(--color-fg-strong);
  color: var(--color-bg);
}

.gj-inq__row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.gj-inq__field { display: flex; flex-direction: column; gap: 8px; }
.gj-inq__label {
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-fg-muted);
}
.gj-inq__input {
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--color-fg-strong);
  background: var(--color-bg-sunk);
  border: 1px solid transparent;
  border-bottom: 1px solid var(--color-line-soft);
  padding: 12px 14px;
  transition: border-color var(--dur-fast) var(--ease-out), background var(--dur-fast) var(--ease-out);
}
.gj-inq__input:focus {
  outline: none;
  border-bottom-color: var(--color-primary);
  background: #fff;
}
.gj-inq__textarea { resize: vertical; min-height: 96px; }

.gj-inq__submit {
  align-self: flex-start;
  display: inline-flex;
  align-items: baseline;
  padding: 14px 26px;
  background: var(--color-primary);
  color: #fff;
  font-size: 14px;
  letter-spacing: 0.04em;
  transition: background var(--dur-fast) var(--ease-out);
}
.gj-inq__submit:hover { background: var(--color-primary-deep); }
.gj-inq__submit .gj-arrow { color: #fff; }

.gj-inq__contact {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  padding-top: 32px;
  border-top: 1px solid var(--color-line-soft);
}
.gj-inq__contact-h { color: var(--color-fg-strong); margin-bottom: 8px; }
.gj-inq__contact-line { font-size: 14px; color: var(--color-fg-strong); letter-spacing: 0.01em; }
.gj-inq__contact-line--muted { color: var(--color-fg-muted); }

.gj-inq__done { display: flex; flex-direction: column; gap: 20px; }
.gj-inq__done-body {
  font-size: 16px;
  line-height: 1.6;
  color: var(--color-fg);
  max-width: 380px;
}

@media (max-width: 560px) {
  .gj-inq__row { grid-template-columns: 1fr; }
  .gj-inq__contact { grid-template-columns: 1fr; }
  .gj-inq__scroll { padding: 36px 28px; }
  .gj-inq__head { padding: 24px 28px; }
}

/* ============================================================
   PROJECT C-GRID — "inverted C" rhythm (Home / landing page)
   Each block = one tall feature portrait on one side + two square
   images side-by-side on the other. Side alternates per block.
   ============================================================ */
.gj-cgrid {
  position: relative;
  z-index: 2;
  background: var(--color-bg);
  padding: clamp(72px, 9vw, 140px) clamp(24px, 5vw, 96px) clamp(96px, 12vw, 200px);
  will-change: transform;
  transform: translateZ(0);
  contain: layout paint style;
}

.gj-cgrid__head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 24px;
  padding-bottom: 22px;
  margin-bottom: clamp(96px, 11vw, 168px);
  border-bottom: 1px solid var(--color-line);
}
.gj-cgrid__eyebrow {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--color-fg-muted);
  font-weight: var(--fw-medium);
  line-height: 1.4;
}
.gj-cgrid__eyebrow--strong { color: var(--color-fg-strong); }

.gj-cgrid__blocks {
  display: flex;
  flex-direction: column;
  gap: clamp(96px, 11vw, 168px);
}

/* ---- Block (inverted C) ---- */
.gj-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(18px, 1.8vw, 28px);
  align-items: start;
}
/* Mirrored C-grid: small pair starts on the left, feature on the right. */
.gj-block--left .gj-block__feature  { order: 2; }
.gj-block--left .gj-block__pair     { order: 1; }
.gj-block--right .gj-block__feature { order: 1; }
.gj-block--right .gj-block__pair    { order: 2; }

.gj-block__pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(14px, 1.4vw, 22px);
  align-items: start;
}

/* ---- Card ---- */
.gj-c { display: block; color: inherit; cursor: pointer; }
.gj-c__media {
  width: 100%;
  overflow: hidden;
  background: #ECE6DF;
}
.gj-c__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  will-change: opacity;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.gj-c:hover .gj-c__media img,
.gj-c:focus-visible .gj-c__media img { opacity: 0.82; transform: scale(1.02); }

.gj-c--feature .gj-c__media { aspect-ratio: 3 / 4; }
.gj-c--pair .gj-c__media { aspect-ratio: 3 / 4; }

.gj-c__meta {
  padding-top: 22px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.gj-c__cat {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-fg-muted);
  font-weight: var(--fw-medium);
  line-height: 1.4;
  margin: 0;
}
.gj-c__title {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: var(--fw-regular);
  letter-spacing: 0.13em;
  text-transform: uppercase;
  line-height: 1.35;
  color: var(--color-fg-strong);
  margin: 0;
  transition: color var(--dur-fast) var(--ease-out);
  text-wrap: balance;
}
.gj-c:hover .gj-c__title { color: var(--color-primary); }
.gj-c--feature .gj-c__title { font-size: 19px; }
.gj-c:focus-visible { outline: 2px solid var(--color-primary); outline-offset: 6px; }

.gj-cgrid__foot {
  margin-top: clamp(64px, 8vw, 120px);
  padding-top: clamp(28px, 3vw, 44px);
  border-top: 1px solid var(--color-line);
  display: flex;
  justify-content: center;
}

@media (max-width: 1024px) {
  .gj-cgrid { padding-left: 32px; padding-right: 32px; }
}
@media (max-width: 900px) {
  .gj-block--left,
  .gj-block--right { grid-template-columns: 1fr; gap: clamp(40px, 9vw, 64px); }
  .gj-block--left .gj-block__feature,
  .gj-block--right .gj-block__feature { order: 1; }
  .gj-block--left .gj-block__pair,
  .gj-block--right .gj-block__pair { order: 2; }
  .gj-c--feature .gj-c__media { aspect-ratio: 4 / 5; }
}
@media (max-width: 560px) {
  .gj-block__pair { gap: clamp(16px, 5vw, 28px); }
  .gj-c--pair .gj-c__media { aspect-ratio: 4 / 5; }
}

/* ============================================================
   PROJECTS PAGE HEADER
   ============================================================ */
.gj-projhead {
  background: var(--color-bg);
  padding: clamp(140px, 16vw, 220px) 64px clamp(40px, 5vw, 72px);
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.gj-projhead__eyebrow { color: var(--color-fg-muted); font-weight: var(--fw-medium); }
.gj-projhead__title {
  font-family: var(--font-display);
  font-size: clamp(54px, 8vw, 120px);
  line-height: 0.96;
  letter-spacing: -0.03em;
  font-weight: var(--fw-light);
  color: var(--color-fg-strong);
}
.gj-projhead__sub {
  font-size: 17px;
  line-height: 1.5;
  color: var(--color-fg);
  max-width: 440px;
}
@media (max-width: 720px) {
  .gj-projhead { padding-left: 32px; padding-right: 32px; }
}

/* ============================================================
   METHOD SECTION — landing closer (screen 2)
   Left tall image · intentional white gap · right small image + text.
   ============================================================ */
.gj-method {
  background: var(--color-bg);
  padding: clamp(96px, 13vw, 200px) 64px clamp(96px, 13vw, 200px);
  display: grid;
  grid-template-columns: 1.15fr 0.32fr 0.9fr;
  gap: clamp(20px, 2vw, 40px);
  align-items: start;
}
.gj-method__left { width: 100%; overflow: hidden; background: #EAE2D8; }
.gj-method__left img {
  width: 100%; height: 100%; display: block; object-fit: cover;
  aspect-ratio: 3 / 4;
  transition: opacity 460ms var(--ease-out);
}
.gj-method__left:hover img { opacity: 0.9; }

.gj-method__gap { min-height: 1px; }

.gj-method__right {
  display: flex;
  flex-direction: column;
  gap: clamp(28px, 3vw, 48px);
  padding-top: clamp(40px, 7vw, 110px);
}
.gj-method__img { width: 100%; overflow: hidden; background: #EAE2D8; }
.gj-method__img img {
  width: 100%; height: 100%; display: block; object-fit: cover;
  aspect-ratio: 4 / 3;
  transition: opacity 460ms var(--ease-out);
}
.gj-method__img:hover img { opacity: 0.9; }

.gj-method__text { display: flex; flex-direction: column; gap: 18px; }
.gj-method__eyebrow { color: var(--color-fg-muted); font-weight: var(--fw-medium); }
.gj-method__body {
  font-size: 16px;
  line-height: 1.62;
  color: var(--color-fg);
  text-wrap: pretty;
}
.gj-method__cta { margin-top: 6px; }

@media (max-width: 900px) {
  .gj-method {
    grid-template-columns: 1fr 1fr;
    gap: clamp(20px, 4vw, 40px);
  }
  .gj-method__gap { display: none; }
  .gj-method__right { padding-top: clamp(40px, 10vw, 90px); }
}
@media (max-width: 600px) {
  .gj-method {
    grid-template-columns: 1fr;
    padding-left: 32px; padding-right: 32px;
    gap: 40px;
  }
  .gj-method__right { padding-top: 0; }
}

/* ============================================================
   STUDIO PAGE STYLES
   Japanese-minimalist, warm, spacious, and quiet-luxury.
   ============================================================ */

.gj-st {
  background: var(--color-bg);
}

/* 1. Fullscreen Hero */
.gj-st-hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 720px;
  overflow: hidden;
  z-index: 1;
}
.gj-st-hero__img-frame {
  position: absolute;
  inset: 0;
  background: #0c0c0c;
}
.gj-st-hero__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.gj-st-hero__scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(12,12,12,0.3) 0%, rgba(12,12,12,0) 30%, rgba(12,12,12,0) 70%, rgba(12,12,12,0.45) 100%);
  pointer-events: none;
}
.gj-st-hero__caption {
  position: absolute;
  left: 64px;
  bottom: 100px;
  z-index: 3;
  display: flex;
  flex-direction: column;
  gap: 16px;
  color: #FDF7F2;
}
.gj-st-hero__eyebrow {
  color: rgba(253, 247, 242, 0.95);
  font-weight: var(--fw-medium);
  letter-spacing: 0.24em;
}
.gj-st-hero__title {
  font-family: var(--font-display);
  font-size: clamp(32px, 5.4vw, 56px);
  line-height: 1.05;
  letter-spacing: 0.04em;
  font-weight: var(--fw-light);
  color: #FAF7F2;
  text-transform: uppercase;
  margin: 0;
}

/* 2. Section "L'Origine" — Fullscreen path image + text overlay */
.gj-st-origin {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 720px;
  overflow: hidden;
  z-index: 1;
}
.gj-st-origin__img-frame {
  position: absolute;
  inset: 0;
  background: #0c0c0c;
}
.gj-st-origin__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.gj-st-origin__scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(12,12,12,0) 30%, rgba(12,12,12,0.65) 100%);
  pointer-events: none;
}
.gj-st-origin__caption {
  position: absolute;
  left: 64px;
  bottom: 100px;
  z-index: 3;
  display: flex;
  flex-direction: column;
  gap: 22px;
  max-width: 580px;
  color: #FAF7F2;
}
.gj-st-origin__eyebrow {
  color: rgba(253, 247, 242, 0.95);
  font-weight: var(--fw-medium);
  letter-spacing: 0.24em;
}
.gj-st-origin__body {
  font-size: 16px;
  line-height: 1.85;
  color: rgba(250, 247, 242, 0.95);
  margin: 0;
  text-wrap: pretty;
  font-weight: 300;
}
.gj-st-origin__cta {
  width: fit-content;
  margin-top: 4px;
}

/* 3. Section "Philosophie" — Layout asymétrique 2 colonnes */
.gj-st-philosophy {
  background: #F5F0EB;
  padding: clamp(96px, 12vw, 192px) 64px;
}
.gj-st-philosophy__container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: clamp(40px, 6vw, 110px);
  align-items: start;
}
.gj-st-philosophy__col-left {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.gj-st-philosophy__img-left-frame {
  width: 100%;
  overflow: hidden;
  background: #EAE2D8;
}
.gj-st-philosophy__img-left {
  width: 100%;
  aspect-ratio: 1.25 / 1;
  object-fit: cover;
  display: block;
  transition: transform 400ms ease;
}
.gj-st-philosophy__img-left-frame:hover .gj-st-philosophy__img-left {
  transform: scale(1.02);
}
.gj-st-philosophy__text-left {
  display: flex;
  flex-direction: column;
  gap: 18px;
  max-width: 460px;
}
.gj-st-philosophy__eyebrow {
  color: var(--color-fg-muted);
  font-weight: var(--fw-medium);
}
.gj-st-philosophy__body {
  font-size: 16px;
  line-height: 1.75;
  color: var(--color-fg);
  margin: 0;
  text-wrap: pretty;
  font-weight: 300;
}

.gj-st-philosophy__col-right {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.gj-st-philosophy__header-right {
  display: flex;
  flex-direction: column;
  gap: 6px;
  text-align: right;
  align-self: flex-end;
}
.gj-st-philosophy__name {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: var(--fw-medium);
  color: var(--color-fg-strong);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.gj-st-philosophy__role {
  font-size: 11px;
  letter-spacing: 0.22em;
  color: var(--color-fg-muted);
}
.gj-st-philosophy__img-right-frame {
  width: 100%;
  overflow: hidden;
  background: #EAE2D8;
  margin-top: 60px;
}
.gj-st-philosophy__img-right {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  display: block;
  transition: transform 400ms ease;
}
.gj-st-philosophy__img-right-frame:hover .gj-st-philosophy__img-right {
  transform: scale(1.02);
}

/* 4. Section "Pourquoi" — Layout 50/50 strict */
.gj-st-why {
  background: #F5F0EB;
  padding: clamp(80px, 10vw, 140px) 64px clamp(96px, 12vw, 192px);
}
.gj-st-why__container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: center;
}
.gj-st-why__left {
  width: 100%;
  overflow: hidden;
  background: #EAE2D8;
}
.gj-st-why__img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  display: block;
  transition: transform 400ms ease;
}
.gj-st-why__left:hover .gj-st-why__img {
  transform: scale(1.02);
}
.gj-st-why__right {
  display: flex;
  align-items: center;
  padding: clamp(16px, 2vw, 48px);
}
.gj-st-why__content {
  display: flex;
  flex-direction: column;
  gap: 22px;
  max-width: 460px;
}
.gj-st-why__eyebrow {
  color: var(--color-fg-muted);
  font-weight: var(--fw-medium);
}
.gj-st-why__body {
  font-size: 16px;
  line-height: 1.75;
  color: var(--color-fg);
  margin: 0;
  text-wrap: pretty;
  font-weight: 300;
}
.gj-st-why__cta {
  width: fit-content;
  margin-top: 6px;
}

/* Responsive Rules for Studio Page */
@media (max-width: 900px) {
  .gj-st-hero__caption,
  .gj-st-origin__caption {
    left: 32px;
    right: 32px;
    bottom: 80px;
  }
  .gj-st-philosophy {
    padding-left: 32px;
    padding-right: 32px;
  }
  .gj-st-philosophy__container {
    grid-template-columns: 1fr;
    gap: 60px;
  }
  .gj-st-philosophy__col-right {
    order: -1; /* Founders title and large image on top in mobile */
  }
  .gj-st-philosophy__header-right {
    text-align: left;
    align-self: flex-start;
  }
  .gj-st-philosophy__img-right-frame {
    margin-top: 0; /* Clear offset downward on collapsed viewport */
  }
  .gj-st-why {
    padding-left: 32px;
    padding-right: 32px;
  }
  .gj-st-why__container {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .gj-st-why__right {
    padding: 0;
  }
}
@media (max-width: 560px) {
  .gj-st-hero__caption,
  .gj-st-origin__caption {
    left: 24px;
    right: 24px;
    bottom: 60px;
  }
  .gj-st-philosophy,
  .gj-st-why {
    padding-left: 24px;
    padding-right: 24px;
  }
}

/* ============================================================
   METHOD PAGE — Faithful Tsubame Recreation
   ============================================================ */
.gj-meth {
  background: var(--color-bg);
}

/* 1. Fullscreen Hero */
.gj-meth-hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 720px;
  overflow: hidden;
  background: #0c0c0c;
  z-index: 1;
  will-change: transform;
  transform: translateZ(0);
  contain: layout paint style;
}
.gj-meth-hero__img-frame {
  position: absolute;
  inset: 0;
}
.gj-meth-hero__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.gj-meth-hero__scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(12,12,12,0.45) 0%, rgba(12,12,12,0) 22%, rgba(12,12,12,0) 50%, rgba(12,12,12,0.65) 100%);
  pointer-events: none;
}
.gj-meth-hero__caption {
  position: absolute;
  left: 64px;
  bottom: 100px;
  z-index: 3;
  width: min(620px, calc(100% - 128px));
  display: flex;
  flex-direction: column;
  gap: 18px;
  color: #FDF7F2;
}
.gj-meth-hero__eyebrow {
  color: rgba(253, 247, 242, 0.95);
  font-weight: var(--fw-medium);
  letter-spacing: 0.24em;
}
.gj-meth-hero__title {
  font-family: var(--font-display);
  font-size: clamp(48px, 5.4vw, 72px);
  line-height: 1.02;
  letter-spacing: -0.02em;
  font-weight: var(--fw-regular);
  color: #FDF7F2;
  text-transform: uppercase;
}

/* 2. Splitscreen 50/50 */
.gj-meth-split {
  position: relative;
  background: var(--color-bg);
  padding: 120px 64px;
}
.gj-meth-split__container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: end;
  max-width: var(--max-w);
  margin: 0 auto;
}
.gj-meth-split__left {
  position: relative;
}
.gj-meth-split__img-frame {
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: #EAE2D8;
}
.gj-meth-split__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.gj-meth-split__right {
  display: flex;
  justify-content: flex-end;
}
.gj-meth-split__content {
  display: flex;
  flex-direction: column;
  gap: 24px;
  max-width: 480px;
  width: 100%;
  padding-bottom: 24px;
}
.gj-meth-split__eyebrow {
  color: var(--color-fg-strong);
  font-weight: var(--fw-medium);
}
.gj-meth-split__body {
  font-size: 14px;
  line-height: 1.8;
  color: var(--color-fg);
  letter-spacing: 0.01em;
}

/* 3. Duo de photos asymétriques */
.gj-meth-collage {
  position: relative;
  background: var(--color-bg);
  padding: 120px 64px;
}
.gj-meth-collage__container {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 80px;
  align-items: center;
  max-width: var(--max-w);
  margin: 0 auto;
}
.gj-meth-collage__left {
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: #EAE2D8;
}
.gj-meth-collage__right {
  width: 100%;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: #EAE2D8;
}
.gj-meth-collage__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* 4. Fullscreen Quote Hero */
.gj-meth-quote-hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 720px;
  overflow: hidden;
  background: #0c0c0c;
  z-index: 1;
  will-change: transform;
  transform: translateZ(0);
  contain: layout paint style;
}
.gj-meth-quote-hero__img-frame {
  position: absolute;
  inset: 0;
}
.gj-meth-quote-hero__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.gj-meth-quote-hero__scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(12,12,12,0.3) 0%, rgba(12,12,12,0) 30%, rgba(12,12,12,0) 70%, rgba(12,12,12,0.65) 100%);
  pointer-events: none;
}
.gj-meth-quote-hero__caption {
  position: absolute;
  left: 64px;
  bottom: 100px;
  z-index: 3;
  width: min(900px, calc(100% - 128px));
  display: flex;
  flex-direction: column;
  gap: 18px;
  color: #FDF7F2;
}
.gj-meth-quote-hero__eyebrow {
  color: rgba(253, 247, 242, 0.95);
  font-weight: var(--fw-medium);
  letter-spacing: 0.24em;
}
.gj-meth-quote-hero__quote {
  font-family: var(--font-display);
  font-size: clamp(24px, 3.5vw, 44px);
  line-height: 1.35;
  letter-spacing: -0.015em;
  font-weight: var(--fw-light);
  color: #FAF7F2;
  text-transform: uppercase;
  margin: 0;
}

/* Responsive Rules for Method Page */
@media (max-width: 900px) {
  .gj-meth-hero,
  .gj-meth-quote-hero {
    padding-left: 32px;
    padding-right: 32px;
  }
  .gj-meth-hero__caption,
  .gj-meth-quote-hero__caption {
    left: 32px;
    right: 32px;
    bottom: 80px;
  }
  .gj-meth-split {
    padding-left: 32px;
    padding-right: 32px;
  }
  .gj-meth-split__container {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .gj-meth-split__right {
    justify-content: flex-start;
  }
  .gj-meth-split__content {
    max-width: 100%;
    padding-bottom: 0;
  }
  .gj-meth-collage {
    padding-left: 32px;
    padding-right: 32px;
  }
  .gj-meth-collage__container {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}
@media (max-width: 560px) {
  .gj-meth-hero__caption,
  .gj-meth-quote-hero__caption {
    left: 24px;
    right: 24px;
    bottom: 60px;
  }
  .gj-meth-split,
  .gj-meth-collage {
    padding-left: 24px;
    padding-right: 24px;
  }
}

/* ============================================================
   NEWS / JOURNAL STYLES
   ============================================================ */

.gj-news-page {
  background: var(--color-bg);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.gj-news-head {
  background: var(--color-bg);
  padding: clamp(140px, 16vw, 220px) 64px clamp(48px, 6vw, 80px);
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.gj-news-head__eyebrow {
  color: var(--color-fg-muted);
}

.gj-news-head__title {
  font-family: var(--font-display);
  font-size: clamp(54px, 8vw, 110px);
  line-height: 0.95;
  letter-spacing: -0.03em;
  font-weight: var(--fw-light);
  color: var(--color-fg-strong);
  text-transform: uppercase;
}

.gj-news-head__sub {
  font-size: 17px;
  line-height: 1.5;
  color: var(--color-fg);
  max-width: 520px;
}

/* Grid & Cards layout */
.gj-news-grid-section {
  padding: 0 64px 120px;
  background: var(--color-bg);
  overflow-x: clip;
}

.gj-news-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid var(--color-line-soft);
  gap: 0;
}

.gj-news-card {
  display: flex;
  flex-direction: column;
  border-bottom: 1px solid var(--color-line-soft);
  cursor: pointer;
  background: var(--color-bg);
  transition: background-color 300ms ease;
  position: relative;
}

/* Left column items get a right border */
.gj-news-card:nth-child(even) {
  border-left: 1px solid var(--color-line-soft);
}

.gj-news-card--wide {
  grid-column: span 2;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  border-left: none !important;
}

.gj-news-card__img-frame {
  position: relative;
  overflow: hidden;
  width: 100%;
  aspect-ratio: 16 / 10;
  background: var(--color-bg-sunk);
}

.gj-news-card--wide .gj-news-card__img-frame {
  height: 100%;
  aspect-ratio: auto;
}

.gj-news-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms cubic-bezier(0.16, 1, 0.3, 1);
}

.gj-news-card__hover-scrim {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(12, 12, 12, 0.05);
  opacity: 1;
  transition: opacity 300ms ease;
  pointer-events: none;
}

.gj-news-card__info {
  padding: 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  flex: 1;
}

.gj-news-card--wide .gj-news-card__info {
  padding: 64px;
}

.gj-news-card__meta {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
}

.gj-news-card__cat {
  color: var(--color-primary);
  font-weight: var(--fw-medium);
}

.gj-news-card__meta-sep {
  color: var(--color-fg-faint);
  font-size: 14px;
}

.gj-news-card__date {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--color-fg-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.gj-news-card__title {
  font-family: var(--font-display);
  font-size: clamp(24px, 2.5vw, 36px);
  line-height: 1.15;
  color: var(--color-fg-strong);
  margin-bottom: 18px;
  font-weight: var(--fw-light);
  transition: color 300ms ease;
}

.gj-news-card__excerpt {
  font-size: 15px;
  line-height: 1.6;
  color: var(--color-fg-muted);
  margin-bottom: 28px;
  max-width: 480px;
}

.gj-news-card__cta {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: var(--fw-medium);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--color-fg-strong);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  width: fit-content;
  border-bottom: 1px solid transparent;
  padding-bottom: 2px;
  transition: color 300ms ease, border-color 300ms ease;
}

/* Hover States for Cards */
.gj-news-card:hover {
  background-color: var(--color-bg-sunk);
}

.gj-news-card:hover .gj-news-card__img {
  transform: scale(1.03);
}

.gj-news-card:hover .gj-news-card__hover-scrim {
  opacity: 0;
}

.gj-news-card:hover .gj-news-card__title {
  color: var(--color-primary);
}

.gj-news-card:hover .gj-news-card__cta {
  color: var(--color-primary);
  border-bottom-color: var(--color-primary);
}

.gj-news-card:hover .gj-news-card__cta .gj-arrow {
  transform: translateX(4px);
}

/* Immersive Overlay Reader */
.gj-news-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: 1200;
  display: flex;
  justify-content: flex-end;
  pointer-events: none;
  opacity: 0;
  visibility: hidden;
  transition: opacity 400ms ease, visibility 400ms;
}

.gj-news-overlay.is-open {
  pointer-events: auto;
  opacity: 1;
  visibility: visible;
}

.gj-news-overlay__scrim {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(12, 12, 12, 0.4);
  backdrop-filter: blur(4px);
  will-change: opacity;
  cursor: pointer;
}

.gj-news-overlay__panel {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  max-width: 960px;
  height: 100%;
  background: var(--color-bg);
  box-shadow: -10px 0 40px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 500ms cubic-bezier(0.16, 1, 0.3, 1);
  outline: none;
}

.gj-news-overlay.is-open .gj-news-overlay__panel {
  transform: translateX(0);
}

.gj-news-overlay__head {
  padding: 24px 64px;
  border-bottom: 1px solid var(--color-line-soft);
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: var(--color-bg);
  z-index: 10;
}

.gj-news-overlay__cat-accent {
  color: var(--color-primary);
}

.gj-news-overlay__close {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-fg);
  font-weight: var(--fw-medium);
  transition: color 200ms ease;
}

.gj-news-overlay__close:hover {
  color: var(--color-primary);
}

.gj-news-overlay__close-x {
  font-size: 20px;
  line-height: 1;
}

.gj-news-overlay__scroll {
  flex: 1;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  padding: 64px 64px 96px;
}

.gj-news-overlay__article {
  max-width: 800px;
  margin: 0 auto;
}

.gj-news-overlay__header {
  margin-bottom: 48px;
}

.gj-news-overlay__meta {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--color-fg-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 16px;
}

.gj-news-overlay__meta-sep {
  color: var(--color-fg-faint);
}

.gj-news-overlay__title {
  font-family: var(--font-display);
  font-size: clamp(32px, 4.5vw, 56px);
  line-height: 1.05;
  color: var(--color-fg-strong);
  font-weight: var(--fw-light);
}

.gj-news-overlay__hero-frame {
  width: 100%;
  margin-bottom: 48px;
  border: 1px solid var(--color-line-soft);
  overflow: hidden;
}

.gj-news-overlay__hero-img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.gj-news-overlay__content {
  max-width: 720px;
  margin: 0 auto;
}

.gj-news-overlay__paragraph {
  font-size: 17px;
  line-height: 1.7;
  color: var(--color-fg);
  margin-bottom: 32px;
}

.gj-news-overlay__paragraph:first-of-type {
  font-size: 19px;
  line-height: 1.65;
  color: var(--color-fg-strong);
}

.gj-news-overlay__footer {
  margin-top: 80px;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

.gj-news-overlay__footer-line {
  height: 1px;
  background: var(--color-line-soft);
  margin-bottom: 24px;
}

.gj-news-overlay__footer-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.gj-news-overlay__copyright {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--color-fg-muted);
}

/* ============================================================
   RESPONSIVE NEWS PAGE
   ============================================================ */

@media (max-width: 1024px) {
  .gj-news-card__info {
    padding: 36px;
  }
  .gj-news-card--wide .gj-news-card__info {
    padding: 48px;
  }
}

@media (max-width: 900px) {
  .gj-news-head {
    padding-left: 32px;
    padding-right: 32px;
  }
  .gj-news-grid-section {
    padding-left: 32px;
    padding-right: 32px;
  }
  .gj-news-grid {
    grid-template-columns: 1fr;
  }
  .gj-news-card {
    border-left: none !important;
    border-right: none !important;
  }
  .gj-news-card--wide {
    grid-template-columns: 1fr;
  }
  .gj-news-card--wide .gj-news-card__img-frame {
    aspect-ratio: 16 / 10;
  }
  .gj-news-overlay__panel {
    max-width: 100vw;
  }
  .gj-news-overlay__head {
    padding: 20px 32px;
  }
  .gj-news-overlay__scroll {
    padding: 48px 32px 64px;
  }
}

@media (max-width: 560px) {
  .gj-news-head {
    padding-left: 24px;
    padding-right: 24px;
  }
  .gj-news-grid-section {
    padding-left: 24px;
    padding-right: 24px;
  }
  .gj-news-card__info,
  .gj-news-card--wide .gj-news-card__info {
    padding: 32px 0 40px;
  }
  .gj-news-overlay__head {
    padding: 16px 24px;
  }
  .gj-news-overlay__scroll {
    padding: 32px 24px 48px;
  }
  .gj-news-overlay__header {
    margin-bottom: 32px;
  }
  .gj-news-overlay__hero-frame {
    margin-bottom: 32px;
  }
  .gj-news-overlay__paragraph {
    font-size: 16px;
    margin-bottom: 24px;
  }
  .gj-news-overlay__paragraph:first-of-type {
    font-size: 17px;
  }
}

/* ============================================================
   CONTACT PAGE — full-screen split (form left / image right)
   ============================================================ */
.gj-contact {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 100vh;
  background: var(--color-bg);
}
.gj-contact__left {
  display: flex;
  align-items: center;
  padding: 150px 6vw 90px;
}
.gj-contact__inner { width: 100%; max-width: 540px; }
.gj-contact__eyebrow { display: block; margin-bottom: 30px; }
.gj-contact__title {
  font-family: var(--font-display);
  font-weight: var(--fw-light);
  font-size: clamp(34px, 4vw, 58px);
  line-height: 1.0;
  letter-spacing: -0.02em;
  color: var(--color-fg-strong);
  margin: 0 0 22px;
}
.gj-contact__intro {
  font-size: 16px;
  line-height: 1.6;
  color: var(--color-fg-muted);
  max-width: 460px;
  margin: 0 0 52px;
}
.gj-contact__form { display: flex; flex-direction: column; gap: 30px; }
.gj-contact__field { display: flex; flex-direction: column; gap: 12px; margin: 0; }
.gj-contact__label {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-fg-muted);
}
.gj-contact__input,
.gj-contact__select {
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--color-fg-strong);
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--color-line-soft);
  padding: 8px 0;
  width: 100%;
  transition: border-color var(--dur-fast) var(--ease-out);
}
.gj-contact__input::placeholder { color: var(--color-fg-faint); }
.gj-contact__input:focus,
.gj-contact__select:focus { outline: none; border-bottom-color: var(--color-fg-strong); }
.gj-contact__select {
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8' fill='none' stroke='%236E6A66' stroke-width='1.4'%3E%3Cpath d='M1 1.5 6 6.5 11 1.5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 2px center;
  padding-right: 24px;
}
.gj-contact__select:invalid { color: var(--color-fg-faint); }
.gj-contact__textarea { resize: vertical; min-height: 64px; line-height: 1.5; }
.gj-contact__submit {
  align-self: flex-start;
  margin-top: 10px;
  display: inline-flex;
  align-items: baseline;
  gap: 4px;
  background: none;
  border: none;
  padding: 6px 0;
  font-family: var(--font-body);
  font-size: 15px;
  letter-spacing: 0.04em;
  color: var(--color-fg-strong);
  cursor: pointer;
  transition: color var(--dur-fast) var(--ease-out);
}
.gj-contact__submit:hover { color: var(--color-primary); }
.gj-contact__submit:hover .gj-arrow { transform: translateX(4px); }
.gj-contact__direct {
  margin-top: 56px;
  display: flex;
  gap: 48px;
  flex-wrap: wrap;
}
.gj-contact__direct-col { display: flex; flex-direction: column; gap: 6px; }
.gj-contact__direct-h { margin-bottom: 6px; }
.gj-contact__direct-line { font-size: 13px; color: var(--color-fg); }
.gj-contact__direct-line--muted { color: var(--color-fg-faint); }
.gj-contact__thanks { display: flex; flex-direction: column; align-items: flex-start; gap: 4px; }
.gj-contact__thanks .gj-arrow-cta { margin-top: 24px; }

.gj-contact__right { position: relative; overflow: hidden; min-height: 100vh; }
.gj-contact__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.gj-contact__img-scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(253, 247, 242, 0.6) 0%, rgba(253, 247, 242, 0) 24%);
  pointer-events: none;
}

@media (max-width: 900px) {
  .gj-contact { grid-template-columns: 1fr; }
  .gj-contact__right { order: -1; min-height: 40vh; height: 40vh; }
  .gj-contact__left { padding: 56px 24px 72px; }
  .gj-contact__inner { max-width: none; }
}

