/* Hero */
.hero {
  position: relative;
  min-height: 100vh;
  padding: 0 0 160px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-gradient {
  position: absolute;
  top: -18%;
  left: 0;
  right: 0;
  bottom: -28%;
  background: radial-gradient(circle at 15% 30%, rgba(63, 143, 60, 0.22), transparent 55%),
              radial-gradient(circle at 85% 25%, rgba(15, 26, 19, 0.18), transparent 45%),
              linear-gradient(135deg, rgba(63, 143, 60, 0.08), transparent 80%);
  z-index: 0;
}

.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(0, 0.82fr);
  gap: 54px;
  align-items: center;
}

.hero-copy {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.hero-badge {
  align-self: flex-start;
  background: linear-gradient(135deg, rgba(63, 143, 60, 0.14), rgba(63, 143, 60, 0.08));
  padding: 10px 20px;
  border-radius: 999px;
  font-weight: 700;
  letter-spacing: 0.2em;
  font-size: 0.75rem;
  text-transform: uppercase;
  border: 1px solid rgba(63, 143, 60, 0.25);
}

.hero-title {
  font-size: clamp(2.8rem, 5.4vw, 4.8rem);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.03em;
}

.hero-title-highlight {
  background: linear-gradient(135deg, var(--primary-green), var(--accent-green));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 1.15rem;
  color: var(--text-secondary);
  max-width: 520px;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.hero-meta {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.65);
  border: 1px solid rgba(17, 17, 17, 0.05);
  border-radius: var(--htsv-radius-lg);
  box-shadow: var(--htsv-shadow-soft);
  backdrop-filter: blur(12px);
}

.hero-meta-item {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.hero-meta-label {
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(15, 26, 19, 0.5);
}

.hero-meta-value {
  font-weight: 600;
}

.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pitch-frame {
  position: relative;
  width: min(480px, 100%);
  margin-top: 20px;
}

.table-soccer-visual {
  position: relative;
  width: 100%;
  padding-top: 160%;
  border-radius: var(--htsv-radius-xl);
  overflow: hidden;
  background: linear-gradient(135deg, #134428, #1e5b35);
  box-shadow: var(--htsv-shadow-strong);
}

.pitch-glow {
  position: absolute;
  inset: auto -20% -35% -20%;
  height: 60%;
  background: radial-gradient(circle at 50% 0%, rgba(110, 232, 132, 0.35), transparent 65%);
  z-index: 0;
}

.field-tilt {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 180%;
  height: 100%;
  transform-origin: center;
  transform: translate(-50%, -50%) translateY(calc(var(--bg-base-offset, 90px) + var(--bg-offset, 0px))) rotate(var(--tilt, -68deg)) scale(var(--bg-scale, 0.92));
  will-change: transform;
  pointer-events: none;
}

.field-tilt.no-tilt {
  transform: translate(-50%, -50%) rotate(0deg) scale(1);
}

.soccer-field {
  position: relative;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, #2e7d32 0%, #388e3c 25%, #2e7d32 50%, #388e3c 75%, #2e7d32 100%);
  border-radius: 22px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  overflow: hidden;
}

.field-line {
  position: absolute;
  background: rgba(255, 255, 255, 0.75);
}

.center-line {
  width: 2px;
  top: 0;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}

.center-circle {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.75);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: transparent;
}

.goal {
  position: absolute;
  width: 60px;
  height: 100px;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.12);
}

.goal-left {
  left: 0;
}

.goal-right {
  right: 0;
}

.goal-area {
  position: absolute;
  width: 110px;
  height: 190px;
  top: 50%;
  transform: translateY(-50%);
  border: 2px solid rgba(255, 255, 255, 0.8);
  background: transparent;
}

.goal-area-left {
  left: 0;
  border-left: none;
}

.goal-area-right {
  right: 0;
  border-right: none;
}

.player-rod {
  position: absolute;
  width: 4px;
  height: 102%;
  background: linear-gradient(180deg, rgba(17, 17, 17, 0.85), rgba(17, 17, 17, 0.6));
}

.rod-1 { left: 8%; }
.rod-2 { left: 24.8%; }
.rod-3 { left: 41.6%; }
.rod-4 { right: 41.6%; }
.rod-5 { right: 24.8%; }
.rod-6 { right: 8%; }

.player-figure {
  position: absolute;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  left: -30px;
  display: grid;
  place-items: center;
  transition: top 0.14s ease, transform 0.14s ease;
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.3);
}

.player-green {
  background: radial-gradient(circle at 30% 30%, #87f497 0%, #1f7e2f 110%);
}

.player-dark {
  background: radial-gradient(circle at 30% 30%, #2a4531 0%, #061c0b 110%);
}

.player-eye {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #fff;
}

#gameBall {
  position: absolute;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, #ffe2ba 0%, #ff8a3d 110%);
  box-shadow: 0 8px 18px rgba(255, 138, 61, 0.45);
}

@keyframes goalCelebration {
  0% {
    transform: scale(1);
    opacity: 0;
  }
  50% {
    transform: scale(3.2);
    opacity: 0.55;
  }
  100% {
    transform: scale(5);
    opacity: 0;
  }
}

.goal-explosion {
  position: absolute;
  width: 110px;
  height: 110px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.85), transparent 70%);
  pointer-events: none;
  animation: goalCelebration 0.85s ease-out forwards;
  mix-blend-mode: screen;
}

/* Section Base */
.section {
  position: relative;
  padding: 140px 40px;
}

.section:nth-of-type(even) {
  background: rgba(255, 255, 255, 0.7);
}

.section-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 60px;
}

.section-heading {
  max-width: 720px;
}

.eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(15, 26, 19, 0.5);
  margin-bottom: 14px;
}

