@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Source+Sans+3:ital,wght@0,300;0,400;0,500;0,600;0,700;1,400&display=swap');

:root {
  --gh-green: #2d5016;
  --gh-green-mid: #4a7c3f;
  --gh-green-light: #6b9b5a;
  --gh-stone: #6b7280;
  --gh-stone-dark: #374151;
  --gh-stone-light: #d1d5db;
  --gh-fog: #f3f4f6;
  --gh-text: #1f2937;
  --gh-muted: #6b7280;
  --gh-white: #ffffff;
  --gh-radius: 4px;
  --gh-shadow: 0 12px 48px rgba(31, 41, 55, 0.18);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Source Sans 3', sans-serif;
  color: var(--gh-text);
  background: var(--gh-fog);
  line-height: 1.65;
}

h1, h2, h3, h4, .gh-logo {
  font-family: 'Bebas Neue', sans-serif;
  line-height: 1.1;
  letter-spacing: 0.04em;
}

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

a { color: var(--gh-green-mid); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--gh-green); }

.gh-header {
  position: absolute; top: 0; left: 0; right: 0; z-index: 100;
  background: linear-gradient(to bottom, rgba(31,41,55,0.65), transparent);
}

.gh-header--solid {
  position: sticky; background: var(--gh-stone-dark);
}

.gh-header__inner {
  max-width: 1200px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.25rem 1.5rem;
}

.gh-logo {
  font-size: 1.75rem; color: var(--gh-white);
}
.gh-logo span { color: var(--gh-green-light); }

.gh-burger {
  display: none; background: none; border: 1px solid rgba(255,255,255,0.5);
  border-radius: var(--gh-radius); padding: 0.4rem 0.6rem; cursor: pointer;
  font-size: 1.25rem; color: var(--gh-white);
}

.gh-nav ul { display: flex; gap: 2rem; list-style: none; }
.gh-nav a {
  font-weight: 600; color: rgba(255,255,255,0.9);
  font-size: 0.88rem; letter-spacing: 0.06em; text-transform: uppercase;
}
.gh-nav a:hover, .gh-nav a.gh-active { color: var(--gh-green-light); }

.gh-hero-cine {
  position: relative; height: 100vh; min-height: 560px; max-height: 900px;
  display: flex; align-items: flex-end; overflow: hidden;
}
.gh-hero-cine img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
}
.gh-hero-cine__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(31,41,55,0.92) 0%, rgba(45,80,22,0.35) 50%, rgba(0,0,0,0.2) 100%);
}
.gh-hero-cine__content {
  position: relative; z-index: 2; width: 100%;
  max-width: 1200px; margin: 0 auto; padding: 4rem 1.5rem 5rem;
}
.gh-hero-cine__content h1 {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  color: var(--gh-white); margin-bottom: 1rem;
}
.gh-hero-cine__content p {
  font-size: 1.15rem; color: rgba(255,255,255,0.85);
  max-width: 540px; margin-bottom: 2rem;
}

.gh-hero-cine__stats {
  display: flex; flex-wrap: wrap; gap: 2rem;
}
.gh-hero-stat strong {
  display: block; font-family: 'Bebas Neue', sans-serif;
  font-size: 2rem; color: var(--gh-green-light);
}
.gh-hero-stat span { font-size: 0.82rem; color: rgba(255,255,255,0.7); text-transform: uppercase; letter-spacing: 0.05em; }

.gh-btn {
  display: inline-block; padding: 0.85rem 2rem;
  background: var(--gh-green-mid); color: var(--gh-white);
  font-weight: 700; border: none; border-radius: var(--gh-radius);
  cursor: pointer; font-size: 0.9rem; letter-spacing: 0.06em;
  text-transform: uppercase; transition: background 0.2s, transform 0.2s;
}
.gh-btn:hover { background: var(--gh-green); color: var(--gh-white); transform: translateY(-2px); }
.gh-btn--outline {
  background: transparent; border: 2px solid var(--gh-white); color: var(--gh-white);
}
.gh-btn--outline:hover { background: var(--gh-white); color: var(--gh-stone-dark); }
.gh-btn--stone { background: var(--gh-stone-dark); color: var(--gh-white); }
.gh-btn--stone:hover { background: var(--gh-stone); }
.gh-btn--full { width: 100%; text-align: center; }

