@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Playfair+Display:ital,wght@0,600;0,700;1,600&display=swap");

:root {
  --gp-olive: #578d0b;
  --gp-olive-bright: #6ea90f;
  --gp-olive-dark: #4a7a09;
  --gp-forest: #10200f;
  --gp-ink: #1a1a20;
  --gp-charcoal: #32323a;
  --gp-paper: #ffffff;
  --gp-mist: #f5f5f5;
  --gp-line: rgba(87, 141, 11, 0.24);
  --gp-copy: #555962;
  --gp-radius-sm: 14px;
  --gp-radius: 24px;
  --gp-shadow: 0 24px 70px rgba(14, 20, 16, 0.12);
  --gp-ease: cubic-bezier(0.22, 1, 0.36, 1);
}

html {
  background: var(--gp-ink);
  scroll-behavior: smooth;
}

body.gp-enhanced {
  background: var(--gp-paper);
  color: var(--gp-ink);
  font-family: "Inter", system-ui, sans-serif !important;
  overflow-x: clip;
  text-rendering: optimizeLegibility;
}

.gp-enhanced .font-display,
.gp-enhanced h1,
.gp-enhanced h2,
.gp-enhanced h3:not(footer h3),
.gp-enhanced h4:not(footer h4) {
  font-family: "Playfair Display", Georgia, serif !important;
  letter-spacing: -0.035em;
  text-transform: none !important;
}

.gp-enhanced p,
.gp-enhanced li,
.gp-enhanced label,
.gp-enhanced input,
.gp-enhanced select,
.gp-enhanced textarea,
.gp-enhanced button,
.gp-enhanced a {
  font-family: "Inter", system-ui, sans-serif;
}

.gp-enhanced a,
.gp-enhanced button,
.gp-enhanced input,
.gp-enhanced select,
.gp-enhanced textarea {
  transition:
    color 220ms ease,
    background-color 220ms ease,
    border-color 220ms ease,
    box-shadow 220ms ease,
    transform 220ms ease;
}

.gp-enhanced a:focus-visible,
.gp-enhanced button:focus-visible,
.gp-enhanced input:focus-visible,
.gp-enhanced select:focus-visible,
.gp-enhanced textarea:focus-visible {
  outline: 3px solid rgba(110, 169, 15, 0.55);
  outline-offset: 4px;
}

.gp-scroll-progress {
  background: var(--gp-olive-bright);
  height: 3px;
  left: 0;
  position: fixed;
  top: 0;
  transform: scaleX(0);
  transform-origin: left center;
  width: 100%;
  z-index: 100;
}

/* Navigation */
.gp-enhanced nav {
  background: rgba(17, 20, 20, 0.96) !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: none !important;
  min-height: 80px;
  opacity: 1 !important;
  transform: none !important;
  visibility: visible !important;
}

.gp-enhanced nav.gp-nav-scrolled {
  background: rgba(17, 20, 20, 0.985) !important;
  box-shadow: 0 16px 44px rgba(0, 0, 0, 0.22) !important;
}

.gp-enhanced nav > div:first-child > div {
  min-height: 80px;
}

.gp-enhanced nav a:not(.gp-brand),
.gp-enhanced nav button {
  color: rgba(255, 255, 255, 0.86) !important;
}

.gp-enhanced nav a:not(.gp-brand) {
  font-size: 0.72rem !important;
  font-weight: 600 !important;
  letter-spacing: 0.065em !important;
  position: relative;
}

.gp-enhanced nav a:not(.gp-brand)::after {
  background: var(--gp-olive-bright);
  bottom: -10px;
  content: "";
  height: 1px;
  left: 0;
  position: absolute;
  transform: scaleX(0);
  transform-origin: right center;
  transition: transform 300ms var(--gp-ease);
  width: 100%;
}

.gp-enhanced nav a:not(.gp-brand):hover,
.gp-enhanced nav a[aria-current="page"] {
  color: var(--gp-olive-bright) !important;
}

.gp-enhanced nav a:not(.gp-brand):hover::after,
.gp-enhanced nav a[aria-current="page"]::after {
  transform: scaleX(1);
  transform-origin: left center;
}

.gp-brand {
  align-items: center;
  display: inline-flex !important;
  flex: 0 0 auto;
  line-height: 0;
  min-height: 0;
  position: relative;
}

.gp-logo {
  display: block;
  height: 52px;
  object-fit: contain;
  width: auto;
}

nav .gp-brand {
  background: transparent;
  border-radius: 0;
  box-shadow: none;
  margin: 0;
  padding: 0;
}

nav .gp-logo {
  filter: drop-shadow(0 5px 14px rgba(0, 0, 0, 0.28));
  max-width: 164px;
}

.gp-original-wordmark {
  clip: rect(0 0 0 0) !important;
  clip-path: inset(50%) !important;
  height: 1px !important;
  overflow: hidden !important;
  position: absolute !important;
  white-space: nowrap !important;
  width: 1px !important;
}

.gp-mobile-toggle {
  align-items: center;
  background: transparent;
  border: 1px solid rgba(110, 169, 15, 0.7);
  border-radius: 10px;
  display: none;
  height: 44px;
  justify-content: center;
  width: 44px;
}

.gp-mobile-toggle svg {
  height: 22px;
  width: 22px;
}

.gp-mobile-menu {
  background: #121515;
  border-top: 1px solid rgba(110, 169, 15, 0.34);
  display: none;
  padding: 14px 24px 24px;
}

.gp-mobile-menu a,
#mobile-menu a {
  border-bottom: 1px solid rgba(110, 169, 15, 0.25);
  color: #fff !important;
  display: block;
  font-size: 0.78rem !important;
  font-weight: 600;
  letter-spacing: 0.06em;
  padding: 14px 0 !important;
}

.gp-mobile-menu.is-open {
  display: block;
}

#mobile-menu {
  background: #121515 !important;
  border-color: rgba(110, 169, 15, 0.34) !important;
}

/* Heroes */
.gp-home-hero {
  background: var(--gp-ink);
  isolation: isolate;
  min-height: min(920px, 100svh) !important;
  overflow: hidden;
}

.gp-home-hero > .absolute.inset-0 > .bg-cover {
  opacity: 0;
}

.gp-hero-video {
  height: 100%;
  inset: 0;
  object-fit: cover;
  object-position: 62% center;
  position: absolute;
  transform: scale(1.04);
  width: 100%;
}

