:root {
  --black: #030303;
  --black-2: #090806;
  --ink: #11100c;
  --paper: #f7f3ea;
  --paper-2: #fffdf7;
  --muted: #746e61;
  --gold: #c9a448;
  --gold-soft: #f4d983;
  --green: #17452f;
  --line: rgba(201, 164, 72, .32);
  --line-soft: rgba(17, 16, 12, .12);
  --container: 1180px;
  --radius: 8px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", system-ui, sans-serif;
  color: var(--ink);
  background: var(--black);
  line-height: 1.6;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
}

.container {
  width: min(var(--container), calc(100% - 56px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(3, 3, 3, .9);
  border-bottom: 1px solid rgba(201, 164, 72, .28);
  backdrop-filter: blur(18px);
}

.nav-shell {
  min-height: 86px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: max-content;
}

.brand-logo {
  width: 76px;
  max-width: 28vw;
  height: auto;
  object-fit: contain;
}

.brand-logo-light {
  width: 76px;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 2px;
  padding: 5px;
  border: 1px solid rgba(201, 164, 72, .28);
  border-radius: 999px;
  background: rgba(255, 255, 255, .055);
}

.site-nav a {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  padding: 0 16px;
  border-radius: 999px;
  color: rgba(255, 255, 255, .76);
  font-size: .8rem;
  font-weight: 900;
  transition: color .2s ease, background .2s ease;
}

.site-nav a:hover,
.site-nav a.current {
  background: var(--gold);
  color: #080806;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.icon-link,
.menu-toggle {
  width: 46px;
  height: 46px;
  display: inline-grid;
  place-items: center;
  border: 1px solid rgba(201, 164, 72, .3);
  border-radius: 50%;
  background: rgba(255, 255, 255, .06);
  color: #fff;
  cursor: pointer;
}

.icon-link:hover,
.menu-toggle:hover {
  background: rgba(201, 164, 72, .16);
}

.menu-toggle {
  display: none;
}

.menu-toggle span,
.menu-toggle span::before,
.menu-toggle span::after {
  width: 18px;
  height: 2px;
  display: block;
  border-radius: 999px;
  background: currentColor;
  content: "";
  transition: transform .2s ease, opacity .2s ease;
}

.menu-toggle span::before {
  transform: translateY(-6px);
}

.menu-toggle span::after {
  transform: translateY(4px);
}

.menu-toggle.is-open span {
  transform: rotate(45deg);
}

.menu-toggle.is-open span::before {
  opacity: 0;
  transform: translateY(0);
}

.menu-toggle.is-open span::after {
  transform: translateY(-2px) rotate(90deg);
}

.mobile-menu {
  display: none;
}

.hero {
  position: relative;
  min-height: 760px;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(3, 3, 3, .96) 0%, rgba(3, 3, 3, .9) 43%, rgba(3, 3, 3, .38) 70%, rgba(3, 3, 3, .12) 100%),
    url("assets/gta-cover.jpg");
  background-size: cover;
  background-position: center 42%;
}

.hero::before,
.page-hero::before,
.section.alt::before,
.cta-band::before,
.site-footer::before {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    repeating-linear-gradient(135deg, rgba(201, 164, 72, .18) 0 1px, transparent 1px 12px);
  mask-image: linear-gradient(90deg, #000 0%, transparent 42%);
  opacity: .42;
  content: "";
}

.hero::after {
  position: absolute;
  inset: 0 0 0 auto;
  width: 46%;
  border-left: 1px solid rgba(201, 164, 72, .6);
  background:
    linear-gradient(145deg, rgba(201, 164, 72, .18), transparent 34%),
    linear-gradient(180deg, rgba(23, 69, 47, .2), transparent);
  clip-path: polygon(22% 0, 100% 0, 100% 100%, 0 100%);
  content: "";
}

.hero .container {
  position: relative;
  z-index: 2;
}

.hero-content {
  width: 100%;
  max-width: 790px;
  padding: 106px 0;
}

.eyebrow,
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  color: var(--gold-soft);
  font-size: .78rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0;
}

.section:not(.alt) .section-kicker {
  color: var(--green);
}

.eyebrow::before,
.section-kicker::before {
  display: none;
  content: none;
}

h1,
h2,
h3,
p {
  margin: 0;
}

h1,
h2,
.display {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0;
}

h1 {
  margin-top: 18px;
  max-width: 860px;
  font-size: clamp(5rem, 10vw, 10.8rem);
  line-height: .78;
}

.hero h1 span {
  display: block;
  color: var(--gold-soft);
}

.hero-lead {
  width: 100%;
  max-width: 660px;
  margin-top: 30px;
  color: rgba(255, 255, 255, .82);
  font-size: clamp(1.06rem, 2vw, 1.34rem);
}

.hero-actions,
.page-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 36px;
}

.button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: .94rem;
  font-weight: 900;
  transition: transform .2s ease, background .2s ease, color .2s ease, border-color .2s ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  color: #080806;
  background: linear-gradient(135deg, #b88922, #f6db82 54%, #caa84a);
}

.button-primary:hover {
  background: linear-gradient(135deg, #cfaa48, #fff0a8 54%, #d7b65a);
}

.button-dark {
  background: #050505;
  color: #fff;
}

.button-outline {
  color: inherit;
  border-color: rgba(201, 164, 72, .48);
  background: rgba(255, 255, 255, .04);
}

.section:not(.alt) .button-outline,
.page-hero .button-outline {
  color: var(--ink);
  background: transparent;
  border-color: rgba(17, 16, 12, .16);
}

.button-outline:hover {
  border-color: var(--gold);
  background: rgba(201, 164, 72, .12);
}

.button svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.proof-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  background: #050505;
  color: #fff;
  border-top: 1px solid rgba(201, 164, 72, .42);
  border-bottom: 1px solid rgba(201, 164, 72, .42);
}

.proof-item {
  position: relative;
  min-height: 156px;
  padding: 32px 34px;
  border-right: 1px solid rgba(201, 164, 72, .22);
}

.proof-item:last-child {
  border-right: 0;
}

.proof-item::before {
  position: absolute;
  inset: 18px 18px auto auto;
  color: rgba(201, 164, 72, .35);
  font-family: "Barlow Condensed", sans-serif;
  font-size: 1.35rem;
  font-weight: 700;
  content: "GTA";
}

.proof-item strong {
  display: block;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 2.55rem;
  line-height: .84;
  text-transform: uppercase;
}

.proof-item span {
  display: block;
  max-width: 340px;
  margin-top: 14px;
  color: rgba(255, 255, 255, .66);
  font-size: .96rem;
}

.section {
  position: relative;
  padding: 112px 0;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .7), transparent 36%),
    var(--paper);
}

