/* Guidelines — modern academic page (scoped) */
@import url('https://fonts.googleapis.com/css2?family=Fraunces:opsz,wght@9..144,500;9..144,650;9..144,700&display=swap');

.gl-page {
  --gl-ink: #0c2340;
  --gl-ink-soft: #243b55;
  --gl-mist: #eef3f8;
  --gl-accent: #c47a72;
  --gl-accent-deep: #a85f58;
  --gl-line: rgba(12, 35, 64, 0.1);
  --gl-radius: 18px;
  --gl-ease: cubic-bezier(0.22, 1, 0.36, 1);
  color: var(--gl-ink-soft);
}

.gl-hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  min-height: 280px;
  margin: 0 0 2rem;
  border-radius: var(--gl-radius);
  color: #fff;
  display: flex;
  align-items: flex-end;
  animation: gl-rise 0.85s var(--gl-ease) both;
}

.gl-hero__media,
.gl-hero__media img,
.gl-hero__veil {
  position: absolute;
  inset: 0;
}

.gl-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.05);
  animation: gl-ken 18s ease-in-out infinite alternate;
}

.gl-hero__veil {
  z-index: 1;
  background:
    linear-gradient(115deg, rgba(12, 35, 64, 0.92) 10%, rgba(12, 35, 64, 0.55) 55%, rgba(12, 35, 64, 0.28) 100%),
    linear-gradient(to top, rgba(12, 35, 64, 0.72), transparent 55%);
}

.gl-hero__content {
  position: relative;
  z-index: 2;
  padding: 2rem;
  max-width: 36rem;
}

.gl-hero__brand {
  margin: 0 0 0.5rem;
  font-family: "Fraunces", "Poppins", serif;
  font-size: clamp(1.7rem, 3.6vw, 2.25rem);
  font-weight: 650;
  letter-spacing: -0.02em;
  line-height: 1.15;
  color: #fff;
}

.gl-hero__title {
  margin: 0 0 0.7rem;
  font-family: "Poppins", sans-serif;
  font-size: clamp(1rem, 2vw, 1.25rem);
  font-weight: 500;
  color: rgba(255, 255, 255, 0.92);
}

.gl-hero__lead {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.8);
}

.gl-block {
  margin-bottom: 2rem;
  animation: gl-rise 0.8s var(--gl-ease) 0.1s both;
}

.gl-eyebrow {
  margin: 0 0 0.35rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gl-accent-deep);
}

.gl-heading {
  margin: 0 0 1rem;
  font-family: "Fraunces", "Poppins", serif;
  font-size: clamp(1.45rem, 2.5vw, 1.75rem);
  font-weight: 650;
  letter-spacing: -0.02em;
  color: var(--gl-ink);
}

.gl-list {
  list-style: none;
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--gl-line);
}

.gl-list > li {
  display: grid;
  grid-template-columns: 3.25rem 1fr;
  gap: 1rem;
  padding: 1.15rem 0;
  border-bottom: 1px solid var(--gl-line);
}

.gl-list__num {
  font-family: "Fraunces", serif;
  font-size: 1.25rem;
  font-weight: 650;
  color: var(--gl-accent);
  line-height: 1.2;
  padding-top: 0.1rem;
}

.gl-list h3 {
  margin: 0 0 0.3rem;
  font-size: 1.02rem;
  font-weight: 600;
  color: var(--gl-ink);
}

.gl-list p {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.65;
  color: #5a6b7d;
}

.gl-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  flex-wrap: wrap;
  padding: 1.5rem 1.6rem;
  border-radius: var(--gl-radius);
  background: linear-gradient(135deg, rgba(12, 35, 64, 0.96), rgba(36, 59, 85, 0.92));
  color: #fff;
  animation: gl-rise 0.8s var(--gl-ease) 0.22s both;
}

.gl-cta__copy h2 {
  margin: 0 0 0.35rem;
  font-family: "Fraunces", serif;
  font-size: 1.35rem;
  font-weight: 650;
  color: #fff;
}

.gl-cta__copy p {
  margin: 0;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.78);
  max-width: 28rem;
}

.gl-cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.gl-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 1.2rem;
  border-radius: 999px;
  font-size: 0.86rem;
  font-weight: 600;
  text-decoration: none !important;
  transition: transform 0.25s var(--gl-ease), background 0.25s ease;
}

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

.gl-btn--primary {
  background: var(--gl-accent);
  color: #fff !important;
}

.gl-btn--primary:hover {
  background: var(--gl-accent-deep);
  color: #fff !important;
}

.gl-btn--ghost {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.35);
  color: #fff !important;
}

.gl-btn--ghost:hover {
  background: rgba(255, 255, 255, 0.2);
  color: #fff !important;
}

@keyframes gl-rise {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes gl-ken {
  from { transform: scale(1.05); }
  to { transform: scale(1.12) translate3d(-1%, -0.8%, 0); }
}

@media (max-width: 575.98px) {
  .gl-hero__content { padding: 1.5rem 1.25rem; }
  .gl-list > li { grid-template-columns: 2.5rem 1fr; gap: 0.75rem; }
  .gl-cta { padding: 1.25rem; }
}