.gp-home-hero > .absolute.inset-0::after {
  background:
    linear-gradient(90deg, rgba(14, 17, 18, 0.98) 0%, rgba(14, 17, 18, 0.86) 36%, rgba(14, 17, 18, 0.38) 72%, rgba(14, 17, 18, 0.2) 100%),
    linear-gradient(0deg, rgba(14, 17, 18, 0.45), transparent 48%);
  content: "";
  inset: 0;
  pointer-events: none;
  position: absolute;
  z-index: 1;
}

.gp-home-hero > .absolute.inset-0 > .bg-gradient-to-r {
  opacity: 0 !important;
}

.gp-home-hero > .relative {
  padding-top: 10rem !important;
}

.gp-home-hero .grid {
  grid-template-columns: minmax(0, 1.28fr) minmax(340px, 0.72fr) !important;
}

.gp-home-hero h1 {
  color: #fff !important;
  font-size: clamp(4.5rem, 7vw, 7.5rem) !important;
  font-weight: 600 !important;
  letter-spacing: -0.065em !important;
  line-height: 0.82 !important;
  text-transform: none !important;
}

.gp-home-hero h1 span {
  color: var(--gp-olive-bright) !important;
}

.gp-home-hero p {
  color: rgba(255, 255, 255, 0.76) !important;
  font-size: 1.02rem !important;
  line-height: 1.75 !important;
}

.gp-home-hero .glass {
  background: rgba(15, 20, 16, 0.68) !important;
  border: 1px solid rgba(110, 169, 15, 0.35) !important;
  border-radius: 2px !important;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.24);
}

.gp-home-hero .glass .text-4xl {
  color: var(--gp-olive-bright) !important;
  font-family: "Playfair Display", Georgia, serif !important;
}

.gp-stat-total {
  font-size: clamp(1.72rem, 2.35vw, 2.55rem) !important;
  letter-spacing: -0.055em !important;
  white-space: nowrap;
}

.gp-home-hero .animate-float {
  animation: none !important;
}

.gp-video-toggle {
  align-items: center;
  backdrop-filter: blur(8px);
  background: rgba(12, 16, 17, 0.66);
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 999px;
  bottom: 32px;
  color: #fff;
  display: flex;
  height: 48px;
  justify-content: center;
  position: absolute;
  right: 34px;
  width: 48px;
  z-index: 20;
}

.gp-video-toggle:hover {
  background: var(--gp-olive-dark);
  transform: scale(1.06);
}

.gp-video-toggle svg {
  height: 18px;
  width: 18px;
}

.gp-page-hero {
  align-items: center;
  background-image:
    linear-gradient(90deg, rgba(14, 17, 18, 0.96) 0%, rgba(14, 17, 18, 0.72) 50%, rgba(14, 17, 18, 0.18) 100%),
    var(--gp-page-image) !important;
  background-position: center !important;
  background-size: cover !important;
  display: flex;
  isolation: isolate;
  min-height: 570px;
  padding-bottom: 5rem !important;
  padding-top: 9.5rem !important;
  position: relative;
}

.gp-page-hero::after {
  background: linear-gradient(180deg, transparent 60%, rgba(14, 17, 18, 0.35));
  content: "";
  inset: 0;
  pointer-events: none;
  position: absolute;
  z-index: -1;
}

.gp-page-hero > div {
  position: relative;
  width: 100%;
  z-index: 1;
}

.gp-page-hero > div > div {
  max-width: 720px !important;
}

.gp-page-hero h1 {
  color: #fff !important;
  font-size: clamp(4rem, 7.4vw, 7.2rem) !important;
  font-weight: 600 !important;
  letter-spacing: -0.06em !important;
  line-height: 0.92 !important;
  text-transform: none !important;
}

.gp-page-hero h1 span {
  color: var(--gp-olive-bright) !important;
}

.gp-page-hero p {
  color: rgba(255, 255, 255, 0.78) !important;
  font-size: 1.05rem !important;
  line-height: 1.7 !important;
  max-width: 620px;
}

.gp-page-hero span[class*="tracking-"] {
  color: var(--gp-olive-bright) !important;
  font-size: 0.73rem !important;
  font-weight: 700 !important;
  letter-spacing: 0.18em !important;
}

/* Buttons and controls */
.gp-enhanced .btn-olive {
  background: var(--gp-olive) !important;
  border: 1px solid var(--gp-olive) !important;
  border-radius: 4px !important;
  box-shadow: none !important;
}

.gp-enhanced .btn-olive:hover {
  background: var(--gp-olive-dark) !important;
  border-color: var(--gp-olive-bright) !important;
  box-shadow: 0 16px 34px rgba(87, 141, 11, 0.24) !important;
  transform: translateY(-2px);
}

.gp-home-hero a[class*="border-white"] {
  border-color: rgba(110, 169, 15, 0.72) !important;
  border-radius: 4px !important;
}

.gp-enhanced input,
.gp-enhanced select,
.gp-enhanced textarea {
  background: #fff !important;
  border: 1px solid #d7dad5 !important;
  border-radius: 7px !important;
  box-shadow: inset 0 1px 0 rgba(0, 0, 0, 0.02);
  color: var(--gp-ink) !important;
  min-height: 52px;
}

.gp-enhanced textarea {
  min-height: 128px;
}

.gp-enhanced input:focus,
.gp-enhanced select:focus,
.gp-enhanced textarea:focus {
  border-color: var(--gp-olive) !important;
  box-shadow: 0 0 0 4px rgba(87, 141, 11, 0.11) !important;
}

.gp-enhanced label {
  color: #383d3a !important;
  font-size: 0.78rem !important;
  font-weight: 650 !important;
  letter-spacing: 0.015em;
}

/* Editorial content rhythm */
body.gp-enhanced > section:not(.gp-home-hero):not(.gp-page-hero):not(.gp-media-story) {
  position: relative;
}

.gp-enhanced section[class*="py-24"],
.gp-enhanced section[class*="py-20"] {
  padding-bottom: clamp(5rem, 8vw, 8rem) !important;
  padding-top: clamp(5rem, 8vw, 8rem) !important;
}

.gp-enhanced section.bg-white,
.gp-enhanced section:not([class*="bg-"]):not(.gp-page-hero):not(.gp-home-hero):not(.gp-media-story):not(.gp-wp-section) {
  background: #fff !important;
}

.gp-enhanced section.bg-gray-50:not(.gp-page-hero),
.gp-enhanced section[class~="bg-olive-50"]:not(.gp-page-hero) {
  background: var(--gp-mist) !important;
}

.gp-enhanced section.bg-dark-900 {
  background: var(--gp-ink) !important;
}