.section.alt {
  color: #fff;
  background:
    linear-gradient(135deg, rgba(201, 164, 72, .12), transparent 40%),
    #060606;
  border-top: 1px solid rgba(201, 164, 72, .35);
  border-bottom: 1px solid rgba(201, 164, 72, .35);
}

.section.alt::before {
  opacity: .28;
  mask-image: linear-gradient(90deg, #000 0%, transparent 68%);
}

.section .container {
  position: relative;
  z-index: 1;
}

.section-head {
  max-width: 870px;
}

.section-title {
  margin-top: 16px;
  max-width: 940px;
  font-size: clamp(3rem, 6.6vw, 6.15rem);
  line-height: .82;
}

.mission-title {
  display: grid;
  gap: 10px;
  max-width: 740px;
}

.mission-title span {
  color: var(--ink);
  font-size: clamp(2.1rem, 4.2vw, 3.55rem);
  line-height: .92;
}

.mission-title strong {
  color: var(--gold);
  font-size: clamp(4.8rem, 9vw, 8.2rem);
  font-weight: 700;
  line-height: .78;
}

.section.alt .section-title,
.section.alt h3 {
  color: #fff;
}

.section-lead {
  max-width: 720px;
  margin-top: 22px;
  color: var(--muted);
  font-size: 1.07rem;
}

.section.alt .section-lead,
.section.alt p {
  color: rgba(255, 255, 255, .7);
}

.grid-2 {
  display: grid;
  grid-template-columns: minmax(0, .88fr) minmax(0, 1.12fr);
  gap: 66px;
  align-items: center;
}

.grid-3,
.service-grid,
.sponsor-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.service-grid,
.sponsor-grid,
.feature-list {
  margin-top: 52px;
}

.service-card,
.feature-card,
.sponsor-card,
.step-card,
.leader-card,
.contact-box {
  border: 1px solid rgba(17, 16, 12, .12);
  border-radius: var(--radius);
  background: var(--paper-2);
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}

.section.alt .service-card,
.section.alt .feature-card,
.section.alt .step-card,
.section.alt .leader-card {
  border-color: rgba(201, 164, 72, .34);
  background:
    linear-gradient(135deg, rgba(201, 164, 72, .08), transparent 50%),
    #0e0d0a;
}

.service-card:hover,
.feature-card:hover,
.sponsor-card:hover,
.leader-card:hover {
  transform: translateY(-7px);
  border-color: rgba(201, 164, 72, .78);
  box-shadow: 0 34px 80px rgba(0, 0, 0, .18);
}

.service-card {
  position: relative;
  min-height: 340px;
  display: flex;
  flex-direction: column;
  padding: 30px;
}

.service-card::after,
.feature-card::after,
.leader-card::after {
  position: absolute;
  inset: auto 22px 22px auto;
  width: 44px;
  height: 44px;
  border-right: 1px solid rgba(201, 164, 72, .58);
  border-bottom: 1px solid rgba(201, 164, 72, .58);
  content: "";
}

.service-card .number,
.step-card span {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(201, 164, 72, .56);
  border-radius: 50%;
  background: #050505;
  color: var(--gold-soft);
  font-weight: 900;
}

.service-card h3,
.feature-card h3,
.step-card h3 {
  margin-top: 36px;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 2.25rem;
  line-height: .86;
  text-transform: uppercase;
}

.service-card p,
.feature-card p,
.step-card p {
  margin-top: 14px;
  color: var(--muted);
  font-size: .96rem;
}

.service-card a {
  margin-top: auto;
  color: var(--green);
  font-weight: 900;
}

.section.alt .service-card a {
  color: var(--gold-soft);
}

.image-panel {
  position: relative;
  min-height: 590px;
  overflow: hidden;
  border: 1px solid rgba(201, 164, 72, .48);
  border-radius: var(--radius);
  background: #050505;
  box-shadow: 0 34px 90px rgba(0, 0, 0, .24);
  clip-path: polygon(8% 0, 100% 0, 92% 100%, 0 100%);
}

.image-panel::before {
  position: absolute;
  inset: 16px;
  z-index: 1;
  border: 1px solid rgba(201, 164, 72, .45);
  pointer-events: none;
  content: "";
}

.image-panel img {
  width: 100%;
  height: 100%;
  min-height: 590px;
  object-fit: cover;
}

.image-panel.caption::after {
  position: absolute;
  inset: auto 0 0;
  height: 62%;
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, .88));
  content: "";
}