.section-title {
  font-size: clamp(2.2rem, 4vw, 3.6rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}

.section-title span {
  background: linear-gradient(135deg, var(--primary-green), var(--accent-green));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-lead {
  font-size: 1.05rem;
  color: var(--text-secondary);
}

/* Split layout */
.section--split .section-container {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 80px;
  align-items: center;
}

.section-content {
  display: grid;
  gap: 24px;
}

.feature-list {
  list-style: none;
  display: grid;
  gap: 14px;
  color: var(--text-primary);
  margin: 0;
  padding: 0;
}

.feature-list li {
  position: relative;
  padding-left: 28px;
  font-weight: 600;
}

.feature-list li::before {
  content: '▸';
  position: absolute;
  left: 0;
  color: var(--primary-green);
  font-size: 1rem;
  font-weight: 700;
}

.section-visual {
  display: flex;
  justify-content: center;
}

.media-card {
  background: var(--surface, #ffffff);
  border-radius: var(--htsv-radius-lg);
  padding: 32px;
  box-shadow: var(--htsv-shadow-soft);
  border: 1px solid var(--border-soft);
  display: grid;
  gap: 24px;
  max-width: 360px;
}

.media-card h3 {
  font-size: 1.35rem;
  font-weight: 700;
}

.media-stats {
  display: grid;
  gap: 16px;
}

.media-stats-item {
  display: grid;
  gap: 4px;
  font-weight: 600;
}

.media-stats-item dt {
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(15, 26, 19, 0.55);
}

.media-note {
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.media-stats-label {
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(15, 26, 19, 0.55);
}

.media-stats-value {
  font-weight: 600;
}

/* Cards Grid */
.section--grid .card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.feature-card {
  background: rgba(255, 255, 255, 0.9);
  border-radius: var(--htsv-radius-lg);
  padding: 32px;
  border: 1px solid rgba(17, 17, 17, 0.08);
  box-shadow: var(--htsv-shadow-soft);
  display: grid;
  gap: 18px;
}

.feature-icon {
  font-size: 2rem;
}

.card-grid--equal {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.champion-card {
  background: rgba(255, 255, 255, 0.06);
  border-radius: var(--htsv-radius-lg);
  padding: 32px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  display: grid;
  gap: 16px;
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.champion-card:hover {
  transform: translateY(-6px);
  border-color: rgba(110, 232, 132, 0.6);
}

.champion-icon {
  width: 72px;
  height: 72px;
  border-radius: var(--htsv-radius-lg);
  display: grid;
  place-items: center;
  font-size: 1.8rem;
  background: rgba(255, 255, 255, 0.08);
}

/* Timeline */
.section--timeline .timeline,
.section--timeline .timeline-list {
  list-style: none;
  display: grid;
  gap: 24px;
  position: relative;
  padding-left: 24px;
  margin: 0;
}

.section--timeline .timeline::before,
.section--timeline .timeline-list::before {
  content: '';
  position: absolute;
  left: 8px;
  top: 8px;
  bottom: 8px;
  width: 2px;
  background: linear-gradient(180deg, rgba(63, 143, 60, 0.9), rgba(63, 143, 60, 0.15));
}

.timeline-item,
.timeline-list li {
  position: relative;
  padding-left: 12px;
}

.timeline-dot,
.timeline-list li::before {
  content: '';
  position: absolute;
  left: -16px;
  top: 0;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary-green), var(--accent-green));
  box-shadow: 0 6px 15px rgba(63, 143, 60, 0.3);
}

.timeline-content,
.timeline-list li {
  background: rgba(255, 255, 255, 0.9);
  padding: 24px;
  border-radius: 16px;
  border: 1px solid rgba(17, 17, 17, 0.05);
  box-shadow: var(--htsv-shadow-soft);
}

.timeline-content h3,
.timeline-list li strong {
  font-size: 1.15rem;
  margin-bottom: 10px;
  display: block;
}

.section--timeline li p {
  color: var(--text-secondary);
}

/* Dark section */
.section--dark {
  background: linear-gradient(135deg, var(--jet, #111111), var(--jet-soft, #1c1c1c));
  color: #f6fff8;
}

.section--dark .section-lead {
  color: rgba(255, 255, 255, 0.68);
}

.section--dark .eyebrow {
  color: rgba(255, 255, 255, 0.55);
}

.section--dark .feature-card,
.section--dark .champion-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: inherit;
  box-shadow: none;
}

/* CTA */
.section--cta {
  background: linear-gradient(135deg, rgba(63, 143, 60, 0.12), transparent 60%);
}

.section--cta .section-container {
  display: flex;
  justify-content: center;
}

.cta-card {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  padding: 48px;
  border-radius: 32px;
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid var(--border-soft);
  box-shadow: var(--htsv-shadow-soft);
  max-width: 920px;
  width: 100%;
}

.cta-content {
  display: grid;
  gap: 18px;
}

.cta-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* Press showcase */
.section--press {
  position: relative;
  padding: clamp(68px, 9vh, 110px) 0 clamp(84px, 10vh, 120px);
  background:
    radial-gradient(1200px 720px at 12% 14%, rgba(110, 232, 132, 0.16), transparent 58%),
    radial-gradient(1080px 680px at 88% 12%, rgba(15, 26, 19, 0.08), transparent 66%),
    linear-gradient(180deg, #f7faf5 0%, #eef5ef 100%);
  color: var(--wp--preset--color--text);
  overflow: hidden;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
}

.section--press::before {
  content: '';
  position: absolute;
  inset: -25% -12% auto;
  height: 380px;
  background:
    radial-gradient(420px 320px at 22% 32%, rgba(110, 232, 132, 0.18), transparent 70%),
    radial-gradient(520px 320px at 78% 24%, rgba(15, 26, 19, 0.12), transparent 74%);
  opacity: 0.82;
  pointer-events: none;
}

.section--press .section-container {
  max-width: none;
  width: 100%;
  margin: 0;
  padding: 0;
  display: block;
  gap: 0;
}

.press-intro {
  position: relative;
  margin-bottom: clamp(36px, 4vw, 54px);
}

.press-intro__inner {
  display: flex;
  justify-content: center;
  padding: 0 clamp(24px, 5vw, 96px);
}

.press-intro__content {
  max-width: clamp(840px, 72vw, 1040px);
  text-align: center;
  display: grid;
  gap: 12px;
}

.press-intro__title {
  font-size: clamp(2.6rem, 4.8vw, 4.2rem);
  letter-spacing: -0.02em;
  line-height: 1.05;
  margin: 0;
  background-image: linear-gradient(105deg, rgba(110, 232, 132, 0.95), rgba(63, 143, 60, 0.92), rgba(22, 52, 33, 0.9));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: rgba(15, 26, 19, 0.08) 0 10px 24px;
}

.press-intro__content .section-lead,
.press-intro__content p {
  color: rgba(15, 26, 19, 0.7);
}

.press-timeline {
  position: sticky;
  top: calc(var(--nav-height) + 6px);
  z-index: 12;
  padding: 14px 0;
  margin-bottom: clamp(36px, 5vw, 64px);
  background: linear-gradient(180deg, rgba(247, 250, 245, 0.95), rgba(247, 250, 245, 0.78));
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(21, 71, 52, 0.12);
  box-shadow: 0 22px 38px rgba(15, 26, 19, 0.08);
}

.press-timeline::after {
  content: '';
  position: absolute;
  inset: auto 0 -18px;
  height: 18px;
  background: linear-gradient(180deg, rgba(15, 26, 19, 0.08), transparent);
  opacity: 0.4;
  pointer-events: none;
}

.press-timeline__scroller {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  padding: 4px clamp(24px, 5vw, 96px);
  scroll-snap-type: x proximity;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.press-timeline__scroller::-webkit-scrollbar {
  display: none;
}

.press-year {
  scroll-snap-align: center;
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 26px;
  border-radius: 999px;
  border: 1.5px solid rgba(21, 71, 52, 0.16);
  background: rgba(21, 71, 52, 0.06);
  color: rgba(15, 26, 19, 0.72);
  font-weight: 600;
  font-size: 0.88rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: border-color 0.3s ease, background 0.3s ease, color 0.3s ease, box-shadow 0.35s ease, transform 0.35s ease;
  cursor: pointer;
  white-space: nowrap;
}

.press-year:hover {
  border-color: rgba(21, 71, 52, 0.28);
  background: rgba(21, 71, 52, 0.1);
}

.press-year.is-active {
  background: #154734;
  border-color: transparent;
  color: rgba(241, 252, 246, 0.96);
  box-shadow:
    0 14px 38px rgba(21, 71, 52, 0.26),
    0 0 0 1px rgba(110, 232, 132, 0.22);
  transform: translateY(-2px);
}

.press-year:focus-visible {
  outline: 3px solid rgba(110, 232, 132, 0.45);
  outline-offset: 2px;
}

.press-grid-container {
  position: relative;
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 0 clamp(24px, 5vw, 96px) clamp(12px, 3vw, 40px);
}

.press-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(24px, 4vw, 36px);
  align-items: stretch;
  transition: opacity 0.25s ease;
}

.press-grid.is-filtering {
  opacity: 0.65;
}

.press-card {
  --press-accent: #154734;
  position: relative;
  display: flex;
  flex-direction: column;
  border-radius: var(--htsv-radius-lg);
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid rgba(21, 71, 52, 0.1);
  box-shadow: 0 30px 80px rgba(15, 26, 19, 0.12);
  overflow: hidden;
  cursor: pointer;
  opacity: 0;
  transform: translateY(28px);
  transition:
    transform 0.5s cubic-bezier(0.2, 0.8, 0.25, 1),
    box-shadow 0.5s ease,
    opacity 0.45s ease;
  transition-delay: calc(var(--press-card-index, 0) * 45ms);
}

.press-card::before {
  content: '';
  position: absolute;
  inset: -60px -60px auto;
  height: 160px;
  background: radial-gradient(220px 160px at 30% 35%, rgba(110, 232, 132, 0.14), transparent 70%);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.45s ease;
}

.press-card.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.press-card__inner {
  display: flex;
  flex-direction: column;
  flex: 1;
  min-height: 100%;
  position: relative;
  z-index: 1;
}

.press-card__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 26px;
  background:
    linear-gradient(120deg, rgba(21, 71, 52, 0.08), rgba(21, 71, 52, 0.02));
  border-bottom: 1px solid rgba(21, 71, 52, 0.08);
}

.press-card__medium {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.press-card__medium-logo {
  display: inline-flex;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(21, 71, 52, 0.08);
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.press-card__medium-logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.press-card__publication {
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--press-accent);
}

.press-card__date {
  font-size: 0.9rem;
  color: rgba(15, 26, 19, 0.52);
  white-space: nowrap;
}

.press-card__content {
  display: grid;
  gap: 18px;
  padding: clamp(24px, 3vw, 32px);
}

.press-card__headline {
  font-size: clamp(1.6rem, 2.4vw, 2rem);
  letter-spacing: -0.01em;
  line-height: 1.25;
  color: #0f1a13;
}

.press-card__subheader {
  font-size: 1.05rem;
  color: rgba(15, 26, 19, 0.64);
  margin: 0 0 4px;
  font-style: italic;
}

.press-card__preview {
  color: rgba(15, 26, 19, 0.72);
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.press-card__preview p {
  margin: 0 0 0.8em;
}

.press-card__preview p:last-child {
  margin-bottom: 0;
}

.press-card__footer {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
  padding: 18px 26px;
  border-top: 1px solid rgba(21, 71, 52, 0.08);
  background: linear-gradient(180deg, rgba(21, 71, 52, 0.04), rgba(21, 71, 52, 0.02));
  margin-top: auto;
}

.press-card__cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 11px 20px;
  border-radius: 999px;
  border: 1px solid rgba(21, 71, 52, 0.24);
  background: rgba(21, 71, 52, 0.08);
  color: var(--press-accent);
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: background 0.3s ease, border-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
  cursor: pointer;
}

.press-card__cta::after {
  content: '↗';
  font-size: 0.9rem;
  transition: transform 0.3s ease;
}

.press-card__cta:hover {
  background: rgba(110, 232, 132, 0.18);
  border-color: rgba(21, 71, 52, 0.26);
  color: #103822;
}

.press-card__cta:hover::after {
  transform: translateX(3px);
}

.press-card__external {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 18px;
  border-radius: 999px;
  border: 1px solid rgba(21, 71, 52, 0.18);
  background: rgba(21, 71, 52, 0.06);
  color: rgba(21, 71, 52, 0.9);
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: background 0.3s ease, border-color 0.3s ease, color 0.3s ease;
}

.press-card__external:hover {
  background: rgba(110, 232, 132, 0.18);
  border-color: rgba(21, 71, 52, 0.22);
  color: #103822;
}

.press-card__external:focus-visible {
  outline: 3px solid rgba(110, 232, 132, 0.45);
  outline-offset: 3px;
}

.press-card__cta:focus-visible {
  outline: 3px solid rgba(110, 232, 132, 0.45);
  outline-offset: 3px;
}

.press-card__full {
  display: none;
}

.press-card:focus-within,
.press-card:hover {
  box-shadow:
    0 36px 88px rgba(15, 26, 19, 0.18),
    0 0 0 1px rgba(21, 71, 52, 0.08);
  transform: translateY(-6px);
}

.press-card:focus-within::before,
.press-card:hover::before {
  opacity: 1;
}

.press-card:focus-visible {
  outline: 3px solid rgba(110, 232, 132, 0.4);
  outline-offset: 4px;
}

.press-card.is-hidden {
  display: none !important;
}

.press-empty {
  margin: clamp(40px, 6vw, 72px) auto 0;
  text-align: center;
  padding: clamp(36px, 6vw, 56px);
  border-radius: var(--htsv-radius-md);
  border: 1.5px dashed rgba(21, 71, 52, 0.18);
  background: rgba(255, 255, 255, 0.85);
  color: rgba(15, 26, 19, 0.62);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  max-width: 640px;
}

.press-modal {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(20px, 5vw, 56px);
  background: rgba(15, 26, 19, 0.86);
  backdrop-filter: blur(18px);
  z-index: 4200;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.35s ease, visibility 0.35s ease;
}

.press-modal.is-active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.press-modal__backdrop {
  position: absolute;
  inset: 0;
  cursor: zoom-out;
}

.press-modal__dialog {
  position: relative;
  width: min(960px, 100%);
  max-height: min(92vh, 920px);
  overflow: hidden;
  border-radius: var(--htsv-radius-xl);
  background: rgba(255, 255, 255, 0.98);
  box-shadow:
    0 48px 120px rgba(0, 0, 0, 0.45),
    0 0 0 1px rgba(21, 71, 52, 0.08);
  padding: clamp(32px, 5vw, 56px);
  transform: translateY(28px);
  transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.25, 1);
}

.press-modal.is-active .press-modal__dialog {
  transform: translateY(0);
}

.press-modal__close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: none;
  background: rgba(21, 71, 52, 0.08);
  color: #0f1a13;
  font-size: 1.8rem;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.3s ease;
  z-index: 2;
}

.press-modal__close:hover {
  background: rgba(21, 71, 52, 0.16);
  transform: scale(1.05);
}

.press-modal__close:focus-visible {
  outline: 3px solid rgba(110, 232, 132, 0.45);
  outline-offset: 4px;
}

.press-modal__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 20px;
  color: rgba(15, 26, 19, 0.68);
  font-size: 0.95rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.press-modal__medium {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.press-modal__medium-logo {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(21, 71, 52, 0.08);
}

.press-modal__medium-logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.press-modal__publication {
  font-weight: 700;
  color: var(--press-accent, #154734);
}

.press-modal__title {
  font-size: clamp(2rem, 3vw, 2.6rem);
  letter-spacing: -0.015em;
  margin: 0 0 18px;
  color: #0f1a13;
}

.press-modal__subheader {
  margin: 0 0 24px;
  font-size: 1.1rem;
  color: rgba(15, 26, 19, 0.7);
}

.press-modal__body {
  overflow-y: auto;
  padding-right: clamp(6px, 1vw, 12px);
  color: rgba(15, 26, 19, 0.78);
  max-height: calc(100% - 220px);
  column-count: 2;
  column-gap: clamp(36px, 6vw, 60px);
  column-rule: 1px solid rgba(21, 71, 52, 0.08);
}

.press-modal__body p {
  margin-bottom: 1.2em;
  line-height: 1.65;
}

.press-dropcap {
  display: inline-block;
  font-size: 3.4rem;
  font-weight: 700;
  line-height: 0.78;
  margin-right: 12px;
  margin-top: 8px;
  padding: 4px 8px;
  background-image: linear-gradient(140deg, rgba(110, 232, 132, 0.95), rgba(63, 143, 60, 0.9));
  color: rgba(11, 20, 15, 0.96);
  border-radius: 10px;
  box-shadow: 0 10px 22px rgba(15, 26, 19, 0.18);
}

.press-modal__body p:last-child {
  margin-bottom: 0;
}

.press-modal__footer {
  margin-top: clamp(24px, 4vw, 36px);
  display: flex;
  justify-content: flex-end;
}

.press-modal__link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 24px;
  border-radius: 999px;
  border: 1px solid rgba(21, 71, 52, 0.24);
  background: rgba(21, 71, 52, 0.08);
  color: var(--press-accent, #154734);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: border-color 0.3s ease, background 0.3s ease, color 0.3s ease;
}

.press-modal__link::after {
  content: '↗';
  font-size: 0.9rem;
  transition: transform 0.3s ease;
}

.press-modal__link:hover {
  background: rgba(110, 232, 132, 0.18);
  border-color: rgba(21, 71, 52, 0.24);
  color: #103822;
}

.press-modal__link:hover::after {
  transform: translateX(3px);
}

.press-modal__link:focus-visible {
  outline: 3px solid rgba(110, 232, 132, 0.45);
  outline-offset: 3px;
}

[data-press-template] {
  display: none;
}

/* Footer */
.site-footer {
  padding: 40px;
  background: rgba(15, 26, 19, 0.9);
  color: rgba(255, 255, 255, 0.7);
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-container a {
  color: rgba(255, 255, 255, 0.9);
  font-weight: 600;
}


/* Panorama gallery */
.section--gallery {
  padding: 0;
  --gallery-panorama-color: #0f1a13;
  --gallery-panorama-bg: var(--gallery-surface-gradient);
  background:
    radial-gradient(1200px 900px at 24% 12%, rgba(110, 232, 132, 0.18), transparent 58%),
    radial-gradient(1480px 1040px at 82% 20%, rgba(9, 26, 15, 0.34), transparent 63%),
    linear-gradient(135deg, #112118 0%, #0f1a13 100%) !important;
  position: relative;
  overflow: visible;
}

.section--gallery .section-container {
  max-width: none;
  width: 100%;
  padding: 0;
  gap: 0;
  position: relative;
  z-index: 1;
}

.section--gallery::before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: calc(-1 * var(--nav-height));
  height: calc(var(--nav-height) + 1px);
  background: var(--gallery-panorama-bg);
  z-index: 0;
  pointer-events: none;
}

.gallery-panorama {
  position: relative;
  width: 100%;
  min-height: var(--gallery-height, clamp(980px, 220vh, 1680px));
  background:
    radial-gradient(1200px 900px at 24% 12%, rgba(110, 232, 132, 0.18), transparent 58%),
    radial-gradient(1480px 1040px at 82% 20%, rgba(9, 26, 15, 0.34), transparent 63%),
    linear-gradient(135deg, #112118 0%, #0f1a13 100%) !important;
}

.gallery-panorama-stage {
  position: sticky;
  top: var(--nav-height);
  width: 100%;
  min-height: max(620px, calc(100vh - var(--nav-height)));
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-top: calc(var(--nav-height) + clamp(12px, 3.5vh, 52px));
  padding-bottom: clamp(100px, 9vh, 148px);
  margin: 0;
  margin-top: calc(-1 * var(--nav-height));
  transform: translate3d(0, 0, 0);
  background:
    radial-gradient(circle at 22% 14%, rgba(110, 232, 132, 0.18), transparent 56%),
    radial-gradient(circle at 82% 22%, rgba(8, 20, 13, 0.46), transparent 64%),
    linear-gradient(135deg, rgba(17, 33, 24, 0.96), rgba(15, 26, 19, 0.86)) !important;
  border-radius: 0;
  box-shadow: none;
  overflow: visible;
  isolation: isolate;
}

.gallery-panorama-stage::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(120deg, rgba(15, 26, 19, 0.88), transparent 36%),
    linear-gradient(300deg, rgba(11, 20, 15, 0.72), transparent 44%);
  pointer-events: none;
  z-index: 0;
  opacity: 0.78;
}

.gallery-panorama-stage > * {
  position: relative;
  z-index: 1;
}

.gallery-panorama-copy {
  position: absolute;
  inset: clamp(22px, 8vh, 112px) clamp(48px, 8vw, 160px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 18px;
  text-align: center;
  pointer-events: none;
  color: rgba(243, 251, 245, 0.96);
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.55s ease, transform 0.55s cubic-bezier(0.2, 0.8, 0.25, 1);
}

html.panorama-enhanced .gallery-panorama-copy {
  opacity: 0;
  transform: translateY(48px);
}

html.panorama-enhanced .gallery-panorama-copy.is-visible {
  opacity: 1;
  transform: translateY(-40px);
}

html.panorama-enhanced .gallery-panorama-copy.is-hidden {
  opacity: 0;
  transform: translateY(-108px);
}

.gallery-panorama-copy .section-lead {
  color: rgba(230, 244, 234, 0.88);
}
.gallery-panorama-track-wrap {
  position: relative;
  width: 100vw;
  max-width: 100vw;
  height: clamp(460px, 76vh, 680px);
  margin-inline: calc(50% - 50vw);
  margin-block: auto;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  pointer-events: none;
  opacity: 1;
  transform: translate3d(0, 32px, 0);
  transition: opacity 0.6s ease, transform 0.6s cubic-bezier(0.2, 0.8, 0.25, 1);
  overflow: visible;
}

html.panorama-enhanced .gallery-panorama-track-wrap {
  opacity: 0;
}

html.panorama-enhanced .gallery-panorama-track-wrap.is-active {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  pointer-events: auto;
}

.gallery-panorama-track {
  display: flex;
  align-items: center;
  gap: clamp(28px, 4vw, 64px);
  width: max-content;
  padding-left: var(--gallery-pad-left, clamp(60px, 10vw, 160px));
  padding-right: var(--gallery-pad-right, clamp(60px, 10vw, 160px));
  transform: translate3d(var(--gallery-shift, 0px), 0, 0);
  transition: transform 0.25s ease-out;
  will-change: transform;
}

.gallery-panorama-item {
  --gallery-offset-y: 0px;
  --gallery-scale: 1;
  --gallery-tilt: 0deg;
  --gallery-depth: 4;
  flex: 0 0 clamp(340px, 28vw, 540px);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: var(--gallery-depth);
  transform-origin: center center;
  transform: translateY(var(--gallery-offset-y)) rotate(var(--gallery-tilt)) scale(var(--gallery-scale));
  transition: transform 0.6s ease, z-index 0.3s ease;
}

.gallery-panorama-item.is-slower {
  --gallery-offset-y: -48px;
  --gallery-scale: 1.08;
  --gallery-tilt: -1.35deg;
  --gallery-depth: 5;
}

.gallery-panorama-item.is-slower-2 {
  --gallery-offset-y: -26px;
  --gallery-scale: 1.04;
  --gallery-tilt: -0.75deg;
}

.gallery-panorama-item.is-faster {
  --gallery-offset-y: 38px;
  --gallery-scale: 0.95;
  --gallery-tilt: 1.25deg;
}

.gallery-panorama-item.is-faster-2 {
  --gallery-offset-y: 18px;
  --gallery-scale: 0.99;
  --gallery-tilt: 0.6deg;
}

.gallery-panorama-item:nth-child(3n + 2) {
  --gallery-offset-y: calc(var(--gallery-offset-y) - 12px);
  --gallery-tilt: calc(var(--gallery-tilt) + 0.35deg);
  --gallery-depth: calc(var(--gallery-depth) + 1);
}

.gallery-panorama-item:nth-child(4n) {
  --gallery-offset-y: calc(var(--gallery-offset-y) + 16px);
  --gallery-tilt: calc(var(--gallery-tilt) - 0.45deg);
  --gallery-depth: calc(var(--gallery-depth) + 2);
}

.gallery-panorama-item:nth-child(2n + 1) {
  --gallery-tilt: calc(var(--gallery-tilt) - 0.25deg);
}

.gallery-panorama-item:hover {
  z-index: 12;
  transform: translateY(var(--gallery-offset-y)) rotate(var(--gallery-tilt)) scale(calc(var(--gallery-scale) * 1.05));
}


.gallery-panorama-item a {
  position: relative;
  display: block;
  padding: clamp(14px, 2vw, 22px);
  background: rgba(15, 26, 19, 0.62);
  border-radius: var(--htsv-radius-xl);
  box-shadow: 0 32px 70px rgba(0, 0, 0, 0.45);
  transition: transform 0.6s ease, box-shadow 0.5s ease, background 0.4s ease;
  overflow: visible;
}

.gallery-panorama-item a::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  border: 1.5px solid rgba(245, 252, 247, 0.24);
  box-shadow: inset 0 0 0 1px rgba(11, 20, 15, 0.58);
  pointer-events: none;
  transition: border-color 0.4s ease, box-shadow 0.4s ease;
  z-index: 1;
}

.gallery-panorama-item a:focus-visible {
  outline: 3px solid rgba(110, 232, 132, 0.5);
  outline-offset: 6px;
}

.gallery-panorama-item a:focus-visible::before {
  border-color: rgba(110, 232, 132, 0.6);
}


.gallery-panorama-item img {
  position: relative;
  z-index: 2;
  display: block;
  width: clamp(340px, 28vw, 540px);
  max-width: none;
  max-height: clamp(420px, 60vh, 660px);
  border-radius: calc(var(--htsv-radius-xl) - 6px);
  transform-origin: center;
  filter: saturate(0.9) contrast(1.06);
  transition: transform 0.6s ease, filter 0.6s ease, box-shadow 0.6s ease;
  box-shadow: 0 38px 80px rgba(0, 0, 0, 0.38);
}

.gallery-panorama-item:hover a {
  background: rgba(15, 26, 19, 0.78);
  box-shadow: 0 38px 88px rgba(0, 0, 0, 0.55);
}

.gallery-panorama-item:hover img {
  transform: scale(1.18);
  filter: saturate(1.18) contrast(1.18);
  box-shadow: 0 46px 104px rgba(0, 0, 0, 0.46);
}

.gallery-panorama-item:hover a::before {
  border-color: rgba(233, 253, 241, 0.62);
  box-shadow: inset 0 0 0 1px rgba(18, 32, 24, 0.55);
}

.gallery-panorama-btn {
  position: absolute;
  left: 50%;
  bottom: clamp(28px, 6vh, 60px);
  transform: translate(-50%, 28px);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 28px;
  border-radius: 999px;
  border: 2px solid rgba(255, 255, 255, 0.18);
  background: rgba(15, 26, 19, 0.74);
  color: rgba(255, 255, 255, 0.88);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 1;
  pointer-events: auto;
  transition: transform 0.35s ease, opacity 0.35s ease, background 0.3s ease;
}

.gallery-panorama-btn:hover {
  background: rgba(110, 232, 132, 0.35);
}

html.panorama-enhanced .gallery-panorama-btn {
  opacity: 0;
  pointer-events: none;
}

html.panorama-enhanced .gallery-panorama-btn.is-visible {
  transform: translate(-50%, 0);
  opacity: 1;
  pointer-events: auto;
}

@media (max-width: 1180px) {
  .gallery-panorama-stage::after {
    background: linear-gradient(90deg, rgba(15, 26, 19, 0.7), transparent 26%, transparent 74%, rgba(15, 26, 19, 0.7));
  }
}

@media (max-width: 1024px) {
  .gallery-panorama {
    min-height: auto;
    padding: 24px 0 40px;
  }

  .gallery-panorama-stage {
    position: static;
    min-height: auto;
    flex-direction: column;
    gap: 24px;
    background: linear-gradient(160deg, rgba(17, 33, 24, 0.92), rgba(15, 26, 19, 0.88));
  }

  .gallery-panorama-stage::after {
    display: none;
  }

  .gallery-panorama-copy {
    position: relative;
    inset: auto;
    padding: 0 24px;
    margin-bottom: 12px;
    text-align: left;
    pointer-events: auto;
    opacity: 1 !important;
    transform: none !important;
  }

  .gallery-panorama-track-wrap {
    position: static;
    width: 100%;
    max-width: none;
    margin-inline: 0;
    margin: 0;
    height: auto;
    opacity: 1;
    transform: none !important;
    overflow-x: auto;
    overflow-y: hidden;
    pointer-events: auto;
  }

  .gallery-panorama-track {
    transform: none !important;
    padding: 0 24px;
    gap: 24px;
    scroll-snap-type: x mandatory;
  }

  .gallery-panorama-item {
    scroll-snap-align: start;
    transform: none;
  }

  .gallery-panorama-item,
  .gallery-panorama-item.is-slower,
  .gallery-panorama-item.is-slower-2,
  .gallery-panorama-item.is-faster,
  .gallery-panorama-item.is-faster-2 {
    --gallery-offset-y: 0px;
    --gallery-scale: 1;
  }

  .gallery-panorama-item a {
    padding: 12px;
  }

  .gallery-panorama-item img {
    max-width: clamp(260px, 68vw, 420px);
    max-height: none;
  }

  .gallery-panorama-btn,
  html.panorama-enhanced .gallery-panorama-btn {
    position: relative;
    left: auto;
    bottom: auto;
    transform: none;
    margin: 24px auto 0;
    opacity: 1;
    pointer-events: auto;
  }
}

/* Award gallery */
.award-gallery {
  position: relative;
  padding: clamp(120px, 12vw, 160px) 0 120px;
  background:
    linear-gradient(135deg, rgba(10, 26, 17, 0.92), rgba(16, 34, 23, 0.98));
  color: var(--text-primary);
  width: 100%;
  overflow: hidden;
  isolation: isolate;
}

.award-gallery::before {
  content: '';
  position: absolute;
  inset: -35% -20%;
  background:
    radial-gradient(42% 38% at 18% 22%, rgba(116, 211, 134, 0.28), transparent 64%),
    radial-gradient(46% 42% at 78% 18%, rgba(8, 24, 14, 0.45), transparent 70%),
    radial-gradient(38% 34% at 62% 76%, rgba(73, 163, 102, 0.22), transparent 68%);
  opacity: 0.78;
  filter: saturate(1.05);
  animation: awardAmbientGlow 24s ease-in-out infinite alternate;
  pointer-events: none;
  z-index: 0;
}

@media (prefers-reduced-motion: reduce) {
  .award-gallery::before {
    animation: none;
  }

  .press-card,
  .press-card::before,
  .press-modal,
  .press-modal__dialog {
    transition: none !important;
  }

  .press-card {
    transform: none !important;
    opacity: 1 !important;
  }

  .press-grid.is-filtering {
    opacity: 1;
  }

  .press-modal__dialog {
    transform: none !important;
  }
}

@keyframes awardAmbientGlow {
  0% {
    transform: translate3d(-2%, -1%, 0) scale(1.02);
    opacity: 0.7;
  }
  50% {
    transform: translate3d(2%, 1.5%, 0) scale(1.06);
    opacity: 0.85;
  }
  100% {
    transform: translate3d(-1%, 2%, 0) scale(1.03);
    opacity: 0.75;
  }
}

.award-gallery.alignfull {
  width: 100vw;
  max-width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
}

.award-gallery > * {
  position: relative;
  z-index: 1;
}

.award-gallery-wrapper {
  width: 100% !important;
  max-width: none !important;
  margin: 0 !important;
  padding: 0 !important;
  display: grid;
  gap: clamp(40px, 6vw, 64px);
}

.award-gallery .eyebrow {
  color: var(--text-secondary, rgba(15, 26, 19, 0.58));
}

.award-gallery-title {
  font-size: clamp(2.6rem, 5vw, 3.6rem);
  letter-spacing: -0.02em;
}

.award-gallery-lead {
  max-width: 760px;
  color: var(--text-secondary, rgba(15, 26, 19, 0.68));
}

.award-gallery-toggle-labels {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.award-gallery-toggle {
  padding: 10px 18px;
  border-radius: 999px;
  border: 1px solid rgba(15, 26, 19, 0.12);
  background: rgba(15, 26, 19, 0.04);
  color: var(--text-secondary, rgba(15, 26, 19, 0.68));
  cursor: pointer;
  transition: background 0.3s ease, border-color 0.3s ease;
}

.award-gallery-toggle.is-active {
  background: var(--primary-green);
  border-color: transparent;
  color: #0f1a13;
}


.award-gallery__container {
  position: relative;
  width: min(100%, 1640px);
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 72px);
  display: grid;
  gap: clamp(24px, 4vw, 40px);
}

.award-gallery__grid,
.award-gallery .wp-block-gallery {
  --award-gallery-columns: 4;
  columns: var(--award-gallery-columns);
  column-gap: clamp(18px, 3vw, 32px);
  width: 100%;
}

.award-gallery__item,
.award-gallery .wp-block-image {
  break-inside: avoid;
  position: relative;
  margin: 0 0 clamp(18px, 3vw, 28px);
  overflow: hidden;
  border-radius: 16px;
  background: rgba(15, 26, 19, 0.06);
  border: 1px solid rgba(15, 26, 19, 0.08);
  box-shadow: 0 4px 20px rgba(15, 26, 19, 0.25);
  cursor: pointer;
  transform: translateZ(0);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
  isolation: isolate;
}

.award-gallery__item::before,
.award-gallery .wp-block-image::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.18), rgba(230, 236, 232, 0.12));
  opacity: 0;
  transition: opacity 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 2;
  pointer-events: none;
}

.award-gallery__item::after,
.award-gallery .wp-block-image::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.18), transparent);
  transition: left 0.6s ease;
  z-index: 3;
  pointer-events: none;
}

.award-gallery__item:hover::before,
.award-gallery .wp-block-image:hover::before,
.award-gallery__item:focus-within::before,
.award-gallery .wp-block-image:focus-within::before {
  opacity: 1;
}

.award-gallery__item:hover::after,
.award-gallery .wp-block-image:hover::after,
.award-gallery__item:focus-within::after,
.award-gallery .wp-block-image:focus-within::after {
  left: 100%;
}

.award-gallery__item .corner-accent,
.award-gallery .wp-block-image .corner-accent {
  position: absolute;
  width: 20px;
  height: 20px;
  border: 2px solid rgba(255, 255, 255, 0.75);
  opacity: 0;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.35s ease;
  z-index: 4;
  pointer-events: none;
}

.corner-accent.top-left {
  top: 15px;
  left: 15px;
  border-right: none;
  border-bottom: none;
  transform: translate(-15px, -15px) rotate(-45deg);
}

.corner-accent.top-right {
  top: 15px;
  right: 15px;
  border-left: none;
  border-bottom: none;
  transform: translate(15px, -15px) rotate(45deg);
}

.corner-accent.bottom-left {
  bottom: 15px;
  left: 15px;
  border-right: none;
  border-top: none;
  transform: translate(-15px, 15px) rotate(45deg);
}

.corner-accent.bottom-right {
  bottom: 15px;
  right: 15px;
  border-left: none;
  border-top: none;
  transform: translate(15px, 15px) rotate(-45deg);
}

.award-gallery__item:hover .corner-accent,
.award-gallery .wp-block-image:hover .corner-accent,
.award-gallery__item:focus-within .corner-accent,
.award-gallery .wp-block-image:focus-within .corner-accent {
  opacity: 1;
  transform: translate(0, 0) rotate(0deg);
}

.award-gallery__item.is-hidden,
.award-gallery .wp-block-image.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.award-gallery__item.is-visible,
.award-gallery .wp-block-image.is-visible {
  animation: awardFade 0.6s ease forwards;
}

.award-gallery__item:hover,
.award-gallery .wp-block-image:hover,
.award-gallery__item:focus-within,
.award-gallery .wp-block-image:focus-within {
  transform: scale(1.05) translateY(-12px);
  box-shadow:
    0 25px 50px rgba(15, 26, 19, 0.42),
    0 0 30px rgba(99, 102, 241, 0.22);
  z-index: 10;
}

.award-gallery__item img,
.award-gallery .wp-block-image img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 16px;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  z-index: 1;
}