.gp-enhanced section.bg-olive-500 {
  background-color: #10200f !important;
  background-image:
    radial-gradient(circle at 78% 20%, rgba(110, 169, 15, 0.2), transparent 36%),
    linear-gradient(135deg, #10200f, #1a1f18) !important;
  border-bottom: 1px solid rgba(110, 169, 15, 0.22);
  border-top: 1px solid rgba(110, 169, 15, 0.22);
}

.gp-enhanced section h2 {
  font-size: clamp(2.8rem, 5.2vw, 5.4rem) !important;
  font-weight: 600 !important;
  line-height: 0.98 !important;
}

.gp-enhanced section h3 {
  font-weight: 600 !important;
  line-height: 1.08 !important;
}

.gp-enhanced section p,
.gp-enhanced section li {
  line-height: 1.75 !important;
}

.gp-enhanced section img:not(.gp-logo) {
  border-radius: var(--gp-radius) !important;
  box-shadow: var(--gp-shadow) !important;
  object-fit: cover;
}

.gp-enhanced section .rounded-2xl,
.gp-enhanced section .rounded-3xl,
.gp-enhanced section .rounded-xl {
  border-radius: var(--gp-radius-sm) !important;
}

.gp-enhanced section .shadow-2xl,
.gp-enhanced section .shadow-xl,
.gp-enhanced section .shadow-lg {
  box-shadow: var(--gp-shadow) !important;
}

.gp-enhanced section a.group {
  border: 1px solid var(--gp-line);
  box-shadow: 0 14px 40px rgba(14, 20, 16, 0.08) !important;
}

.gp-enhanced section a.group:hover {
  border-color: rgba(87, 141, 11, 0.58);
  box-shadow: 0 28px 70px rgba(14, 20, 16, 0.15) !important;
  transform: translateY(-8px);
}

.gp-enhanced section a.group img {
  box-shadow: none !important;
}

.gp-enhanced :not(section).bg-olive-100,
.gp-enhanced :not(section).bg-olive-500 {
  background-color: rgba(87, 141, 11, 0.12) !important;
}

.gp-enhanced .text-olive-500,
.gp-enhanced .text-olive-400,
.gp-enhanced .text-olive-600 {
  color: var(--gp-olive) !important;
}

.gp-enhanced .bg-dark-800 {
  background: #23262a !important;
}

/* Page-specific image proportions */
.gp-enhanced[data-gp-page="como-funciona"] section:nth-of-type(2) img {
  aspect-ratio: 16 / 10;
  min-height: 320px;
  width: 100%;
}

.gp-enhanced[data-gp-page="torneos-premia"] section img[alt="Torneo"] {
  aspect-ratio: 4 / 3;
}

.gp-enhanced[data-gp-page="dinamicas-premia"] section img[alt="Dinámicas"] {
  aspect-ratio: 16 / 10;
  min-height: 420px;
  width: 100%;
}

.gp-enhanced[data-gp-page="contacto"] form {
  background: var(--gp-mist);
  border-left: 3px solid var(--gp-olive);
  padding: clamp(1.5rem, 3.5vw, 3rem);
}

.gp-enhanced[data-gp-page="contacto"] section:nth-of-type(2) > div > div > div:last-child {
  padding: clamp(1.5rem, 2.8vw, 2.5rem) 0;
}

/* Media story: adds imagery without changing copy or section order. */
.gp-media-story {
  background-color: #1a1a20 !important;
  border-bottom: 1px solid rgba(110, 169, 15, 0.22);
  border-top: 1px solid rgba(110, 169, 15, 0.22);
  padding: clamp(3.5rem, 6vw, 6rem) 1.5rem;
}

.gp-media-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  margin: 0 auto;
  max-width: 1280px;
}

.gp-media-frame {
  background: #23262a;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: var(--gp-radius);
  box-shadow: 0 32px 90px rgba(0, 0, 0, 0.28);
  min-height: 280px;
  overflow: hidden;
  position: relative;
}

.gp-media-frame:first-child {
  grid-column: span 7;
  min-height: 520px;
}

.gp-media-frame:nth-child(2),
.gp-media-frame:nth-child(3) {
  grid-column: span 5;
}

.gp-media-frame:nth-child(3) {
  margin-top: -252px;
}

.gp-media-frame img,
.gp-media-frame video {
  height: 100%;
  inset: 0;
  object-fit: cover;
  position: absolute;
  transition: transform 900ms var(--gp-ease), filter 600ms ease;
  width: 100%;
}

.gp-media-frame:hover img,
.gp-media-frame:hover video {
  transform: scale(1.035);
}

.gp-media-frame::after {
  background: linear-gradient(180deg, transparent 62%, rgba(10, 12, 12, 0.42));
  content: "";
  inset: 0;
  pointer-events: none;
  position: absolute;
}

/* Golf 1 editorial archive */
.gp-archive-stats {
  background: transparent !important;
  margin-top: -78px;
  padding: 0 0 1.5rem;
  position: relative;
  z-index: 5;
}

.gp-archive-stats .grid {
  background: rgba(16, 19, 19, 0.94);
  border: 1px solid rgba(110, 169, 15, 0.28);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.25);
}

.gp-archive-stats .grid > div {
  align-items: center;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  justify-content: center;
  min-height: 154px;
  padding: 1.5rem;
  text-align: center;
}

.gp-archive-stats strong {
  color: var(--gp-olive-bright);
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(2.25rem, 4vw, 3.8rem);
  font-weight: 500;
  line-height: 1;
}