.caption-box {
  position: absolute;
  inset: auto 40px 34px 40px;
  z-index: 2;
  padding: 18px 20px;
  border: 1px solid rgba(201, 164, 72, .44);
  border-radius: var(--radius);
  background: rgba(5, 5, 5, .72);
  color: #fff;
  backdrop-filter: blur(12px);
}

.caption-box strong {
  display: block;
  font-weight: 900;
}

.caption-box span {
  display: block;
  margin-top: 4px;
  color: rgba(255, 255, 255, .68);
  font-size: .9rem;
}

.page-hero {
  position: relative;
  overflow: hidden;
  padding: 108px 0 100px;
  color: #fff;
  background:
    linear-gradient(105deg, rgba(3, 3, 3, .97), rgba(3, 3, 3, .88) 52%, rgba(23, 69, 47, .76)),
    url("assets/gta-cover.jpg");
  background-size: cover;
  background-position: center 42%;
  border-bottom: 1px solid rgba(201, 164, 72, .36);
}

.experiencias-hero {
  background:
    linear-gradient(105deg, rgba(3, 3, 3, .98), rgba(3, 3, 3, .9) 48%, rgba(23, 69, 47, .7)),
    url("assets/moresi-brand-activation.jpg");
  background-size: cover;
  background-position: center 46%;
}

.page-hero .container {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(280px, .62fr);
  gap: 58px;
  align-items: end;
}

.page-title {
  margin-top: 16px;
  font-size: clamp(4rem, 8.3vw, 8.6rem);
  line-height: .8;
}