.gh-section { padding: 4rem 1.5rem; }
.gh-section--alt { background: var(--gh-white); }
.gh-section--dark { background: var(--gh-stone-dark); color: var(--gh-white); }
.gh-container { max-width: 1200px; margin: 0 auto; }

.gh-section__head { text-align: center; margin-bottom: 3rem; }
.gh-section__head h2 {
  font-size: clamp(2rem, 4vw, 2.75rem);
  color: var(--gh-stone-dark); margin-bottom: 0.75rem;
}
.gh-section--dark .gh-section__head h2 { color: var(--gh-white); }
.gh-section__head p { color: var(--gh-muted); max-width: 620px; margin: 0 auto; }
.gh-section--dark .gh-section__head p { color: var(--gh-stone-light); }

.gh-grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.gh-grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2.5rem; align-items: center; }

.gh-card {
  background: var(--gh-white); border-radius: var(--gh-radius);
  overflow: hidden; box-shadow: var(--gh-shadow);
  transition: transform 0.25s;
}
.gh-card:hover { transform: translateY(-4px); }
.gh-card img { width: 100%; height: 220px; object-fit: cover; }
.gh-card__body { padding: 1.5rem; }
.gh-card__body h3 { font-size: 1.35rem; margin-bottom: 0.5rem; color: var(--gh-stone-dark); }
.gh-card__body p { color: var(--gh-muted); font-size: 0.92rem; margin-bottom: 1rem; }
.gh-tag {
  display: inline-block; background: var(--gh-green); color: var(--gh-white);
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.08em;
  text-transform: uppercase; padding: 0.25rem 0.65rem; border-radius: var(--gh-radius);
  margin-bottom: 0.75rem;
}
.gh-difficulty { font-weight: 700; color: var(--gh-green-mid); font-size: 0.88rem; }

.gh-split img { border-radius: var(--gh-radius); box-shadow: var(--gh-shadow); }
.gh-split h2 { font-size: 2.25rem; color: var(--gh-stone-dark); margin-bottom: 1rem; }
.gh-split p { color: var(--gh-muted); margin-bottom: 1rem; }

.gh-equipo-item {
  background: var(--gh-fog); border-left: 4px solid var(--gh-green-mid);
  padding: 1.5rem; border-radius: 0 var(--gh-radius) var(--gh-radius) 0;
  margin-bottom: 1.25rem;
}
.gh-equipo-item h3 { font-size: 1.25rem; color: var(--gh-stone-dark); margin-bottom: 0.35rem; }
.gh-equipo-item p { color: var(--gh-muted); font-size: 0.92rem; }

.gh-page-hero {
  background: var(--gh-stone-dark); color: var(--gh-white);
  padding: 3.5rem 1.5rem; text-align: center;
}
.gh-page-hero h1 { font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 0.5rem; }

.gh-contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; }
.gh-info-box {
  background: var(--gh-white); border-left: 4px solid var(--gh-green-mid);
  padding: 1.5rem; border-radius: 0 var(--gh-radius) var(--gh-radius) 0;
  box-shadow: var(--gh-shadow); margin-bottom: 1.25rem;
}
.gh-info-box h3 { font-size: 1rem; color: var(--gh-stone-dark); margin-bottom: 0.35rem; }