.gp-archive-stats span {
  color: rgba(255, 255, 255, 0.64);
  font-size: 0.71rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.gp-featured-story {
  background: #121515;
  border: 1px solid rgba(110, 169, 15, 0.2);
  box-shadow: var(--gp-shadow);
  color: #fff;
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(320px, 0.65fr);
  min-height: 540px;
  overflow: hidden;
  text-decoration: none;
}

.gp-featured-visual {
  min-height: 540px;
  overflow: hidden;
  position: relative;
}

.gp-featured-visual::after {
  background: linear-gradient(90deg, transparent 58%, rgba(18, 21, 21, 0.44));
  content: "";
  inset: 0;
  pointer-events: none;
  position: absolute;
}

.gp-featured-visual img {
  border-radius: 0 !important;
  box-shadow: none !important;
  height: 100%;
  object-fit: cover;
  position: absolute;
  transition: transform 900ms var(--gp-ease);
  width: 100%;
}

.gp-featured-story:hover .gp-featured-visual img {
  transform: scale(1.035);
}

.gp-featured-copy {
  align-self: center;
  padding: clamp(2rem, 5vw, 4.75rem);
}

.gp-featured-copy > span,
.gp-gallery-heading > span {
  color: var(--gp-olive-bright);
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.gp-featured-copy h2 {
  color: #fff !important;
  font-size: clamp(2.6rem, 4.4vw, 4.8rem) !important;
  margin: 1rem 0 1.5rem;
}

.gp-featured-copy p {
  color: rgba(255, 255, 255, 0.66) !important;
  line-height: 1.8 !important;
}

.gp-featured-copy b,
.gp-blog-card b {
  color: var(--gp-olive-bright);
  display: inline-flex;
  font-size: 0.78rem;
  gap: 0.45rem;
  letter-spacing: 0.08em;
  margin-top: 1.75rem;
  text-transform: uppercase;
}

.gp-featured-copy i {
  font-style: normal;
  transition: transform 250ms ease;
}

.gp-featured-story:hover .gp-featured-copy i {
  transform: translate(3px, -3px);
}

.gp-blog-heading {
  align-items: end;
  display: flex;
  gap: 2rem;
  justify-content: space-between;
  margin-bottom: 3.5rem;
}

.gp-blog-heading > a {
  border-bottom: 1px solid rgba(73, 89, 20, 0.35);
  color: var(--gp-olive-deep);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding-bottom: 0.5rem;
  text-transform: uppercase;
}

.gp-blog-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.gp-blog-card {
  background: #fff;
  border: 1px solid rgba(24, 28, 27, 0.09);
  box-shadow: 0 14px 48px rgba(14, 17, 18, 0.08);
  color: inherit;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  overflow: hidden;
  text-decoration: none;
  transition: transform 420ms var(--gp-ease), box-shadow 420ms var(--gp-ease), border-color 420ms ease;
}

.gp-blog-card:hover {
  border-color: rgba(110, 169, 15, 0.48);
  box-shadow: 0 26px 70px rgba(14, 17, 18, 0.14);
  transform: translateY(-8px);
}

.gp-blog-card figure {
  aspect-ratio: 4 / 3;
  margin: 0;
  overflow: hidden;
  position: relative;
}

.gp-blog-card figure img {
  border-radius: 0 !important;
  box-shadow: none !important;
  height: 100%;
  object-fit: cover;
  transition: transform 700ms var(--gp-ease), filter 450ms ease;
  width: 100%;
}

.gp-blog-card:hover figure img {
  filter: saturate(1.08);
  transform: scale(1.055);
}

.gp-blog-card figure span {
  background: rgba(16, 19, 19, 0.88);
  bottom: 0.8rem;
  color: #fff;
  font-size: 0.66rem;
  font-weight: 700;
  left: 0.8rem;
  letter-spacing: 0.1em;
  padding: 0.45rem 0.65rem;
  position: absolute;
  text-transform: uppercase;
}

.gp-blog-card > div {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 1.7rem;
}

.gp-blog-card small {
  color: var(--gp-olive);
  font-size: 0.67rem;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.gp-blog-card h3 {
  color: var(--gp-ink) !important;
  font-family: "Playfair Display", Georgia, serif !important;
  font-size: clamp(1.55rem, 2vw, 2rem) !important;
  line-height: 1.12 !important;
  margin: 0.75rem 0 1rem;
  text-transform: none !important;
}

.gp-blog-card p {
  color: #646b67 !important;
  font-size: 0.9rem !important;
  line-height: 1.7 !important;
}

.gp-blog-card b {
  margin-top: auto;
  padding-top: 1.5rem;
}

.gp-blog-gallery-section {
  background: #141717 !important;
}

.gp-gallery-heading {
  margin-bottom: 3.5rem;
  max-width: 680px;
}

.gp-gallery-heading h2 {
  color: #fff !important;
  font-size: clamp(3rem, 6vw, 5.8rem) !important;
  margin: 1rem 0 1.25rem;
}

.gp-gallery-heading p {
  color: rgba(255, 255, 255, 0.62) !important;
}

.gp-blog-gallery {
  display: grid;
  gap: 1rem;
  grid-auto-rows: 270px;
  grid-template-columns: repeat(12, minmax(0, 1fr));
}

.gp-blog-gallery figure {
  grid-column: span 4;
  margin: 0;
  overflow: hidden;
}

.gp-blog-gallery .gp-gallery-wide {
  grid-column: span 8;
}

.gp-blog-gallery img {
  border-radius: 0 !important;
  box-shadow: none !important;
  height: 100%;
  object-fit: cover;
  transition: transform 700ms var(--gp-ease), filter 500ms ease;
  width: 100%;
}

.gp-blog-gallery figure:hover img {
  filter: saturate(1.08);
  transform: scale(1.04);
}

/* Footer */
.gp-enhanced footer {
  background: #101313 !important;
  border-top: 1px solid rgba(110, 169, 15, 0.3) !important;
}

footer .gp-brand {
  padding: 0;
}

footer .gp-logo {
  background: transparent;
  border-radius: 0;
  filter: drop-shadow(0 5px 14px rgba(0, 0, 0, 0.25));
  height: 84px;
  max-width: 174px;
  padding: 0;
  width: auto;
}

.gp-enhanced footer h4 {
  font-family: "Inter", system-ui, sans-serif !important;
  font-size: 0.76rem !important;
  letter-spacing: 0.09em !important;
}

.gp-enhanced footer p,
.gp-enhanced footer a,
.gp-enhanced footer li {
  font-size: 0.8rem !important;
  line-height: 1.65 !important;
}

/* Motion preparation only becomes active when JS is ready. */
.gp-motion-ready .gp-reveal,
.gp-motion-ready .gp-media-frame {
  opacity: 0;
  visibility: hidden;
}

@media (max-width: 1023px) {
  .gp-enhanced nav > div:first-child > div {
    min-height: 72px;
  }

  nav .gp-brand {
    min-height: 0;
    padding: 0;
  }

  nav .gp-logo {
    height: 44px;
    max-width: 136px;
    width: auto;
  }

  footer .gp-logo {
    height: 72px;
    max-width: 150px;
    width: auto;
  }

  .gp-mobile-toggle,
  #mobile-menu-btn {
    align-items: center;
    border: 1px solid rgba(110, 169, 15, 0.7);
    border-radius: 10px;
    display: flex !important;
    height: 44px;
    justify-content: center;
    width: 44px;
  }

  .gp-page-hero {
    min-height: 500px;
    padding-top: 8.5rem !important;
  }

  .gp-home-hero .grid {
    grid-template-columns: minmax(0, 1fr) !important;
  }

  .gp-mobile-menu.is-open {
    display: block;
  }

  .gp-home-hero h1 {
    font-size: clamp(4.2rem, 12vw, 6.6rem) !important;
  }

  .gp-media-frame:first-child {
    grid-column: span 12;
    min-height: 480px;
  }

  .gp-media-frame:nth-child(2),
  .gp-media-frame:nth-child(3) {
    grid-column: span 6;
    min-height: 280px;
  }

  .gp-media-frame:nth-child(3) {
    margin-top: 0;
  }

  .gp-featured-story {
    grid-template-columns: 1fr;
  }

  .gp-featured-visual {
    min-height: 460px;
  }

  .gp-blog-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1024px) {
  .gp-mobile-menu {
    display: none !important;
  }
}

@media (max-width: 767px) {
  .gp-enhanced nav {
    min-height: 72px;
  }

  .gp-home-hero {
    min-height: 780px !important;
  }

  .gp-home-hero > .absolute.inset-0::after {
    background:
      linear-gradient(180deg, rgba(14, 17, 18, 0.48) 0%, rgba(14, 17, 18, 0.72) 42%, rgba(14, 17, 18, 0.98) 88%),
      linear-gradient(90deg, rgba(14, 17, 18, 0.24), rgba(14, 17, 18, 0.14));
  }

  .gp-hero-video {
    object-position: 65% center;
  }

  .gp-home-hero > .relative {
    align-items: flex-end;
    display: flex;
    min-height: 780px;
    padding-bottom: 6rem !important;
    padding-top: 8rem !important;
  }

  .gp-home-hero h1 {
    font-size: clamp(3.2rem, 15.2vw, 4.6rem) !important;
    letter-spacing: -0.07em !important;
    line-height: 0.86 !important;
  }

  .gp-home-hero p {
    font-size: 0.94rem !important;
  }

  .gp-home-hero .flex.flex-wrap.gap-4 {
    align-items: stretch;
    display: grid !important;
    grid-template-columns: 1fr;
  }

  .gp-home-hero .flex.flex-wrap.gap-4 a {
    justify-content: center;
    width: 100%;
  }

  .gp-video-toggle {
    bottom: 22px;
    right: 20px;
  }

  .gp-page-hero {
    background-image:
      linear-gradient(180deg, rgba(14, 17, 18, 0.38) 0%, rgba(14, 17, 18, 0.92) 88%),
      var(--gp-page-image) !important;
    background-position: 58% center !important;
    min-height: 520px;
    padding-bottom: 4rem !important;
    padding-top: 8rem !important;
  }

  .gp-page-hero h1 {
    font-size: clamp(3.6rem, 17vw, 5.2rem) !important;
  }

  .gp-page-hero p {
    font-size: 0.94rem !important;
  }

  .gp-enhanced section[class*="py-24"],
  .gp-enhanced section[class*="py-20"] {
    padding-bottom: 4.5rem !important;
    padding-top: 4.5rem !important;
  }

  .gp-enhanced section h2 {
    font-size: clamp(2.5rem, 12vw, 3.8rem) !important;
  }

  .gp-enhanced section img:not(.gp-logo) {
    border-radius: 16px !important;
  }

  .gp-enhanced[data-gp-page="como-funciona"] section:nth-of-type(2) img,
  .gp-enhanced[data-gp-page="dinamicas-premia"] section img[alt="Dinámicas"] {
    min-height: 240px;
  }

  .gp-enhanced[data-gp-page="contacto"] form {
    margin-left: -1.5rem;
    margin-right: -1.5rem;
    padding: 1.5rem;
  }

  .gp-media-story {
    padding: 3.5rem 1rem;
  }

  .gp-media-grid {
    gap: 12px;
  }

  .gp-media-frame:first-child,
  .gp-media-frame:nth-child(2),
  .gp-media-frame:nth-child(3) {
    grid-column: span 12;
    min-height: 250px;
  }

  .gp-media-frame:first-child {
    min-height: 430px;
  }

  .gp-archive-stats {
    margin-top: -42px;
    padding: 0 1rem 1rem;
  }

  .gp-archive-stats > div {
    padding: 0;
  }

  .gp-archive-stats .grid > div {
    min-height: 110px;
    padding: 1rem 0.5rem;
  }

  .gp-archive-stats strong {
    font-size: 2.15rem;
  }

  .gp-archive-stats span {
    font-size: 0.55rem;
    letter-spacing: 0.06em;
  }

  .gp-featured-story {
    display: block;
  }

  .gp-featured-visual {
    min-height: 360px;
  }

  .gp-featured-copy {
    padding: 2rem 1.5rem 2.5rem;
  }

  .gp-blog-heading {
    align-items: flex-start;
    flex-direction: column;
    margin-bottom: 2.5rem;
  }

  .gp-blog-grid {
    grid-template-columns: 1fr;
  }

  .gp-blog-gallery {
    grid-auto-rows: 240px;
    grid-template-columns: 1fr;
  }

  .gp-blog-gallery figure,
  .gp-blog-gallery .gp-gallery-wide {
    grid-column: auto;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

  .gp-motion-ready .gp-reveal,
  .gp-motion-ready .gp-media-frame {
    opacity: 1;
    visibility: visible;
  }
}

/* WordPress content migration */
.gp-shell {
  margin: 0 auto;
  max-width: 1280px;
  padding-inline: 1.5rem;
  width: 100%;
}

.gp-wp-section {
  overflow: clip;
  padding-block: clamp(5rem, 8vw, 8.5rem);
  position: relative;
}

.gp-enhanced section.gp-section-dark {
  background:
    radial-gradient(circle at 82% 12%, rgba(110, 169, 15, 0.14), transparent 30%),
    #111414 !important;
  color: #fff;
}

.gp-enhanced section.gp-section-ink {
  background:
    linear-gradient(120deg, rgba(110, 169, 15, 0.08), transparent 36%),
    var(--gp-ink) !important;
  color: #fff;
}

.gp-label {
  color: var(--gp-olive-bright);
  display: block;
  font-size: 0.67rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  margin-bottom: 1rem;
  text-transform: uppercase;
}

.gp-section-heading {
  margin-bottom: clamp(2.5rem, 5vw, 4.5rem);
  max-width: 820px;
}

.gp-section-heading h2,
.gp-about-grid h2,
.gp-legal-callout h2 {
  font-size: clamp(2.4rem, 5vw, 5.6rem);
  line-height: 0.98;
  margin: 0;
}

.gp-section-heading p,
.gp-about-grid p,
.gp-legal-callout p {
  color: rgba(255, 255, 255, 0.64);
  font-size: 1rem;
  line-height: 1.8;
  margin-top: 1.25rem;
}

.gp-about-grid {
  align-items: center;
  display: grid;
  gap: clamp(2.5rem, 6vw, 7rem);
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
}

.gp-about-grid > div {
  max-width: 620px;
}

.gp-text-link {
  align-items: center;
  border-bottom: 1px solid rgba(110, 169, 15, 0.72);
  color: #fff;
  display: inline-flex;
  font-size: 0.76rem;
  font-weight: 700;
  gap: 0.7rem;
  letter-spacing: 0.08em;
  margin-top: 1.25rem;
  padding-bottom: 0.55rem;
  text-transform: uppercase;
}

.gp-text-link:hover {
  color: var(--gp-olive-bright);
  gap: 1rem;
}

.gp-editorial-photo {
  margin: 0;
  min-height: 580px;
  overflow: hidden;
  position: relative;
}

.gp-editorial-photo::after {
  background: linear-gradient(180deg, transparent 52%, rgba(8, 10, 9, 0.88));
  content: "";
  inset: 0;
  pointer-events: none;
  position: absolute;
}

.gp-editorial-photo img {
  height: 100% !important;
  inset: 0;
  object-fit: cover;
  position: absolute;
  width: 100% !important;
}

.gp-editorial-photo figcaption {
  align-items: flex-end;
  bottom: 0;
  display: flex;
  gap: 2rem;
  justify-content: space-between;
  left: 0;
  padding: 2rem;
  position: absolute;
  right: 0;
  z-index: 1;
}

.gp-editorial-photo strong {
  color: #fff;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(1.55rem, 3vw, 2.6rem);
  line-height: 1;
}

.gp-editorial-photo span {
  color: var(--gp-olive-bright);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.gp-process-rail {
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.gp-process-rail article {
  border-right: 1px solid rgba(255, 255, 255, 0.14);
  min-height: 300px;
  padding: 2rem 1.5rem 2.5rem 0;
}

.gp-process-rail article:not(:first-child) {
  padding-left: 1.5rem;
}

.gp-process-rail article:last-child {
  border-right: 0;
}

.gp-process-rail article > span,
.gp-service-list article > span {
  color: var(--gp-olive-bright);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.9rem;
}

.gp-process-rail h3,
.gp-service-list h3,
.gp-variable-grid h3,
.gp-dynamic-card h3 {
  color: #fff;
  font-size: 1.55rem;
  line-height: 1.1;
  margin: 4rem 0 1rem;
}

.gp-process-rail p,
.gp-service-list p,
.gp-variable-grid p,
.gp-dynamic-card p {
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.88rem;
  line-height: 1.75;
}

.gp-testimonials {
  background: #f4f5f2;
  color: var(--gp-ink);
}

.gp-testimonials .gp-section-heading p {
  color: var(--gp-copy);
}

.gp-testimonial-track {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(5, minmax(280px, 1fr));
  overflow-x: auto;
  padding: 0.25rem 0.25rem 1.5rem;
  scroll-snap-type: x mandatory;
}

.gp-testimonial-track blockquote {
  background: #fff;
  border-top: 3px solid var(--gp-olive);
  box-shadow: 0 16px 42px rgba(17, 20, 18, 0.08);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  margin: 0;
  min-height: 310px;
  padding: 2rem;
  scroll-snap-align: start;
}

.gp-testimonial-track blockquote > p {
  color: var(--gp-ink);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.35rem;
  line-height: 1.45;
}

.gp-testimonial-track blockquote footer {
  background: transparent;
  border: 0;
  display: flex;
  flex-direction: column;
  margin-top: 2rem;
  padding: 0;
}

.gp-testimonial-track footer strong {
  color: var(--gp-ink);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.gp-testimonial-track footer span {
  color: var(--gp-copy);
  font-size: 0.75rem;
  margin-top: 0.3rem;
}

.gp-brand-system {
  margin-top: 2.75rem;
}

.gp-brand-logos {
  display: grid;
  gap: 1px;
  grid-template-columns: repeat(7, minmax(0, 1fr));
}

.gp-brand-logos figure {
  align-items: center;
  background: #fff;
  border: 1px solid rgba(26, 26, 32, 0.08);
  display: flex;
  justify-content: center;
  margin: 0;
  min-height: 122px;
  padding: 1.5rem;
}

.gp-brand-logos img {
  filter: grayscale(1);
  height: 64px !important;
  max-width: 100%;
  object-fit: contain !important;
  opacity: 0.66;
  width: auto !important;
}

.gp-brand-logos figure:hover img {
  filter: grayscale(0);
  opacity: 1;
}

.gp-partner-names {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-top: 1.5rem;
}

.gp-partner-names span {
  border: 1px solid rgba(26, 26, 32, 0.14);
  color: rgba(26, 26, 32, 0.7);
  font-size: 0.64rem;
  font-weight: 650;
  letter-spacing: 0.055em;
  padding: 0.55rem 0.75rem;
  text-transform: uppercase;
}

.gp-variable-grid {
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.gp-variable-grid article {
  border-right: 1px solid rgba(255, 255, 255, 0.15);
  min-height: 290px;
  padding: 2rem;
}

.gp-variable-grid article:first-child {
  padding-left: 0;
}

.gp-variable-grid article:last-child {
  border-right: 0;
}

.gp-variable-grid article > span {
  color: var(--gp-olive-bright);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.18em;
}

.gp-variable-grid h3 {
  margin-top: 5rem;
}

.gp-dynamics-grid {
  display: grid !important;
  gap: 1px !important;
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
}

.gp-dynamic-card {
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(255, 255, 255, 0.11);
  min-height: 320px;
  padding: 2rem;
}

.gp-dynamic-card > span {
  color: var(--gp-olive-bright);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.17em;
}

.gp-dynamic-card h3 {
  margin-top: 5rem;
}

.gp-service-list {
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.gp-service-list article {
  align-items: start;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  display: grid;
  gap: 2rem;
  grid-template-columns: 82px minmax(0, 1fr);
  padding: 2rem 0;
}

.gp-service-list h3 {
  margin: 0 0 0.55rem;
}

.gp-tournament-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
}

.gp-archive-controls {
  align-items: end;
  background: #111414;
  color: #fff;
  display: grid;
  gap: 1rem;
  grid-template-columns: minmax(0, 1fr) minmax(180px, 0.34fr) auto;
  margin-bottom: 2rem;
  padding: 1.25rem;
}

.gp-archive-controls label {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.gp-archive-controls label > span {
  color: rgba(255, 255, 255, 0.54);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.gp-archive-controls input,
.gp-archive-controls select {
  appearance: none;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 0;
  color: #fff;
  font-size: 0.9rem;
  min-height: 50px;
  padding: 0.8rem 1rem;
  width: 100%;
}

.gp-archive-controls select {
  color-scheme: dark;
}

.gp-archive-controls input::placeholder {
  color: rgba(255, 255, 255, 0.42);
}

.gp-archive-controls [role="status"] {
  color: var(--gp-olive-bright);
  font-size: 0.72rem;
  font-weight: 700;
  margin: 0 0 1rem;
  min-width: 82px;
  text-align: right;
  text-transform: uppercase;
}

.gp-archive-grid {
  align-items: stretch;
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
}

.gp-archive-card {
  background: #fff;
  border: 1px solid rgba(26, 26, 32, 0.08);
  min-width: 0;
}

.gp-archive-card > button {
  background: transparent;
  border: 0;
  color: inherit;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 0;
  text-align: left;
  width: 100%;
}

.gp-archive-card figure {
  aspect-ratio: 4 / 3;
  background: #dfe4dc;
  margin: 0;
  overflow: hidden;
  position: relative;
}

.gp-archive-card figure img {
  height: 100%;
  object-fit: cover;
  transition: transform 700ms var(--gp-ease);
  width: 100%;
}

.gp-archive-card:hover figure img,
.gp-archive-card:focus-within figure img {
  transform: scale(1.045);
}

.gp-archive-card figure span {
  background: #111414;
  bottom: 0;
  color: #fff;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 0.65rem 0.8rem;
  position: absolute;
  right: 0;
  text-transform: uppercase;
}

.gp-archive-card button > div {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 1.45rem;
}

.gp-archive-card small {
  color: var(--gp-olive-dark);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.gp-archive-card h3 {
  color: var(--gp-ink);
  font-size: 1.35rem;
  line-height: 1.08;
  margin: 0.7rem 0 0;
}

.gp-archive-card p {
  color: var(--gp-copy);
  display: -webkit-box;
  font-size: 0.83rem;
  -webkit-line-clamp: 3;
  line-height: 1.6;
  margin-top: 0.8rem;
  overflow: hidden;
  -webkit-box-orient: vertical;
}

.gp-archive-card b {
  color: var(--gp-ink);
  font-size: 0.67rem;
  letter-spacing: 0.08em;
  margin-top: auto;
  padding-top: 1.2rem;
  text-transform: uppercase;
}

.gp-archive-dialog {
  background: transparent;
  border: 0;
  height: min(92vh, 900px);
  max-height: 92vh;
  max-width: 1080px;
  padding: 0;
  width: min(94vw, 1080px);
}

.gp-archive-dialog::backdrop {
  background: rgba(5, 7, 6, 0.86);
  backdrop-filter: blur(12px);
}

.gp-dialog-panel {
  background: #f7f8f5;
  color: var(--gp-ink);
  height: 100%;
  overflow-y: auto;
  position: relative;
}

.gp-dialog-close {
  align-items: center;
  background: #111414;
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: #fff;
  cursor: pointer;
  display: flex;
  font-size: 2rem;
  height: 48px;
  justify-content: center;
  line-height: 1;
  position: fixed;
  right: max(4vw, calc((100vw - 1080px) / 2 + 16px));
  top: max(4vh, 16px);
  width: 48px;
  z-index: 4;
}

.gp-dialog-hero {
  background: #111414;
  color: #fff;
  display: grid;
  grid-template-columns: minmax(0, 1.16fr) minmax(320px, 0.84fr);
  min-height: 430px;
}

.gp-dialog-hero > img {
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.gp-dialog-hero > div {
  align-self: end;
  padding: 3rem;
}

.gp-dialog-hero span {
  color: var(--gp-olive-bright);
  font-size: 0.67rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.gp-dialog-hero h2 {
  color: #fff;
  font-size: clamp(2rem, 4vw, 3.9rem);
  line-height: 0.98;
  margin: 1rem 0;
}

.gp-dialog-hero p {
  color: rgba(255, 255, 255, 0.56);
  font-size: 0.82rem;
}

.gp-dialog-body {
  padding: clamp(2rem, 5vw, 4.5rem);
}

.gp-dialog-description {
  color: var(--gp-copy);
  font-family: "Playfair Display", Georgia, serif !important;
  font-size: clamp(1.2rem, 2vw, 1.65rem);
  line-height: 1.55;
  max-width: 820px;
}

.gp-dialog-facts {
  border-bottom: 1px solid rgba(26, 26, 32, 0.12);
  border-top: 1px solid rgba(26, 26, 32, 0.12);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 2.5rem 0;
}

.gp-dialog-facts > div {
  border-right: 1px solid rgba(26, 26, 32, 0.12);
  padding: 1.25rem;
}

.gp-dialog-facts > div:first-child {
  padding-left: 0;
}

.gp-dialog-facts > div:last-child {
  border-right: 0;
}

.gp-dialog-facts dt {
  color: var(--gp-copy);
  font-size: 0.61rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.gp-dialog-facts dd {
  color: var(--gp-ink);
  font-size: 0.92rem;
  font-weight: 650;
  margin: 0.45rem 0 0;
}

.gp-dialog-block {
  margin-top: 2.5rem;
}

.gp-dialog-block h3 {
  color: var(--gp-ink);
  font-size: 1.8rem;
}

.gp-dialog-block ul {
  color: var(--gp-copy);
  line-height: 1.8;
  padding-left: 1.2rem;
}

.gp-dialog-gallery {
  display: grid;
  gap: 0.7rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 2.5rem;
}

.gp-dialog-gallery img {
  aspect-ratio: 16 / 10;
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.gp-dialog-source {
  background: var(--gp-olive-dark);
  color: #fff;
  display: inline-flex;
  font-size: 0.72rem;
  font-weight: 700;
  gap: 0.7rem;
  letter-spacing: 0.08em;
  margin-top: 2rem;
  padding: 1rem 1.2rem;
  text-transform: uppercase;
}

.gp-dialog-open {
  overflow: hidden;
}

.gp-video-list {
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.gp-video-list a {
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  color: #fff;
  display: grid;
  gap: 1rem;
  grid-template-columns: 42px 72px minmax(0, 1fr) auto;
  min-height: 104px;
  padding: 1rem 1.5rem 1rem 0;
}

.gp-video-list a:nth-child(odd) {
  border-right: 1px solid rgba(255, 255, 255, 0.14);
}

.gp-video-list a:nth-child(even) {
  padding-left: 1.5rem;
}

.gp-video-list a:hover {
  background: rgba(255, 255, 255, 0.04);
}

.gp-play-icon {
  align-items: center;
  border: 1px solid var(--gp-olive-bright);
  color: var(--gp-olive-bright);
  display: flex;
  font-size: 0.65rem;
  height: 40px;
  justify-content: center;
  width: 40px;
}

.gp-video-list small {
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.6rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.gp-video-list strong {
  font-size: 0.83rem;
  font-weight: 600;
}

.gp-video-list b {
  color: var(--gp-olive-bright);
}

.gp-freshness {
  background: rgba(17, 20, 20, 0.86);
  border: 1px solid rgba(255, 255, 255, 0.15);
  bottom: 1.25rem;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.57rem;
  font-weight: 650;
  letter-spacing: 0.075em;
  padding: 0.65rem 0.85rem;
  position: absolute !important;
  right: 1.25rem;
  text-transform: uppercase;
  z-index: 8;
}

.gp-legal-links {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin-top: 0.8rem;
}

.gp-legal-links a,
.gp-legal-links span {
  color: rgba(255, 255, 255, 0.44);
  font-size: 0.62rem;
  letter-spacing: 0.055em;
  text-transform: uppercase;
}

.gp-legal-links a:hover {
  color: var(--gp-olive-bright);
}

.gp-whatsapp {
  align-items: center;
  background: var(--gp-olive-dark);
  bottom: 1.25rem;
  box-shadow: 0 15px 38px rgba(12, 20, 10, 0.28);
  color: #fff;
  display: flex;
  gap: 0.65rem;
  padding: 0.85rem 1rem;
  position: fixed;
  right: 1.25rem;
  z-index: 80;
}

.gp-whatsapp:hover {
  background: var(--gp-olive-bright);
  transform: translateY(-3px);
}

.gp-whatsapp svg {
  fill: currentColor;
  height: 22px;
  width: 22px;
}

.gp-whatsapp span {
  font-size: 0.68rem;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.gp-consent {
  align-items: flex-start;
  color: var(--gp-copy);
  display: flex !important;
  font-size: 0.78rem;
  gap: 0.75rem;
}

.gp-consent input {
  flex: 0 0 auto;
  height: 18px;
  margin-top: 0.1rem;
  width: 18px;
}

.gp-consent a {
  color: var(--gp-olive-dark);
  text-decoration: underline;
}

.gp-form-status {
  color: var(--gp-olive-dark);
  font-size: 0.78rem;
  min-height: 1.3rem;
}

.gp-map-card {
  align-items: end;
  background:
    linear-gradient(135deg, rgba(17, 20, 20, 0.94), rgba(32, 48, 27, 0.9)),
    url("assets/official-media/campo-de-golf.jpg") center / cover;
  color: #fff;
  display: grid;
  gap: 0.65rem;
  grid-template-columns: minmax(0, 1fr) auto;
  margin-top: 3rem;
  min-height: 260px;
  padding: 2rem;
}

.gp-map-card span {
  color: var(--gp-olive-bright);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.gp-map-card strong {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.45rem;
  grid-column: 1;
  line-height: 1.25;
  max-width: 470px;
}

.gp-map-card b {
  color: var(--gp-olive-bright);
  font-size: 1.2rem;
  grid-column: 2;
  grid-row: 1 / span 2;
}

.gp-legal-callout {
  align-items: center;
  display: grid;
  gap: 4rem;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
}

.gp-legal-callout a {
  border-bottom: 1px solid rgba(110, 169, 15, 0.55);
  color: #fff;
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  margin: 1rem 1rem 0 0;
  padding-bottom: 0.4rem;
  text-transform: uppercase;
}

@media (max-width: 1024px) {
  .gp-about-grid {
    grid-template-columns: 1fr;
  }

  .gp-editorial-photo {
    min-height: 520px;
  }

  .gp-process-rail,
  .gp-variable-grid,
  .gp-dynamics-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }

  .gp-process-rail article:nth-child(2),
  .gp-variable-grid article:nth-child(2),
  .gp-dynamic-card:nth-child(2) {
    border-right: 0;
  }

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

  .gp-archive-grid,
  .gp-tournament-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }

  .gp-dialog-hero {
    grid-template-columns: 1fr;
  }

  .gp-dialog-hero > img {
    max-height: 420px;
  }
}

@media (max-width: 720px) {
  .gp-shell {
    padding-inline: 1rem;
  }

  .gp-wp-section {
    padding-block: 4.5rem;
  }

  .gp-freshness {
    bottom: 0.8rem;
    left: 1rem !important;
    max-width: calc(100vw - 2rem);
    right: auto !important;
  }

  .gp-editorial-photo {
    min-height: 420px;
  }

  .gp-editorial-photo figcaption {
    align-items: flex-start;
    flex-direction: column;
    gap: 0.8rem;
    padding: 1.35rem;
  }

  .gp-process-rail,
  .gp-variable-grid,
  .gp-dynamics-grid,
  .gp-archive-grid,
  .gp-tournament-grid,
  .gp-video-list,
  .gp-legal-callout {
    grid-template-columns: 1fr !important;
  }

  .gp-process-rail article,
  .gp-variable-grid article,
  .gp-dynamic-card {
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
    border-right: 0;
    min-height: 230px;
    padding: 1.5rem 0;
  }

  .gp-process-rail article:not(:first-child) {
    padding-left: 0;
  }

  .gp-process-rail h3,
  .gp-variable-grid h3,
  .gp-dynamic-card h3 {
    margin-top: 2.5rem;
  }

  .gp-brand-logos {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .gp-brand-logos figure {
    min-height: 108px;
  }

  .gp-archive-controls {
    align-items: stretch;
    grid-template-columns: 1fr;
  }

  .gp-archive-controls [role="status"] {
    margin: 0;
    text-align: left;
  }

  .gp-dialog-hero {
    min-height: 0;
  }

  .gp-dialog-hero > img {
    aspect-ratio: 4 / 3;
  }

  .gp-dialog-hero > div,
  .gp-dialog-body {
    padding: 1.5rem;
  }

  .gp-dialog-facts {
    grid-template-columns: 1fr;
  }

  .gp-dialog-facts > div {
    border-bottom: 1px solid rgba(26, 26, 32, 0.12);
    border-right: 0;
    padding: 1rem 0;
  }

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

  .gp-dialog-close {
    right: 4vw;
    top: 4vh;
  }

  .gp-video-list a,
  .gp-video-list a:nth-child(even) {
    border-right: 0;
    grid-template-columns: 42px minmax(0, 1fr) auto;
    padding: 1rem 0;
  }

  .gp-video-list small {
    display: none;
  }

  .gp-whatsapp {
    border-radius: 50%;
    bottom: 1rem;
    height: 52px;
    justify-content: center;
    padding: 0;
    right: 1rem;
    width: 52px;
  }

  .gp-whatsapp span {
    clip: rect(0 0 0 0);
    height: 1px;
    overflow: hidden;
    position: absolute;
    width: 1px;
  }
}