.award-gallery__item:hover img,
.award-gallery .wp-block-image:hover img,
.award-gallery__item:focus-within img,
.award-gallery .wp-block-image:focus-within img {
  transform: scale(1.02);
}

.load-trigger {
  height: 100px;
  position: relative;
}

.loading-spinner {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 40px;
  height: 40px;
  border: 3px solid rgba(99, 102, 241, 0.3);
  border-radius: 50%;
  border-top-color: var(--primary-green);
  animation: spin 1s linear infinite;
  opacity: 0;
}

.loading-spinner.visible {
  opacity: 1;
}

.loading-indicator {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: rgba(255, 255, 255, 0.12);
  overflow: hidden;
}

.loading-bar {
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, var(--primary-green), rgba(110, 232, 132, 0.8));
  transition: width 0.3s ease;
}

.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.95);
  backdrop-filter: blur(12px);
  z-index: 4000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(16px, 5vw, 40px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.lightbox.is-active,
.lightbox.active {
  opacity: 1;
  visibility: visible;
}

.lightbox-content {
  position: relative;
  max-width: min(90vw, 1280px);
  max-height: 90vh;
  transform: scale(0.9);
  transition: transform 0.3s ease;
}

.lightbox.is-active .lightbox-content,
.lightbox.active .lightbox-content {
  transform: scale(1);
}

.lightbox-image {
  max-width: 100%;
  max-height: 90vh;
  width: auto;
  border-radius: 12px;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
}

.lightbox-close,
.lightbox-nav {
  position: absolute;
  background: rgba(255, 255, 255, 0.12);
  border: none;
  color: #ffffff;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: transform 0.3s ease, background 0.3s ease;
}

.lightbox-close {
  top: -50px;
  right: 0;
  width: 50px;
  height: 50px;
  font-size: 30px;
}

.lightbox-nav {
  top: 50%;
  transform: translateY(-50%);
  width: 60px;
  height: 60px;
  font-size: 24px;
}

.lightbox-prev {
  left: -80px;
}

.lightbox-next {
  right: -80px;
}

.lightbox-close:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: rotate(90deg);
}