.page-copy {
  color: rgba(255, 255, 255, .76);
  font-size: 1.06rem;
}

.page-copy p + p {
  margin-top: 16px;
}

.copy-stack {
  display: grid;
  gap: 18px;
}

.copy-stack p + p {
  margin-top: 0;
}

.about-quote {
  margin-top: 8px;
  padding: 22px 24px;
  border: 1px solid rgba(201, 164, 72, .45);
  border-radius: var(--radius);
  background: #050505;
  display: grid;
  gap: 8px;
}

.about-quote span {
  color: rgba(244, 217, 131, .78);
  font-size: clamp(1rem, 1.45vw, 1.25rem);
  font-weight: 850;
}

.about-quote strong {
  color: var(--gold-soft);
  font-family: "Barlow Condensed", "Manrope", system-ui, sans-serif;
  font-size: clamp(3.6rem, 7vw, 5.8rem);
  font-weight: 700;
  line-height: .82;
}

.feature-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.feature-card {
  position: relative;
  min-height: 242px;
  padding: 26px;
}

.feature-card h3 {
  margin-top: 0;
  font-size: 1.9rem;
}

.split-list {
  display: grid;
  padding: 0;
  margin: 32px 0 0;
  list-style: none;
  border-top: 1px solid var(--line-soft);
}

.split-list li {
  padding: 18px 0;
  border-bottom: 1px solid var(--line-soft);
  color: var(--ink);
  font-weight: 850;
}

.section.alt .split-list {
  border-top-color: rgba(255, 255, 255, .14);
}

.section.alt .split-list li {
  border-bottom-color: rgba(255, 255, 255, .14);
  color: #fff;
}

.leader-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  margin-top: 52px;
}

.leader-card {
  position: relative;
  min-height: 265px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 30px;
  background:
    linear-gradient(135deg, rgba(201, 164, 72, .14), transparent 48%),
    var(--paper-2);
}

.leader-card h3 {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 2.65rem;
  line-height: .84;
  text-transform: uppercase;
}

.leader-role {
  margin-top: 12px;
  color: var(--muted);
  font-weight: 800;
}

.step-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  margin-top: 52px;
  border: 1px solid rgba(201, 164, 72, .36);
  background: rgba(201, 164, 72, .36);
}

.step-card {
  min-height: 260px;
  padding: 30px;
  border: 0;
  border-radius: 0;
}

.sponsor-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.sponsor-card {
  overflow: hidden;
  background: #fff;
  box-shadow: 0 22px 60px rgba(0, 0, 0, .08);
}

.sponsor-logo {
  min-height: 198px;
  display: grid;
  place-items: center;
  padding: 32px;
  background: #fff;
  border-bottom: 1px solid rgba(17, 16, 12, .1);
}

.sponsor-logo img {
  max-width: 215px;
  max-height: 122px;
  width: auto;
  height: auto;
  object-fit: contain;
}

.sponsor-card h3 {
  padding: 22px 22px 4px;
  font-size: 1rem;
}

.sponsor-card p {
  min-height: 88px;
  padding: 0 22px 24px;
  color: var(--muted);
  font-size: .92rem;
}

.experience-grid {
  display: grid;
  grid-template-columns: 1.16fr .84fr;
  gap: 22px;
  margin-top: 52px;
}

.experience-card {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  border: 1px solid rgba(201, 164, 72, .45);
  border-radius: var(--radius);
  background: #050505;
  color: #fff;
}

.experience-card img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
  transition: transform .35s ease;
}

.experience-card:hover img {
  transform: scale(1.035);
}

.experience-card::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, .02), rgba(0, 0, 0, .86));
  content: "";
}

.experience-body {
  position: absolute;
  inset: auto 0 0;
  z-index: 1;
  padding: 34px;
}

.experience-body span {
  display: inline-flex;
  margin-bottom: 14px;
  padding: 6px 12px;
  border-radius: 999px;
  background: var(--gold);
  color: #090806;
  font-size: .74rem;
  font-weight: 900;
  text-transform: uppercase;
}

.experience-body h3 {
  font-family: "Barlow Condensed", sans-serif;
  font-size: clamp(2.45rem, 4.7vw, 4.25rem);
  line-height: .84;
  text-transform: uppercase;
}

