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

:root {
  --gp-black: #000;
  --gp-white: #fff;
  --gp-soft: rgba(255,255,255,.68);
  --gp-muted: rgba(255,255,255,.46);
  --gp-line: rgba(255,255,255,.13);
  --gp-panel: rgba(255,255,255,.045);
  --gp-glow: 0 0 18px rgba(255,255,255,.55), 0 0 56px rgba(255,255,255,.16);
}

html {
  background: #000;
  color: #fff;
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  background:
    radial-gradient(circle at 50% -8%, rgba(255,255,255,.16), transparent 34rem),
    radial-gradient(circle at 88% 22%, rgba(255,255,255,.08), transparent 26rem),
    linear-gradient(180deg, #000 0%, #050505 42%, #000 100%);
  color: var(--gp-white);
  font-family: "Pathway Gothic One", sans-serif;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: .13;
  background-image:
    linear-gradient(rgba(255,255,255,.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
  background-size: 62px 62px;
  mask-image: radial-gradient(circle at 50% 28%, #000, transparent 72%);
}

a { color: inherit; }
img { max-width: 100%; display: block; }

.gp-header, main, .gp-footer, .gp-lang { position: relative; z-index: 1; }

@media (max-width: 767px) {
  body::before {
    display: none;
  }
}

.gp-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 90;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 19px 44px;
  background: linear-gradient(180deg, rgba(0,0,0,.86), rgba(0,0,0,.25));
  border-bottom: 1px solid transparent;
  transition: background .24s ease, border-color .24s ease, padding .24s ease;
}

.gp-header.is-scrolled {
  padding-top: 12px;
  padding-bottom: 12px;
  background: rgba(0,0,0,.92);
  border-color: var(--gp-line);
  backdrop-filter: blur(18px);
}

.gp-logo {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
}

.gp-logo img {
  width: 124px;
  height: auto;
  filter: drop-shadow(0 0 8px rgba(255,255,255,.72));
}

.gp-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(14px, 1.7vw, 28px);
}

.gp-nav a,
.gp-header-cta,
.gp-btn,
.gp-lang button {
  text-transform: uppercase;
  text-decoration: none;
  letter-spacing: 4px;
}

.gp-nav a {
  color: rgba(255,255,255,.54);
  font-size: 12px;
  line-height: 1;
  padding-bottom: 6px;
  border-bottom: 1px solid transparent;
  transition: color .18s ease, border-color .18s ease, text-shadow .18s ease;
}

.gp-nav a:hover,
.gp-nav .gp-active {
  color: #fff;
  border-color: rgba(255,255,255,.76);
  text-shadow: var(--gp-glow);
}

.gp-header-cta {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  padding: 10px 18px;
  border: 1px solid rgba(255,255,255,.38);
  color: #fff;
  font-size: 11px;
  white-space: nowrap;
  background: rgba(255,255,255,.025);
}

.gp-hamburger {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255,255,255,.36);
  background: rgba(0,0,0,.36);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
}

.gp-hamburger span {
  width: 20px;
  height: 1px;
  background: #fff;
  box-shadow: var(--gp-glow);
  transition: transform .2s ease, opacity .2s ease;
}

.gp-hamburger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.gp-hamburger.is-open span:nth-child(2) { opacity: 0; }
.gp-hamburger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.gp-mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 80;
  padding: 106px 24px 40px;
  background: radial-gradient(circle at 50% 16%, rgba(255,255,255,.14), transparent 30rem), rgba(0,0,0,.97);
  backdrop-filter: blur(18px);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 18px;
}

.gp-mobile-nav.open { display: flex; }

.gp-mobile-nav a {
  color: #fff;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 7px;
  font-size: clamp(28px, 8vw, 48px);
  line-height: 1;
  text-shadow: var(--gp-glow);
}

body.nav-open { overflow: hidden; }

.gp-lang {
  position: fixed;
  right: 22px;
  top: 88px;
  z-index: 100;
  display: inline-flex;
  gap: 0;
  border: 1px solid rgba(255,255,255,.28);
  background: rgba(0,0,0,.72);
  backdrop-filter: blur(14px);
}

.gp-lang button {
  min-width: 46px;
  min-height: 42px;
  border: 0;
  border-right: 1px solid rgba(255,255,255,.18);
  color: rgba(255,255,255,.56);
  background: transparent;
  font: inherit;
  font-size: 12px;
  cursor: pointer;
}

