/* Awards page — professional gallery */

.awards-heading {
  margin-top: 72px;
  background: transparent;
  padding: 72px 32px 8px;
  position: relative;
}

.awards-heading-inner {
  max-width: 1180px;
  margin: 0 auto;
  text-align: center;
}

.awards-heading .eyebrow {
  font-family: "Montserrat", "Poppins", sans-serif;
  font-size: 12px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: #a5762f;
  font-weight: 600;
  margin: 0 0 16px;
}

.awards-heading h1 {
  font-family: "Poppins", "Montserrat", sans-serif;
  font-size: clamp(34px, 5vw, 52px);
  font-weight: 700;
  line-height: 1.15;
  color: #0f1f38;
  margin: 0 0 20px;
  letter-spacing: -0.025em;
}

.awards-heading-rule {
  display: block;
  width: 56px;
  height: 2px;
  background: linear-gradient(90deg, transparent, #c99a4d, transparent);
  margin: 0 auto;
  border-radius: 2px;
}

.awards-page {
  --awards-navy: #0f1f38;
  --awards-navy-2: #16294a;
  --awards-gold: #a5762f;
  --awards-gold-light: #c99a4d;
  --awards-ink: #1c2430;
  --awards-ink-soft: #5b6472;
  --awards-line: #e3e6eb;
  --awards-paper: transparent;
  --awards-white: #ffffff;
  background: transparent;
  color: var(--awards-ink);
}

.awards-wrap {
  max-width: 1180px;
  margin: 0 auto;
  padding: 48px 32px 110px;
}

.awards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

@media (max-width: 920px) {
  .awards-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
}

@media (max-width: 600px) {
  .awards-heading {
    margin-top: 60px;
    padding: 48px 20px 4px;
  }

  .awards-heading h1 {
    font-size: 32px;
    margin-bottom: 16px;
  }

  .awards-grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .awards-wrap {
    padding: 36px 16px 80px;
  }

  .awards-card .imgbox {
    height: 300px;
    padding: 22px 18px;
  }

  .awards-card .content {
    padding: 20px 18px 22px;
  }
}

.awards-card {
  position: relative;
  background: #fff;
  border: 1px solid rgba(15, 31, 56, 0.08);
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
  text-align: left;
  padding: 0;
  display: flex;
  flex-direction: column;
  width: 100%;
  box-shadow:
    0 4px 6px -2px rgba(15, 31, 56, 0.04),
    0 12px 28px -8px rgba(15, 31, 56, 0.12);
  transition:
    box-shadow 0.35s ease,
    transform 0.35s ease,
    border-color 0.35s ease;
}

.awards-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 24px;
  right: 24px;
  height: 2px;
  background: linear-gradient(90deg, transparent, #c99a4d, transparent);
  opacity: 0.9;
  z-index: 2;
}

.awards-card:hover {
  transform: translateY(-8px);
  border-color: rgba(201, 154, 77, 0.45);
  box-shadow:
    0 10px 20px -8px rgba(15, 31, 56, 0.1),
    0 28px 48px -16px rgba(15, 31, 56, 0.22);
}

.awards-card:focus-visible {
  outline: 2px solid var(--awards-gold);
  outline-offset: 3px;
}

.awards-card .imgbox {
  position: relative;
  width: 100%;
  height: 380px;
  background: #ffffff;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 28px 24px;
}

.awards-card .imgbox::after {
  display: none;
}

.awards-card .imgbox img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
  filter: drop-shadow(0 10px 20px rgba(15, 31, 56, 0.12));
  transition: transform 0.4s ease, filter 0.4s ease;
}

.awards-card:hover .imgbox img {
  transform: scale(1.03) translateY(-4px);
  filter: drop-shadow(0 14px 26px rgba(15, 31, 56, 0.16));
}

.awards-card .content {
  padding: 22px 24px 26px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
  background: #fff;
  border-top: 1px solid rgba(15, 31, 56, 0.06);
}

.awards-card .category {
  font-family: "Poppins", sans-serif;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.55;
  color: var(--awards-navy);
  margin: 0;
  letter-spacing: -0.01em;
}

.awards-card .view-hint {
  font-family: "Montserrat", sans-serif;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--awards-gold);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  opacity: 0.75;
  transition: opacity 0.25s ease, gap 0.25s ease;
}

.awards-card .view-hint::after {
  content: "→";
  font-size: 13px;
  transition: transform 0.25s ease;
}

.awards-card:hover .view-hint {
  opacity: 1;
  gap: 10px;
}

.awards-card:hover .view-hint::after {
  transform: translateX(3px);
}