.experience-body p {
  max-width: 620px;
  margin-top: 14px;
  color: rgba(255, 255, 255, .78);
}

.experience-mosaic {
  grid-template-columns: minmax(0, 1.08fr) minmax(0, .92fr);
  grid-auto-flow: dense;
  align-items: stretch;
}

.experience-mosaic .experience-card {
  min-height: 430px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, .18);
}

.experience-mosaic .experience-card img {
  min-height: 430px;
}

.experience-card-large {
  grid-row: span 2;
  min-height: 690px;
}

.experience-mosaic .experience-card-large img {
  min-height: 690px;
}

.experience-mosaic .experience-card::before {
  position: absolute;
  inset: 16px;
  z-index: 1;
  border: 1px solid rgba(201, 164, 72, .46);
  content: "";
  pointer-events: none;
}

.experience-mosaic .experience-body {
  z-index: 2;
  padding: 30px;
}

.experience-mosaic .experience-body h3 {
  font-size: clamp(2.1rem, 3.9vw, 3.65rem);
}

.experience-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.experience-tags em {
  display: inline-flex;
  padding: 6px 10px;
  border: 1px solid rgba(255, 255, 255, .24);
  border-radius: 999px;
  background: rgba(0, 0, 0, .28);
  color: rgba(255, 255, 255, .82);
  font-size: .68rem;
  font-style: normal;
  font-weight: 900;
  text-transform: uppercase;
}

.event-showcase {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(0, .88fr);
  gap: 22px;
  margin-top: 52px;
}

.event-card {
  position: relative;
  min-height: 380px;
  overflow: hidden;
  border: 1px solid rgba(201, 164, 72, .45);
  border-radius: var(--radius);
  background: #050505;
  color: #fff;
  box-shadow: 0 28px 70px rgba(0, 0, 0, .2);
}

.event-card-large {
  grid-row: span 2;
  min-height: 784px;
}

.event-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .35s ease;
}

.event-card:hover img {
  transform: scale(1.035);
}

.event-card::after {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, .06), rgba(0, 0, 0, .88)),
    linear-gradient(135deg, rgba(23, 69, 47, .38), transparent 42%);
  content: "";
}

.event-card-body {
  position: absolute;
  inset: auto 0 0;
  z-index: 1;
  padding: 34px;
}

.event-card-body span {
  display: inline-flex;
  margin-bottom: 14px;
  padding: 6px 12px;
  border: 1px solid rgba(201, 164, 72, .55);
  border-radius: 999px;
  background: rgba(5, 5, 5, .7);
  color: var(--gold-soft);
  font-size: .74rem;
  font-weight: 900;
  text-transform: uppercase;
}

.event-card-body h3 {
  max-width: 720px;
  font-family: "Barlow Condensed", sans-serif;
  font-size: clamp(2.65rem, 5.4vw, 5rem);
  line-height: .84;
  text-transform: uppercase;
}

.event-card-body p {
  max-width: 620px;
  margin-top: 14px;
  color: rgba(255, 255, 255, .78);
}

.event-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
  padding: 0;
  list-style: none;
}

.event-meta li {
  padding: 7px 10px;
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 999px;
  color: rgba(255, 255, 255, .78);
  font-size: .78rem;
  font-weight: 800;
}

.event-showcase.event-index {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: stretch;
}

.event-index .event-card-large {
  grid-column: span 1;
  grid-row: span 1;
  min-height: 560px;
}

.event-index .event-card {
  min-height: 560px;
}

.event-card-link {
  display: block;
  text-decoration: none;
}

.event-card-link .event-action {
  display: inline-flex;
  margin-top: 24px;
  color: var(--gold-soft);
  font-size: .88rem;
  font-weight: 900;
  text-transform: uppercase;
}

.event-portfolio {
  position: relative;
  overflow: hidden;
}

.event-portfolio + .event-portfolio {
  border-top: 1px solid rgba(201, 164, 72, .18);
}

.event-portfolio-dark {
  color: #fff;
  background:
    radial-gradient(circle at 100% 0%, rgba(23, 69, 47, .48), transparent 36%),
    #050505;
}

.portfolio-header {
  display: grid;
  grid-template-columns: minmax(0, .88fr) minmax(280px, .46fr);
  gap: 46px;
  align-items: end;
  margin-bottom: 34px;
}