.gp-lang button:last-child { border-right: 0; }
.gp-lang button.is-active { color: #000; background: #fff; }

.gp-hero {
  min-height: 100svh;
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(360px, 1.08fr);
  align-items: center;
  gap: clamp(34px, 5vw, 82px);
  padding: 132px clamp(24px, 5vw, 74px) 82px;
}

.gp-hero-copy {
  max-width: 730px;
}

.gp-kicker {
  margin-bottom: 18px;
  color: var(--gp-muted);
  font-size: 12px;
  line-height: 1.4;
  letter-spacing: 7px;
  text-transform: uppercase;
}

h1, h2, h3 {
  font-weight: 400;
  text-transform: uppercase;
}

h1 {
  font-size: clamp(72px, 11vw, 172px);
  line-height: .82;
  letter-spacing: clamp(5px, .8vw, 12px);
  text-shadow: 0 0 10px rgba(255,255,255,.72), 0 0 54px rgba(255,255,255,.2);
}

.gp-lead {
  max-width: 620px;
  margin-top: 28px;
  color: var(--gp-soft);
  font-size: clamp(20px, 2.2vw, 32px);
  line-height: 1.28;
  letter-spacing: 1.6px;
}

.gp-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.gp-btn {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 14px 24px;
  border: 1px solid rgba(255,255,255,.45);
  font-size: 12px;
  line-height: 1;
  background: rgba(255,255,255,.03);
  transition: transform .18s ease, background .18s ease, color .18s ease, box-shadow .18s ease;
}

.gp-btn:hover {
  transform: translateY(-1px);
  box-shadow: var(--gp-glow);
}

.gp-btn-primary {
  background: #fff;
  color: #000;
  border-color: #fff;
}

.gp-btn-secondary { color: #fff; }

.gp-hero-art {
  position: relative;
  min-height: 640px;
  display: grid;
  place-items: center;
  border-left: 1px solid rgba(255,255,255,.14);
}

.gp-hero-art::before {
  content: "";
  position: absolute;
  inset: 8% 0 8% 8%;
  background: radial-gradient(ellipse at center, rgba(255,255,255,.18), transparent 68%);
  filter: blur(12px);
}

.gp-hero-art img {
  position: relative;
  width: min(520px, 86%);
  max-height: 78svh;
  object-fit: contain;
  filter: contrast(1.08) drop-shadow(0 0 56px rgba(255,255,255,.2));
}

.gp-art-caption {
  position: absolute;
  right: 4%;
  bottom: 8%;
  display: grid;
  gap: 4px;
  padding: 16px 18px;
  border: 1px solid rgba(255,255,255,.22);
  background: rgba(0,0,0,.72);
  backdrop-filter: blur(16px);
  text-transform: uppercase;
  letter-spacing: 4px;
}

.gp-art-caption span {
  color: var(--gp-muted);
  font-size: 12px;
}

.gp-art-caption strong {
  color: #fff;
  font-weight: 400;
  font-size: 24px;
}

.gp-art-caption small {
  color: rgba(255,255,255,.72);
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.gp-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--gp-line);
  border-bottom: 1px solid var(--gp-line);
  background: rgba(255,255,255,.025);
}

.gp-strip div {
  min-height: 116px;
  display: grid;
  align-content: center;
  gap: 8px;
  padding: 22px;
  border-right: 1px solid var(--gp-line);
}

.gp-strip div:last-child { border-right: 0; }
.gp-strip strong { font-weight: 400; font-size: clamp(28px, 4vw, 54px); letter-spacing: 4px; line-height: .9; }
.gp-strip span { color: var(--gp-muted); font-size: 13px; letter-spacing: 3px; text-transform: uppercase; }

.gp-section {
  padding: clamp(76px, 10vw, 132px) clamp(22px, 5vw, 74px);
}

.gp-intro {
  max-width: 1040px;
  margin: 0 auto;
  text-align: center;
}

.gp-intro h2,
.gp-section-head h2,
.gp-info h2,
.gp-form-copy h2 {
  font-size: clamp(52px, 8vw, 118px);
  line-height: .86;
  letter-spacing: 6px;
  text-shadow: 0 0 16px rgba(255,255,255,.52), 0 0 62px rgba(255,255,255,.12);
}

.gp-intro p:last-child {
  max-width: 820px;
  margin: 28px auto 0;
  color: var(--gp-soft);
  font-size: clamp(21px, 2.2vw, 32px);
  line-height: 1.35;
  letter-spacing: 1.8px;
}

.gp-section-head {
  display: grid;
  gap: 12px;
  margin-bottom: 38px;
}

.gp-work-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.gp-work {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(280px, 1.05fr);
  gap: 28px;
  min-height: 540px;
  padding: clamp(18px, 2.4vw, 32px);
  border: 1px solid var(--gp-line);
  background: linear-gradient(135deg, rgba(255,255,255,.06), rgba(255,255,255,.016));
  overflow: hidden;
}

.gp-work-wide { grid-column: 1 / -1; }

.gp-work img {
  width: 100%;
  height: 100%;
  max-height: 610px;
  object-fit: contain;
  background: #030303;
  filter: grayscale(.08) contrast(1.08);
}

.gp-work > div {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 10px 0;
}

.gp-number {
  margin-bottom: 18px;
  color: var(--gp-muted);
  font-size: 13px;
  letter-spacing: 5px;
}

.gp-work h3 {
  font-size: clamp(46px, 5.4vw, 92px);
  line-height: .9;
  letter-spacing: 5px;
}

.gp-work p {
  max-width: 560px;
  margin-top: 20px;
  color: var(--gp-soft);
  font-size: clamp(18px, 1.8vw, 25px);
  line-height: 1.35;
  letter-spacing: 1.4px;
}

.gp-work dl {
  display: grid;
  gap: 10px;
  margin-top: 26px;
  padding-top: 22px;
  border-top: 1px solid var(--gp-line);
}

.gp-work dl div {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  color: var(--gp-soft);
  font-size: 15px;
  letter-spacing: 2.4px;
  text-transform: uppercase;
}

.gp-work dt { color: var(--gp-muted); }
.gp-work dd { color: #fff; text-align: right; }

.gp-work-cta {
  width: fit-content;
  margin-top: 24px;
  padding-bottom: 6px;
  color: #fff;
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
  text-decoration: none;
  border-bottom: 1px solid rgba(255,255,255,.42);
}

.gp-work-cta:hover { border-color: #fff; text-shadow: var(--gp-glow); }

.gp-info {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(320px, .7fr);
  gap: 32px;
  align-items: stretch;
}

.gp-info-card {
  padding: clamp(26px, 4vw, 48px);
  border: 1px solid var(--gp-line);
  background: var(--gp-panel);
}

.gp-info-card p {
  color: var(--gp-soft);
  font-size: clamp(19px, 2vw, 28px);
  line-height: 1.35;
  letter-spacing: 1.7px;
}

.gp-info-card p + p { margin-top: 18px; }
.gp-info-card strong { color: #fff; font-weight: 400; text-transform: uppercase; letter-spacing: 4px; }

.gp-multiple-grid {
  display: grid;
  grid-template-columns: minmax(360px, 1.12fr) minmax(280px, .88fr);
  grid-template-rows: repeat(3, minmax(150px, auto));
  gap: 14px;
}

.gp-multiple-intro,
.gp-multiple-note {
  max-width: 980px;
  color: var(--gp-soft);
  font-size: clamp(18px, 2vw, 24px);
  line-height: 1.45;
  letter-spacing: 1.4px;
}

.gp-multiple-intro {
  margin: -18px 0 28px;
}

.gp-multiple-note {
  margin-top: 22px;
  color: var(--gp-muted);
  font-size: 15px;
  line-height: 1.55;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.gp-multiple-grid a {
  min-height: 0;
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 18px;
  text-decoration: none;
  border: 1px solid var(--gp-line);
  background: linear-gradient(180deg, rgba(255,255,255,.065), rgba(255,255,255,.02));
  transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
}

.gp-multiple-grid img {
  flex: 0 0 140px;
  width: 140px !important;
  height: auto !important;
  max-width: 140px;
  max-height: none;
  object-fit: contain;
  aspect-ratio: auto !important;
  object-position: center;
  display: block;
  margin: 0;
  filter: grayscale(.08) brightness(.9) contrast(1.08);
}

.gp-multiple-card {
  min-height: 180px;
}

.gp-multiple-card-elite {
  grid-row: 1 / 4;
  flex-direction: column;
  justify-content: flex-end;
  align-items: stretch;
  padding: 28px;
}

.gp-multiple-card-elite img {
  flex: 0 0 auto;
  width: 100% !important;
  height: auto !important;
  max-width: 100%;
  max-height: 680px;
  aspect-ratio: auto !important;
  margin-bottom: 18px;
}

.gp-multiple-grid a:hover {
  transform: translateY(-2px);
  border-color: rgba(255,255,255,.42);
  box-shadow: var(--gp-glow);
}

.gp-multiple-grid span {
  display: block;
  color: var(--gp-muted);
  font-size: 12px;
  letter-spacing: 4px;
  margin-bottom: 6px;
}

.gp-multiple-grid strong {
  display: block;
  color: #fff;
  font-weight: 400;
  font-size: clamp(28px, 2.7vw, 44px);
  line-height: .95;
  letter-spacing: 4px;
  text-transform: uppercase;
  overflow-wrap: anywhere;
}

.gp-multiple-grid em {
  display: block;
  margin-top: 8px;
  color: var(--gp-soft);
  font-style: normal;
  font-size: 14px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
}

.gp-form-section {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(340px, .75fr);
  gap: 38px;
  align-items: start;
  border-top: 1px solid var(--gp-line);
}

.gp-form-copy p:last-child {
  max-width: 680px;
  margin-top: 24px;
  color: var(--gp-soft);
  font-size: clamp(20px, 2vw, 30px);
  line-height: 1.34;
  letter-spacing: 1.7px;
}

.gp-form {
  display: grid;
  gap: 15px;
  padding: clamp(22px, 3vw, 34px);
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(255,255,255,.045);
}

.gp-form label {
  display: grid;
  gap: 8px;
}

.gp-form span,
.gp-privacy,
.gp-form-status {
  color: var(--gp-muted);
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
}

.gp-form input,
.gp-form select {
  width: 100%;
  min-height: 48px;
  border: 1px solid rgba(255,255,255,.24);
  border-radius: 0;
  background: rgba(0,0,0,.56);
  color: #fff;
  padding: 12px 14px;
  font: inherit;
  font-size: 20px;
  letter-spacing: 1px;
}

.gp-form select option {
  color: #000;
}

.gp-form button {
  width: 100%;
  cursor: pointer;
  font-family: inherit;
}

.gp-form-status {
  color: #fff;
  line-height: 1.45;
}

.gp-privacy {
  line-height: 1.45;
  text-transform: none;
  letter-spacing: 1.6px;
}

.gp-footer {
  display: flex;
  justify-content: space-between;
  gap: 22px;
  padding: 34px clamp(22px, 5vw, 74px);
  border-top: 1px solid var(--gp-line);
  color: var(--gp-muted);
  letter-spacing: 2.4px;
  text-transform: uppercase;
}

.gp-footer strong {
  display: block;
  color: #fff;
  font-weight: 400;
  font-size: 24px;
  letter-spacing: 5px;
}

.gp-footer span,
.gp-footer a {
  color: var(--gp-muted);
  font-size: 13px;
  text-decoration: none;
}

.gp-footer div:last-child {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  justify-content: flex-end;
}

@media (max-width: 1120px) {
  .gp-header { padding-left: 24px; padding-right: 24px; }
  .gp-nav { display: none; }
  .gp-header-cta { margin-left: auto; }
  .gp-hamburger { display: flex; }
  .gp-hero { grid-template-columns: 1fr; padding-top: 118px; }
  .gp-hero-art { min-height: 520px; border-left: 0; border-top: 1px solid var(--gp-line); }
  .gp-work-grid, .gp-info, .gp-form-section { grid-template-columns: 1fr; }
  .gp-work { grid-template-columns: 1fr; min-height: 0; }
  .gp-multiple-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }
  .gp-multiple-card-elite { grid-row: auto; }
}

@media (max-width: 720px) {
  .gp-header { gap: 12px; padding: 14px 16px; }
  .gp-logo img { width: 108px; }
  .gp-header-cta { display: none; }
  .gp-hero { padding: 106px 18px 58px; }
  h1 { font-size: clamp(64px, 19vw, 116px); }
  .gp-lead { font-size: 22px; }
  .gp-actions { flex-direction: column; }
  .gp-btn { width: 100%; padding-left: 16px; padding-right: 16px; letter-spacing: 3px; }
  .gp-hero-art { min-height: 460px; }
  .gp-art-caption { left: 18px; right: 18px; bottom: 20px; }
  .gp-strip { grid-template-columns: 1fr 1fr; }
  .gp-strip div { min-height: 96px; padding: 16px; }
  .gp-section { padding: 72px 18px; }
  .gp-intro h2, .gp-section-head h2, .gp-info h2, .gp-form-copy h2 { letter-spacing: 4px; }
  .gp-work { padding: 16px; gap: 20px; }
  .gp-work img { max-height: 520px; }
  .gp-work dl div { display: grid; gap: 4px; }
  .gp-work dd { text-align: left; }
  .gp-multiple-grid { grid-template-columns: 1fr; }
  .gp-multiple-grid a {
    display: block;
    padding: 18px;
  }
  .gp-multiple-grid img,
  .gp-multiple-card-elite img {
    display: block;
    width: 100% !important;
    max-width: 100%;
    height: auto !important;
    max-height: none;
    aspect-ratio: auto !important;
    margin: 0 auto 16px;
  }
  .gp-multiple-card-elite img { width: min(100%, 320px) !important; }
  .gp-multiple-card:not(.gp-multiple-card-elite) img { width: min(100%, 220px) !important; }
  .gp-footer { display: grid; }
  .gp-footer div:last-child { justify-content: flex-start; }
  .gp-lang {
    top: auto;
    bottom: 16px;
    left: 16px;
    right: auto;
    width: 210px;
    display: flex;
  }
  .gp-lang button {
    flex: 1 1 0;
    min-width: 0;
    width: 70px;
    letter-spacing: 3px;
  }
}

@media (max-width: 390px) {
  .gp-kicker { letter-spacing: 5px; }
  .gp-mobile-nav a { letter-spacing: 5px; }
  .gp-strip { grid-template-columns: 1fr; }
}

@media (max-width: 720px) {
  :root {
    --gp-glow: 0 0 8px rgba(255,255,255,.52), 0 0 24px rgba(255,255,255,.14);
  }
  html, body { width: 100%; max-width: 100%; overflow-x: hidden; }
  .gp-header {
    width: 100%;
    max-width: 100vw;
    left: 0;
    right: 0;
    box-sizing: border-box;
  }
  main, section, .gp-hero, .gp-hero-copy, .gp-actions,
  .gp-hero-art, .gp-strip, .gp-section, .gp-work-grid,
  .gp-work, .gp-info, .gp-form-section, .gp-form-copy,
  .gp-form, .gp-footer {
    max-width: 100vw;
    min-width: 0;
    box-sizing: border-box;
  }
  .gp-hero {
    padding-top: 142px;
  }
  .gp-hero-copy, .gp-hero-art, .gp-form-copy {
    width: 100%;
    max-width: calc(100vw - 36px);
  }
  .gp-hero-art img, .gp-work img {
    width: auto;
    max-width: min(100%, 340px);
    max-height: 68svh;
    height: auto;
    margin: 0 auto;
    object-fit: contain;
  }
  h1,
  .gp-intro h2,
  .gp-section-head h2,
  .gp-info h2,
  .gp-form-copy h2 {
    text-shadow: 0 0 8px rgba(255,255,255,.56), 0 0 24px rgba(255,255,255,.16);
  }
  .gp-art-caption {
    left: 18px;
    right: 18px;
    width: auto;
  }
  .gp-btn, .gp-actions a {
    width: 100%;
    max-width: calc(100vw - 36px);
    white-space: normal;
  }
  h1, h2, h3, .gp-kicker, .gp-lead {
    max-width: 100%;
    overflow-wrap: anywhere;
    word-break: normal;
    hyphens: none;
  }
  h1 {
    font-size: clamp(48px, 15vw, 62px);
    letter-spacing: 0.08em;
    line-height: 0.98;
  }
  .gp-lead {
    width: min(100%, 320px);
    max-width: 320px;
    font-size: 17px;
    line-height: 1.38;
    letter-spacing: .45px;
    overflow-wrap: break-word;
  }
  .gp-kicker { letter-spacing: 0.32em; }
}