.lightbox-nav:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-50%) scale(1.1);
}

.lightbox-info {
  position: absolute;
  bottom: -70px;
  left: 0;
  right: 0;
  text-align: center;
  color: #ffffff;
}

.lightbox-title {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 5px;
}

.lightbox-category {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.65);
}

html.award-gallery-lightbox-open,
body.award-gallery-lightbox-open {
  overflow: hidden;
}

html.award-gallery-lightbox-open .site-nav,
body.award-gallery-lightbox-open .site-nav {
  opacity: 0 !important;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

@keyframes spin {
  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

@keyframes awardFade {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Footer */
.site-footer {
  background: rgba(15, 26, 19, 0.92);
  color: rgba(236, 248, 241, 0.9);
  padding: 24px 0;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.footer-top-link a {
  color: rgba(236, 248, 241, 0.9);
  font-weight: 600;
}

.footer-top-link a:hover {
  color: var(--accent-green);
}

/* Responsive */
@media (max-width: 1100px) {
  .hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-copy {
    align-items: center;
  }

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

  .section--split .section-container {
    grid-template-columns: 1fr;
  }

  .section-container {
    padding: 0 24px;
  }

  .section--grid .card-grid,
  .card-grid--equal {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .award-gallery__grid,
  .award-gallery .wp-block-gallery {
    columns: 3;
  }

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

  .press-timeline {
    top: calc(var(--nav-height) + 10px);
  }

  .press-modal__body {
    column-count: 1;
    column-rule: none;
  }
}

@media (max-width: 768px) {
  .hero {
    min-height: auto;
    padding: 140px 0 120px;
  }

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

  .section {
    padding: 90px 0;
  }

  .section-container {
    padding: 0 20px;
  }

  .section--grid .card-grid,
  .card-grid--equal {
    grid-template-columns: 1fr;
  }

  .section--timeline .wp-block-list,
  .section--timeline .timeline-list {
    padding-left: 0;
  }

  .section--timeline .wp-block-list::before,
  .section--timeline .timeline-list::before {
    left: 0;
  }

  .section--timeline li {
    padding-left: 28px;
  }

  .section--timeline li::before {
    left: 0;
  }

  .cta-card {
    padding: 32px;
  }

  .gallery-panorama-copy {
    padding: 0 20px;
  }

  .gallery-panorama {
    height: auto;
    padding: 36px 0 64px;
  }

  .gallery-panorama-track {
    width: 100%;
    transform: none;
    flex-direction: row;
    height: auto;
    overflow-x: auto;
    overflow-y: hidden;
    padding: 0 16px;
    gap: 20px;
    scroll-snap-type: x proximity;
  }

  .gallery-panorama-item,
  .gallery-panorama-item.is-slower,
  .gallery-panorama-item.is-slower-2,
  .gallery-panorama-item.is-faster,
  .gallery-panorama-item.is-faster-2 {
    transform: none;
    min-height: auto;
  }

  .gallery-panorama-item img {
    max-width: clamp(240px, 68vw, 380px);
    max-height: none;
    border-radius: 20px;
  }

  .gallery-panorama-hint {
    position: static;
    margin: 0 24px 16px;
    justify-self: flex-start;
  }

  .award-gallery-wrapper {
    padding: 0 20px;
  }

  .award-gallery__grid,
  .award-gallery .wp-block-gallery {
    columns: 2;
  }

  .press-intro__inner {
    padding: 0 16px;
    justify-content: flex-start;
  }

  .press-intro__content {
    text-align: left;
    gap: 12px;
  }

  .press-timeline {
    position: static;
    padding: 12px 0;
    margin-bottom: 32px;
    box-shadow: none;
    backdrop-filter: none;
    border-bottom: none;
  }

  .press-timeline::after {
    display: none;
  }

  .press-year {
    padding: 10px 20px;
    font-size: 0.8rem;
  }

  .press-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .press-card {
    transform: none;
  }

  .press-card:focus-within,
  .press-card:hover {
    transform: translateY(-2px);
  }

  .press-modal__dialog {
    width: calc(100% - 32px);
    max-height: calc(100vh - 64px);
    padding: 28px 24px 36px;
  }

  .press-modal__body {
    max-height: calc(100% - 180px);
    padding-right: 0;
    column-count: 1;
    column-rule: none;
  }

  .press-dropcap {
    font-size: 2.8rem;
  }

  .press-modal__close {
    top: 12px;
    right: 12px;
  }

  .lightbox-nav {
    display: none;
  }

  .lightbox-close {
    top: -48px;
  }
}

@media (max-width: 540px) {
  .hero-title {
    font-size: 2.8rem;
  }

  .hero-meta {
    padding: 16px;
  }

  .section-container {
    padding: 0 16px;
  }

  .award-gallery__grid,
  .award-gallery .wp-block-gallery {
    columns: 1;
  }

  .press-year {
    padding: 9px 16px;
    font-size: 0.76rem;
  }

  .press-card__header,
  .press-card__footer {
    padding: 16px 20px;
  }

  .press-card__content {
    padding: 20px;
  }

  .press-dropcap {
    font-size: 2.4rem;
    margin-right: 10px;
  }

  .press-modal__dialog {
    padding: 24px 18px 32px;
    border-radius: 20px;
  }

  .press-modal__title {
    font-size: 1.8rem;
  }
}