.event-portfolio-dark .section-title,
.event-portfolio-dark .section-lead {
  color: #fff;
}

.event-portfolio-dark .section-lead {
  color: rgba(255, 255, 255, .74);
}

.portfolio-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.portfolio-pills span {
  display: inline-flex;
  padding: 8px 11px;
  border: 1px solid rgba(201, 164, 72, .42);
  border-radius: 999px;
  color: inherit;
  font-size: .72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.portfolio-gallery {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 16px;
}

.portfolio-photo {
  position: relative;
  grid-column: span 4;
  min-height: 360px;
  overflow: hidden;
  border: 1px solid rgba(201, 164, 72, .34);
  border-radius: var(--radius);
  background: #050505;
  box-shadow: 0 24px 58px rgba(0, 0, 0, .14);
}

.portfolio-photo-large {
  grid-column: span 7;
  grid-row: span 2;
  min-height: 680px;
}

.portfolio-photo-wide {
  grid-column: span 5;
}

.portfolio-photo-tall {
  grid-column: span 5;
  min-height: 680px;
}

.portfolio-photo img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  display: block;
  transition: transform .35s ease;
}

.portfolio-photo:hover img {
  transform: scale(1.025);
}

.portfolio-photo figcaption {
  position: absolute;
  inset: auto 16px 16px;
  padding: 14px 16px;
  border: 1px solid rgba(201, 164, 72, .3);
  border-radius: var(--radius);
  background: rgba(5, 5, 5, .74);
  color: rgba(255, 255, 255, .86);
  font-size: .86rem;
  font-weight: 800;
  backdrop-filter: blur(12px);
}

.portfolio-note {
  grid-column: span 5;
  min-height: 360px;
  display: grid;
  align-content: end;
  padding: 32px;
  border: 1px solid rgba(201, 164, 72, .34);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(255, 253, 247, .96), rgba(247, 243, 234, .86));
  box-shadow: 0 24px 58px rgba(0, 0, 0, .14);
}

.event-portfolio-dark .portfolio-note {
  background:
    linear-gradient(145deg, rgba(201, 164, 72, .16), rgba(23, 69, 47, .24)),
    rgba(5, 5, 5, .72);
}

.portfolio-note h3 {
  font-family: "Barlow Condensed", sans-serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: .9;
  text-transform: uppercase;
}

.portfolio-note p {
  margin-top: 14px;
  color: var(--muted);
}

.event-portfolio-dark .portfolio-note p {
  color: rgba(255, 255, 255, .74);
}

.cta-band {
  position: relative;
  overflow: hidden;
  padding: 88px 0;
  color: #fff;
  background:
    linear-gradient(135deg, rgba(3, 3, 3, .98), rgba(23, 69, 47, .86)),
    #050505;
  border-top: 1px solid rgba(201, 164, 72, .3);
}

.cta-band .container {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 34px;
}

.cta-band h2 {
  max-width: 840px;
  font-size: clamp(2.9rem, 5.8vw, 5.25rem);
  line-height: .82;
}

.cta-band p {
  margin-top: 14px;
  color: rgba(255, 255, 255, .72);
}

.cta-message {
  max-width: 900px;
}

.cta-band .cta-pretitle {
  max-width: 760px;
  color: rgba(255, 255, 255, .76);
  font-size: clamp(1.7rem, 3vw, 2.7rem);
  line-height: 1;
}

.cta-band .cta-destination {
  margin-top: 10px;
  color: var(--gold-soft);
  font-family: "Barlow Condensed", "Manrope", system-ui, sans-serif;
  font-size: clamp(4.8rem, 10vw, 9.25rem);
  font-weight: 700;
  line-height: .78;
}

.contact-panel {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 52px;
  align-items: start;
}

.contact-box {
  padding: 28px;
  background: var(--paper-2);
}

.contact-box + .contact-box {
  margin-top: 16px;
}

.contact-box strong {
  display: block;
  margin-bottom: 9px;
  font-size: .86rem;
  text-transform: uppercase;
}

.contact-form {
  padding: 34px;
  border: 1px solid rgba(201, 164, 72, .26);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(255, 253, 247, .96), rgba(247, 243, 234, .86));
  box-shadow: 0 24px 70px rgba(17, 16, 12, .09);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 30px;
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: var(--ink);
  font-weight: 900;
}