/* Lightbox — z-index above site footer */
.awards-lightbox {
  position: fixed;
  inset: 0;
  background: rgba(10, 14, 22, 0.9);
  backdrop-filter: blur(8px);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 10000000;
  padding: 28px 16px;
}

.awards-lightbox.open {
  display: flex;
}

.awards-lightbox .lb-inner {
  position: relative;
  width: 100%;
  max-width: 980px;
  max-height: 92vh;
  background: #fff;
  border-radius: 14px;
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  overflow: hidden;
  box-shadow: 0 30px 80px -20px rgba(0, 0, 0, 0.55);
}

.awards-lightbox .lb-image {
  position: relative;
  background: #ffffff;
  min-height: 0;
  min-width: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 36px 24px 36px 48px;
}

.awards-lightbox .lb-image img {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: calc(92vh - 48px);
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 12px 24px rgba(15, 31, 56, 0.14));
}

.awards-lightbox .lb-info {
  padding: 36px 32px 28px 24px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
  border-left: 1px solid var(--awards-line);
  text-align: left;
  background: #fff;
}

.awards-lightbox .lb-index {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--awards-gold);
  margin-bottom: 12px;
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
}

.awards-lightbox .lb-title {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-size: clamp(16px, 2vw, 20px);
  line-height: 1.45;
  margin: 0 0 14px;
  color: var(--awards-navy);
}

.awards-lightbox .lb-divider {
  height: 1px;
  background: var(--awards-line);
  margin: 0 0 16px;
  display: block;
}

.awards-lightbox .lb-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--awards-line);
  background: rgba(255, 255, 255, 0.95);
  color: var(--awards-ink);
  font-size: 18px;
  line-height: 1;
  cursor: pointer;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, border-color 0.2s;
}

.awards-lightbox .lb-close:hover {
  background: #f4f5f7;
  border-color: var(--awards-gold);
}

.awards-lightbox .lb-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--awards-line);
  background: rgba(255, 255, 255, 0.96);
  color: var(--awards-navy);
  font-size: 22px;
  cursor: pointer;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, border-color 0.2s;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.12);
}

.awards-lightbox .lb-nav:hover {
  background: var(--awards-white);
  border-color: var(--awards-gold);
}

.awards-lightbox .lb-prev {
  left: 12px;
}

.awards-lightbox .lb-next {
  right: 12px;
}

.awards-lightbox .lb-dots {
  display: flex;
  gap: 6px;
  margin-top: 4px;
  flex-wrap: wrap;
  justify-content: flex-start;
}

.awards-lightbox .lb-dots button {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  border: none;
  background: var(--awards-line);
  cursor: pointer;
  padding: 0;
  transition: background 0.2s, width 0.2s;
}

.awards-lightbox .lb-dots button.active {
  background: var(--awards-gold);
  width: 16px;
  border-radius: 3px;
}

@media (max-width: 760px) {
  .awards-lightbox {
    padding: 10px;
    align-items: center;
  }

  .awards-lightbox .lb-inner {
    grid-template-columns: 1.45fr 1fr;
    max-height: 88vh;
    width: 100%;
  }

  .awards-lightbox .lb-image {
    padding: 40px 8px 16px 36px;
  }

  .awards-lightbox .lb-image img {
    max-height: calc(88vh - 32px);
    max-width: 100%;
    width: auto;
  }

  .awards-lightbox .lb-info {
    padding: 40px 14px 16px 10px;
    border-left: 1px solid var(--awards-line);
    border-top: none;
    text-align: left;
    justify-content: flex-start;
    overflow-y: auto;
  }

  .awards-lightbox .lb-title {
    font-size: 13px;
    line-height: 1.35;
    margin-bottom: 8px;
  }

  .awards-lightbox .lb-index {
    font-size: 10px;
    margin-bottom: 6px;
  }

  .awards-lightbox .lb-prev {
    left: 4px;
    width: 34px;
    height: 34px;
    font-size: 18px;
  }

  .awards-lightbox .lb-next {
    right: 4px;
    width: 34px;
    height: 34px;
    font-size: 18px;
  }

  .awards-lightbox .lb-close {
    top: 8px;
    right: 8px;
    width: 34px;
    height: 34px;
  }
}

@media (max-width: 420px) {
  .awards-lightbox .lb-inner {
    grid-template-columns: 1.2fr 1fr;
  }

  .awards-lightbox .lb-image {
    padding: 36px 4px 12px 30px;
  }

  .awards-lightbox .lb-title {
    font-size: 12px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .awards-card,
  .awards-card .imgbox img,
  .awards-card .view-hint,
  .awards-card .view-hint::after,
  .awards-lightbox .lb-close,
  .awards-lightbox .lb-nav,
  .awards-lightbox .lb-dots button {
    transition: none !important;
  }
}