.gh-form__group { margin-bottom: 1rem; }
.gh-form label { display: block; font-size: 0.85rem; font-weight: 600; margin-bottom: 0.35rem; color: var(--gh-muted); }
.gh-form input, .gh-form select, .gh-form textarea {
  width: 100%; padding: 0.7rem 0.9rem;
  border: 2px solid var(--gh-stone-light); border-radius: var(--gh-radius);
  font-family: inherit; font-size: 0.95rem; background: var(--gh-white);
}
.gh-form input:focus, .gh-form select:focus, .gh-form textarea:focus {
  outline: none; border-color: var(--gh-green-mid);
}
.gh-form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

.gh-legal { max-width: 800px; margin: 0 auto; }
.gh-legal h2 { font-size: 1.35rem; color: var(--gh-stone-dark); margin: 2rem 0 0.75rem; }
.gh-legal p, .gh-legal li { color: var(--gh-muted); margin-bottom: 0.75rem; }
.gh-legal ul { padding-left: 1.5rem; }

.gh-footer {
  background: var(--gh-stone-dark); color: rgba(255,255,255,0.85);
  padding: 3.5rem 1.5rem 1.5rem;
}
.gh-footer__grid {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem;
}
.gh-footer h4 {
  font-family: 'Bebas Neue', sans-serif;
  color: var(--gh-green-light); font-size: 1.1rem;
  margin-bottom: 1rem; letter-spacing: 0.06em;
}
.gh-footer ul { list-style: none; }
.gh-footer li { margin-bottom: 0.5rem; }
.gh-footer a { color: rgba(255,255,255,0.75); font-size: 0.9rem; }
.gh-footer a:hover { color: var(--gh-green-light); }
.gh-footer__bottom {
  max-width: 1200px; margin: 2.5rem auto 0;
  padding-top: 1.5rem; border-top: 1px solid rgba(255,255,255,0.15);
  text-align: center; font-size: 0.85rem; opacity: 0.7;
}

.gh-cookie {
  position: fixed; bottom: 1.5rem; left: 50%; transform: translateX(-50%);
  z-index: 200; max-width: 680px; width: calc(100% - 2rem);
  background: var(--gh-stone-dark); color: var(--gh-white);
  padding: 1rem 1.5rem; border-radius: 999px;
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  box-shadow: 0 8px 32px rgba(0,0,0,0.35);
}
.gh-cookie p { font-size: 0.85rem; flex: 1; }
.gh-cookie a { color: var(--gh-green-light); }
.gh-cookie__actions { display: flex; gap: 0.5rem; flex-shrink: 0; }
.gh-cookie .gh-btn { padding: 0.5rem 1rem; font-size: 0.78rem; border-radius: 999px; }
.gh-cookie .gh-btn--ghost {
  background: transparent; border: 1px solid rgba(255,255,255,0.35);
  color: var(--gh-white); cursor: pointer; border-radius: 999px;
  padding: 0.5rem 1rem; font-family: inherit; font-size: 0.78rem;
  letter-spacing: 0.04em; text-transform: uppercase;
}

@media (max-width: 900px) {
  .gh-burger { display: block; }
  .gh-nav {
    position: absolute; top: 100%; left: 0; right: 0;
    background: var(--gh-stone-dark);
    max-height: 0; overflow: hidden; transition: max-height 0.35s;
  }
  .gh-nav.gh-nav--open { max-height: 340px; }
  .gh-nav ul { flex-direction: column; padding: 1rem 1.5rem 1.5rem; gap: 0; }
  .gh-nav li { border-bottom: 1px solid rgba(255,255,255,0.1); }
  .gh-nav a { display: block; padding: 0.85rem 0; }
  .gh-grid-3, .gh-grid-2, .gh-contact-grid, .gh-footer__grid { grid-template-columns: 1fr; }
  .gh-hero-cine__stats { gap: 1.25rem; }
  .gh-cookie { flex-direction: column; text-align: center; border-radius: 16px; }
}

@media (max-width: 560px) {
  .gh-form__row { grid-template-columns: 1fr; }
  .gh-section { padding: 2.5rem 1rem; }
  .gh-hero-cine__content { padding-bottom: 3.5rem; }
}