.contact-form label span {
  color: var(--muted);
  font-size: .74rem;
  text-transform: uppercase;
  letter-spacing: 0;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  min-height: 58px;
  padding: 0 16px;
  border: 1px solid rgba(17, 16, 12, .12);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .88);
  color: var(--ink);
  font: inherit;
  outline: none;
  transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}

.contact-form select {
  appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, var(--green) 50%),
    linear-gradient(135deg, var(--green) 50%, transparent 50%);
  background-position:
    calc(100% - 22px) 25px,
    calc(100% - 16px) 25px;
  background-size: 6px 6px;
  background-repeat: no-repeat;
}

.contact-form textarea {
  min-height: 152px;
  padding-top: 16px;
  resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: rgba(201, 164, 72, .72);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(201, 164, 72, .16);
}

.contact-form .full {
  grid-column: 1 / -1;
}

.contact-form .button {
  margin-top: 18px;
}

.site-footer {
  position: relative;
  overflow: hidden;
  padding: 56px 0 36px;
  background: #030303;
  color: #fff;
  border-top: 1px solid rgba(201, 164, 72, .34);
}

.site-footer .container {
  position: relative;
  z-index: 1;
}

.footer-main {
  display: grid;
  grid-template-columns: minmax(260px, 1.55fr) repeat(4, minmax(145px, 1fr));
  gap: 38px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, .13);
}

.footer-brand {
  max-width: 380px;
}

.footer-brand p {
  margin-top: 18px;
  color: rgba(255, 255, 255, .68);
  font-size: .94rem;
}

.footer-socials {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.footer-socials a {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 16px;
  border: 1px solid rgba(201, 164, 72, .42);
  border-radius: 999px;
  color: var(--gold-soft);
  font-size: .84rem;
  font-weight: 900;
}

.footer-col {
  display: grid;
  align-content: start;
  gap: 10px;
  color: rgba(255, 255, 255, .64);
  font-size: .9rem;
}

.footer-col strong {
  margin-bottom: 6px;
  color: #fff;
  font-size: .78rem;
  text-transform: uppercase;
}

.footer-col a,
.footer-socials a {
  transition: color .2s ease, border-color .2s ease, background .2s ease;
}

.footer-col a:hover {
  color: var(--gold-soft);
}

.footer-socials a:hover {
  border-color: var(--gold-soft);
  background: rgba(201, 164, 72, .1);
}

.footer-contact span {
  color: rgba(255, 255, 255, .48);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 30px;
  align-items: center;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(255, 255, 255, .13);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  color: rgba(255, 255, 255, .66);
  font-size: .92rem;
  font-weight: 850;
}

.footer-links a:hover {
  color: var(--gold-soft);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  margin-top: 26px;
  color: rgba(255, 255, 255, .48);
  font-size: .84rem;
}

.legal-content {
  max-width: 880px;
  display: grid;
  gap: 28px;
}

.legal-content article {
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(17, 16, 12, .12);
}

.legal-content article:last-child {
  border-bottom: 0;
}

.legal-content h2 {
  margin-bottom: 10px;
  font-size: clamp(1.6rem, 3vw, 2.35rem);
  line-height: 1;
}

.legal-content p,
.legal-content li {
  color: var(--muted);
}

.legal-content ul {
  margin: 12px 0 0;
  padding-left: 20px;
}

@media (max-width: 1060px) {
  .site-nav {
    display: none;
  }

  .menu-toggle {
    display: inline-grid;
  }

  .mobile-menu {
    position: fixed;
    inset: 96px 24px auto;
    z-index: 60;
    display: grid;
    gap: 6px;
    padding: 12px;
    border: 1px solid rgba(201, 164, 72, .34);
    border-radius: var(--radius);
    background: #050505;
    color: #fff;
    box-shadow: 0 30px 80px rgba(0, 0, 0, .3);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-12px);
    transition: opacity .2s ease, transform .2s ease;
  }

  .mobile-menu.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .mobile-menu a {
    padding: 14px;
    border-radius: var(--radius);
    font-weight: 900;
  }

  .mobile-menu a.current,
  .mobile-menu a:hover {
    background: var(--gold);
    color: #080806;
  }

  .grid-2,
  .event-showcase,
  .page-hero .container,
  .contact-panel,
  .footer-main {
    grid-template-columns: 1fr;
  }

  .event-card-large {
    grid-row: auto;
    min-height: 520px;
  }

  .event-showcase.event-index {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .event-index .event-card-large {
    grid-column: span 1;
  }

  .portfolio-header {
    grid-template-columns: 1fr;
  }

  .portfolio-photo,
  .portfolio-photo-wide,
  .portfolio-photo-tall,
  .portfolio-photo-large,
  .portfolio-note {
    grid-column: span 6;
    grid-row: auto;
    min-height: 460px;
  }

  .form-grid {
    grid-template-columns: 1fr;
  }

  .service-grid,
  .grid-3,
  .feature-list,
  .step-grid,
  .leader-grid,
  .sponsor-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 700px) {
  .container {
    width: min(350px, calc(100vw - 28px));
  }

  .nav-shell {
    min-height: 82px;
  }

  .brand-logo {
    width: 64px;
    max-width: 28vw;
  }

  .icon-link,
  .menu-toggle {
    width: 42px;
    height: 42px;
  }

  .hero {
    min-height: auto;
    background:
      linear-gradient(180deg, rgba(3, 3, 3, .86), rgba(3, 3, 3, .62) 45%, rgba(3, 3, 3, .93)),
      url("assets/gta-cover.jpg");
    background-size: cover;
    background-position: center 30%;
  }

  .hero::after {
    display: none;
  }

  .hero-content {
    max-width: 100%;
    padding: 82px 0 124px;
  }

  .hero-lead,
  .hero-actions {
    width: 100%;
    max-width: 100%;
  }

  h1 {
    font-size: clamp(3.4rem, 16vw, 5rem);
  }

  .page-title {
    font-size: clamp(2.7rem, 10.8vw, 3.8rem);
    line-height: .86;
  }

  .hero-actions,
  .page-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .proof-strip,
  .service-grid,
  .grid-3,
  .feature-list,
  .step-grid,
  .leader-grid,
  .sponsor-grid,
  .experience-grid,
  .event-showcase {
    grid-template-columns: 1fr;
  }

  .event-card,
  .event-card-large {
    min-height: 520px;
  }

  .event-showcase.event-index {
    grid-template-columns: 1fr;
  }

  .event-index .event-card-large {
    grid-column: span 1;
  }

  .portfolio-gallery {
    grid-template-columns: 1fr;
  }

  .portfolio-photo,
  .portfolio-photo-wide,
  .portfolio-photo-tall,
  .portfolio-photo-large,
  .portfolio-note {
    grid-column: 1;
    min-height: 430px;
  }

  .portfolio-photo-large,
  .portfolio-photo-tall {
    min-height: 520px;
  }

  .portfolio-photo figcaption {
    inset: auto 12px 12px;
    padding: 12px 14px;
  }

  .experience-mosaic .experience-card,
  .experience-card-large,
  .experience-mosaic .experience-card img,
  .experience-mosaic .experience-card-large img {
    min-height: 520px;
  }

  .experience-mosaic .experience-body {
    padding: 24px;
  }

  .experience-mosaic .experience-body h3 {
    font-size: clamp(2rem, 9.8vw, 3.2rem);
  }

  .experience-tags {
    gap: 6px;
  }

  .event-card-body {
    padding: 24px;
  }

  .proof-item {
    min-height: 132px;
    border-right: 0;
    border-bottom: 1px solid rgba(201, 164, 72, .22);
  }

  .proof-item:last-child {
    border-bottom: 0;
  }

  .section,
  .page-hero {
    padding: 76px 0;
  }

  .section-title {
    font-size: clamp(2.8rem, 14vw, 4.35rem);
  }

  .image-panel,
  .image-panel img {
    min-height: 430px;
    clip-path: none;
  }

  .caption-box {
    inset: auto 18px 18px;
  }

  .sponsor-logo {
    min-height: 180px;
  }

  .cta-band .container,
  .footer-grid,
  .footer-bottom {
    display: grid;
    grid-template-columns: 1fr;
  }

  .footer-main {
    gap: 28px;
  }
}
