/* ============================================
   HOME PAGE — exact Figma spec
============================================ */

/* ══════════════════════════════════════
   HERO
   Canvas: 1920 × 1200px
   BG: radial-gradient(70.71% 84.85% at 50% 60%, #6D2312 → #010101 77.4%)
   Photo overlay: diagonal gradient
   Arch border: 3px top/sides, border-image radial-gradient
   Content centred via Figma calc() positions
══════════════════════════════════════ */
.hero {
  position: relative;
  width: 100%;
  height: 900px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Layer 1 — base radial BG */
.hero-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(70.71% 84.85% at 50% 60%, #6D2312 0%, #010101 77.4%);
  background-color: #0E0600;
}

/* Layer 2 — diagonal gold texture */
.hero-texture {
  position: absolute;
  inset: 0;
  background: linear-gradient(302.01deg,
    rgba(0,0,0,0) 0%,
    rgba(0,0,0,0) 0.91%,
    rgba(231,173,63,0.043) 0.91%,
    rgba(231,173,63,0.043) 0.95%
  );
}

/* Layer 3 — video background */
.hero-video-wrap {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 1;
}
.hero-video {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  object-fit: cover;
  opacity: 0.22;
  mix-blend-mode: luminosity;
  pointer-events: none;
}

/* Layer 4 — strengthened vignette so text is always legible */
.hero-vignette {
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    /* Centre warm glow — keeps brand colour showing through */
    radial-gradient(58% 52% at 50% 52%, rgba(109,35,18,0.18) 0%, transparent 100%),
    /* Heavy top fade — header area stays dark */
    linear-gradient(180deg, rgba(1,1,1,0.55) 0%, transparent 28%),
    /* Heavy bottom fade — CTA area stays readable */
    linear-gradient(0deg, rgba(1,1,1,0.72) 0%, transparent 38%),
    /* Edge vignette — pulls focus to centre */
    radial-gradient(80% 80% at 50% 50%, transparent 40%, rgba(1,1,1,0.82) 100%);
}

/* Layer 5 — arch border
   Figma: left:15.99% right:16.01% top:16% bottom:0
   border-width: 3px 3px 0 3px
   border-image: radial-gradient at 50% 0% */
.hero-arch {
  box-sizing: border-box;
  position: absolute;
  left: 15.99%;
  right: 16.01%;
  top: 7%;
  bottom: 0;
  border-style: solid;
  border-width: 3px 3px 0 3px;
  border-radius: 1287.35px 1287.35px 0 0;
  border-color: rgba(201,150,42,0.14);
  pointer-events: none;
  z-index: 3;
}

/* Content — centred in the visible area below 110px nav */
.hero-inner {
  position: absolute;
  z-index: 4;
  width: 100%;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  top: 48%;
  transform: translateY(-50%);
  padding: 0 20px;
}

/* Eyebrow row */
.hero-eyebrow-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-bottom: 30px;
}
.hero-eyebrow-line {
  width: 48px; height: 1px;
  background: linear-gradient(90deg, rgba(231,173,63,0) 0%, #E7AD3F 50%, rgba(231,173,63,0) 100%);
  flex-shrink: 0;
}
/* Celebrating Excellence Since 2018
   Jost 500 14px / letter-spacing 4.41px / uppercase / #E7AD3F */
.hero-eyebrow {
  font-family: 'Jost', sans-serif;
  font-weight: 500;
  font-size: 14px;
  line-height: 100%;
  letter-spacing: 4.41px;
  text-transform: uppercase;
  color: #E7AD3F;
  margin: 0;
  white-space: nowrap;
}

/* MECAM AWARDS heading — all caps
   MECAM: Cormorant 300 78px / #FFFFFF
   AWARDS: Cormorant 500 78px / gold gradient */
.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 68px;
  line-height: 70px;
  letter-spacing: 5.46px;
  text-transform: uppercase;
  margin: 0;
}
.hero-title .mecam {
  font-weight: 300;
  color: #FFFFFF;
}
.hero-title .awards {
  font-weight: 500;
  background: linear-gradient(90deg, #ECBB45 0%, #BD7B2E 35%, #FEEB94 60%, #E7AD3F 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Middle East Composites & Advanced Materials Awards 2026
   Cormorant Garamond 500 21px / letter-spacing 3.78px / #EFE3CE */
.hero-subtitle {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  font-size: 21px;
  line-height: 100%;
  letter-spacing: 3.78px;
  text-align: center;
  color: #EFE3CE;
  margin: 14px auto 0;
  max-width: 600px;
}

/* Horizontal divider: 60px gold gradient */
.hero-rule {
  width: 60px; height: 1px;
  background: linear-gradient(90deg, #E7AD3F 0%, #FEEB94 100%);
  margin: 20px auto;
}

/* Honouring the visionaries...
   Jost 400 Italic 20px / line-height 27.75px / rgba(248,244,238,0.58) */
.hero-desc {
  font-family: 'Jost', sans-serif;
  font-weight: 400;
  font-style: italic;
  font-size: 20px;
  line-height: 27.75px;
  letter-spacing: 0;
  text-align: center;
  color: rgba(248,244,238,0.58);
  max-width: 682px;
  margin: 0 auto;
}

/* October 23, 2026 · Grand Ballroom, Dubai
   Jost 400 14px / letter-spacing 2.64px / uppercase / #ECBB45 */
.hero-meta {
  font-family: 'Jost', sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 100%;
  letter-spacing: 2.64px;
  text-transform: uppercase;
  text-align: center;
  color: #ECBB45;
  margin-top: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
}
.hero-meta .dot {
  width: 4px; height: 4px;
  border-radius: 50%;
  background: #ECBB45;
  flex-shrink: 0;
}

/* Buttons
   Submit: 247.67×50 / gradient 101.06deg / border #E7AD3F / #FEEB94
   View:   227.56×50 / transparent / border rgba(231,173,63,0.5) / #ECBB45
   Both: Jost 500 11px / letter-spacing 2.42px */
.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 36px;
}
.hero-btn-primary {
  box-sizing: border-box;
  width: 247.67px;
  height: 50px;
  background: linear-gradient(101.06deg, #6D2312 0%, #8A3015 60%, #BD7B2E 100%);
  border: 1px solid #E7AD3F;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Jost', sans-serif;
  font-weight: 500;
  font-size: 11px;
  line-height: 16px;
  letter-spacing: 2.42px;
  text-transform: uppercase;
  color: #FEEB94;
  text-decoration: none;
  transition: filter .25s, transform .25s;
}
.hero-btn-primary:hover { filter: brightness(1.15); transform: translateY(-2px); color: #FEEB94; }

.hero-btn-secondary {
  box-sizing: border-box;
  width: 227.56px;
  height: 50px;
  background: transparent;
  border: 1px solid rgba(231,173,63,0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Jost', sans-serif;
  font-weight: 500;
  font-size: 11px;
  line-height: 16px;
  letter-spacing: 2.42px;
  text-transform: uppercase;
  color: #ECBB45;
  text-decoration: none;
  transition: border-color .25s, background .25s, transform .25s;
}
.hero-btn-secondary:hover { border-color: #E7AD3F; background: rgba(231,173,63,0.07); transform: translateY(-2px); color: #ECBB45; }

/* Scroll indicator */
.hero-scroll {
  position: absolute;
  bottom: 40px; left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  font-family: 'Jost', sans-serif;
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.28);
}
.hero-scroll .line {
  width: 1px; height: 36px;
  background: linear-gradient(180deg, #E7AD3F, transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse { 0%,100%{opacity:.2;} 50%{opacity:1;} }



/* ══════════════════════════════════════
   ABOUT SECTION — Figma exact
   Trophy: absolute right, large, zoomed in
   Content: left 55% width
   Stats: directly below paragraphs, no big gap
   Numbers: stroke style Cinzel 700
══════════════════════════════════════ */
.about-section {
  position: relative;
  border-top: 0.5px solid rgba(201,150,42,0.4);
  border-bottom: 0.5px solid rgba(201,150,42,0.4);
  overflow: hidden;
  padding: 90px 0 70px;
  isolation: isolate;
}
.about-bg {
  position: absolute;
  inset: 0;
  background: url('../img/about-bg.png') center / cover no-repeat;
  z-index: 0;
}
.about-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(90% 70% at 50% 50%, rgba(20,8,0,0.55) 0%, rgba(20,8,0,0.2) 100%);
}

/* Trophy: absolute right — pushed down, base touches bottom border */
.about-trophy {
  position: absolute;
  right: -20px;
  bottom: 0;
  top: 0;
  width: 42%;
  z-index: 1;
  pointer-events: none;
  overflow: visible;
}
.about-trophy img {
  position: absolute;
  bottom: -120px;
  left: 50%;
  transform: translateX(-50%);
  height: 105%;
  width: auto;
  opacity: 0.22;
  mix-blend-mode: luminosity;
  filter: brightness(1.6) contrast(0.8) saturate(1.1);
}

/* Main layout: text occupies left ~58% */
.about-inner {
  position: relative;
  z-index: 2;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 64px;
}
.about-content {
  width: 58%;
}

/* Heading: Cormorant 400 50px / em 700 italic gold */
.about-heading {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  font-style: normal;
  font-size: 50px;
  line-height: 59px;
  letter-spacing: 0;
  color: #EFE3CE;
  margin-bottom: 28px;
}
.about-heading em {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-weight: 700;
  font-style: italic;
  font-size: 50px;
  line-height: 59px;
  letter-spacing: 0;
  background: linear-gradient(90deg, #ECBB45, #BD7B2E, #FEEB94, #E7AD3F);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Para: Jost 300 Italic 15px/28.5px */
.about-para {
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  font-size: 16px;
  line-height: 28.5px;
  color: rgba(255,255,255,0.82);
  margin-bottom: 16px;
}
.about-closing { color: #ffffffd1; }

/* Stats: directly below paragraphs, compact */


/* Responsive */
@media (max-width: 1400px) {
  .about-inner { padding: 0 64px; }
  .about-heading { font-size: 42px; line-height: 52px; }
  .about-heading em { font-size: 42px; line-height: 52px; }
  .about-trophy { width: 36%; right: 10px; }
}
@media (max-width: 1200px) {
  .about-inner { padding: 0 48px; }
  .about-content { width: 60%; }
  .about-heading { font-size: 36px; line-height: 46px; }
  .about-heading em { font-size: 36px; line-height: 46px; }
  .about-trophy { width: 34%; }
}
@media (max-width: 991px) {
  .about-content { width: 100%; }
  .about-trophy { width: 40%; right: 0; opacity: 0.8; }
  .about-inner { padding: 0 36px; }
  .about-section { padding: 70px 0 60px; }
}
@media (max-width: 768px) {
  .about-trophy { display: none; }
  .about-inner { padding: 0 24px; }
  .about-heading { font-size: 28px; line-height: 36px; }
  .about-heading em { font-size: 28px; line-height: 36px; }
}
@media (max-width: 480px) {
  .about-inner { padding: 0 16px; }
  .about-heading { font-size: 24px; line-height: 30px; }
  .about-heading em { font-size: 24px; line-height: 30px; }
  .about-section { padding: 50px 0; }
}


/* ══════════════════════════════════════
   CATEGORIES SECTION — Figma exact
   BG: #1C0B00
   Grid: 4×2, column dividers
   Cards: no border-box, clean minimal
   Icon: SVG circle with line icon, gold
   Title: Cormorant | Sub: Jost 300 20px
══════════════════════════════════════ */
.cat-section {
  background: #1C0B00;
  padding: 90px 0 80px;
  position: relative;
}
.cat-section .container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 64px;
}

/* Section heading */
.cat-section-head {
  text-align: center;
  margin-bottom: 64px;
}
.cat-section-title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  font-size: 52px;
  line-height: 1.1;
  letter-spacing: 0;
  color: #EFE3CE;
  margin-bottom: 18px;
}
.cat-section-title em {
  font-style: normal;
  font-weight: 400;
  background: linear-gradient(90deg, #ECBB45, #BD7B2E, #FEEB94);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
/* Sub: Jost 300 20px/29.76px rgba(248,244,238,0.58) */
.cat-section-sub {
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  font-size: 20px;
  line-height: 29.76px;
  letter-spacing: 0;
  text-align: center;
  color: rgba(248,244,238,0.58);
}

/* Grid: 4 columns, column dividers via background */
.cat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(2, 1fr);
  /* Column dividers */
  column-gap: 0;
  row-gap: 0;
  border: 1px solid rgba(201,150,42,0.2);
}

/* Each card */
.cat-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 52px 28px;
  text-align: center;
  position: relative;
  cursor: pointer;
  transition: background .3s ease;
  border-right: 0.5px solid rgba(201,150,42,0.22);
  border-bottom: 0.5px solid rgba(201,150,42,0.22);
}
/* Last card in each row — no right border */
.cat-card:nth-child(4n) { border-right: none; }
/* Last row cards — no bottom border */
.cat-card:nth-child(n+5) { border-bottom: none; }
.cat-card:hover {
  background: rgba(201,150,42,0.05);
}
.cat-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 50%, rgba(201,150,42,0.06) 0%, transparent 70%);
  opacity: 0;
  transition: opacity .3s ease;
}
.cat-card:hover::after { opacity: 1; }

/* Icon: SVG circle */
.cat-icon {
  width: 70px;
  height: 70px;
  margin-bottom: 22px;
  flex-shrink: 0;
  transition: filter .3s ease, transform .3s ease;
}
.cat-icon svg {
  width: 100%;
  height: 100%;
}
.cat-card:hover .cat-icon {
  filter: drop-shadow(0 0 8px rgba(201,150,42,0.5));
  transform: translateY(-2px);
}

/* Category name */
.cat-name {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  font-style: normal;
  font-size: 17px;
  line-height: 1.45;
  letter-spacing: 0.04em;
  color: #EFE3CE;
  transition: color .3s ease;
}
.cat-card:hover .cat-name { color: #ECBB45; }

/* CTA button */
.cat-foot {
  text-align: center;
  margin-top: 56px;
}
.cat-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 40px;
  height: 50px;
  border: 1px solid rgba(201,150,42,0.5);
  background: transparent;
  font-family: 'Jost', sans-serif;
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #ECBB45;
  text-decoration: none;
  transition: all .25s ease;
}
.cat-btn:hover {
  background: rgba(201,150,42,0.1);
  border-color: #C9962A;
  color: #FEEB94;
}

/* Responsive */
@media (max-width: 1200px) {
  .cat-section-title { font-size: 44px; }
  .cat-card { padding: 44px 20px; }
}
@media (max-width: 991px) {
  .cat-grid { grid-template-columns: repeat(2, 1fr); grid-template-rows: repeat(4, 1fr); }
  .cat-card:nth-child(4n) { border-right: 1px solid rgba(201,150,42,0.2); }
  .cat-card:nth-child(n+5) { border-bottom: 1px solid rgba(201,150,42,0.2); }
  .cat-card:nth-child(2n) { border-right: none; }
  .cat-card:nth-child(n+7) { border-bottom: none; }
  .cat-section-sub { font-size: 17px; }
}
@media (max-width: 600px) {
  .cat-grid { grid-template-columns: 1fr 1fr; }
  .cat-card { padding: 32px 16px; }
  .cat-icon { width: 50px; height: 50px; }
  .cat-name { font-size: 14px; }
  .cat-section-title { font-size: 34px; }
  .cat-section-sub { font-size: 15px; line-height: 24px; }
}
@media (max-width: 400px) {
  .cat-grid { grid-template-columns: 1fr; }
  .cat-card { border-right: none !important; }
  .cat-card:last-child { border-bottom: none; }
}


/* ══════════════════════════════════════
   STEPS TO NOMINATE — exact Figma spec
   BG: #0E0600
   Border top/bottom: 0.5px rgba(231,173,63,0.3)
   Heading left-aligned: Cormorant 400 54px
   span: Cormorant 500 54px gold
   Step boxes: 70×70 double border radial BG
   Connector: gold gradient line
   CTA: burgundy gradient button centered
══════════════════════════════════════ */
.steps-section {
  position: relative;
  background: #0E0600;
  border-top: 0.5px solid rgba(231,173,63,0.3);
  border-bottom: 0.5px solid rgba(231,173,63,0.3);
  padding: 90px 0 100px;
  overflow: hidden;
}

/* Grid decor removed */
.steps-grid-decor { display: none; }

/* Subtle vignette only — no mesh */
.steps-section::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 50%, rgba(109,35,18,0.06) 0%, transparent 70%);
  z-index: 0;
  pointer-events: none;
}

.steps-section .container { position: relative; z-index: 1; }

/* ── Eyebrow ── */
.steps-eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
}
.steps-eyebrow-line {
  width: 32px; height: 1px;
  background: #E7AD3F;
  flex-shrink: 0;
}
.steps-eyebrow-text {
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  font-size: 10.5px;
  line-height: 15px;
  letter-spacing: 4.41px;
  text-transform: uppercase;
  color: #E7AD3F;
}

/* ── Heading: left-aligned
   "Steps to" = Cormorant 400
   "Nominate" = Cormorant 500 gold ── */
.steps-title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  font-style: normal;
  font-size: 54px;
  line-height: 62.64px;
  letter-spacing: 1.08px;
  color: #FFFFFF;
  margin-bottom: 16px;
}
.steps-title em {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  font-style: normal;
  font-size: 54px;
  line-height: 62.64px;
  letter-spacing: 1.08px;
  background: linear-gradient(90deg, #ECBB45, #BD7B2E, #FEEB94);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── Subtitle ── */
.steps-sub {
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  font-size: 16px;
  line-height: 30px;
  color: rgba(248,244,238,0.58);
  max-width: 560px;
  margin-bottom: 70px;
}

/* ── Steps track: boxes + connector line ── */
.steps-track {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0 48px;
  /* Clip line so it doesn't bleed beyond box 03 */
  overflow: hidden;
}

/* Connector line connecting the 3 boxes */
.steps-connector {
  position: absolute;
  top: 35px;
  transform: translateY(-50%);
  /* Start at horizontal center of box 01, end at horizontal center of box 03 */
  left: 35px;
  right: calc(33.33% - 35px);
  height: 2px;
  /* Fades in from left, bright center, fades to transparent BEFORE box 03 ends */
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(231,173,63,0.2) 4%,
    rgba(231,173,63,0.6) 18%,
    rgba(254,235,148,0.95) 38%,
    rgba(254,235,148,1) 50%,
    rgba(254,235,148,0.95) 62%,
    rgba(231,173,63,0.6) 80%,
    rgba(231,173,63,0.15) 93%,
    transparent 98%,
    transparent 100%
  );
  z-index: 0;
  box-shadow: 0 0 6px 1px rgba(231,173,63,0.15);
}

/* Each step column */
.step-col {
  position: relative;
  z-index: 2;
  cursor: default;
  padding: 4px;
}

/* Hover wrapper — the whole column reacts */
.step-col:hover .step-box {
  background: radial-gradient(70.71% 70.71% at 50% 50%, #8A3015 0%, #1A0800 100%);
  border-color: rgba(231,173,63,0.85);
  box-shadow: 0 0 24px rgba(231,173,63,0.25), 0 0 8px rgba(231,173,63,0.15) inset;
  transform: scale(1.06);
}
.step-col:hover .step-box-inner {
  border-color: rgba(231,173,63,0.45);
}
.step-col:hover .step-num {
  color: #FEEB94;
  text-shadow: 0 0 18px rgba(254,235,148,0.5);
}
.step-col:hover .step-title {
  color: #FEEB94;
}
.step-col:hover .step-desc {
  color: rgba(248,244,238,0.82);
}

/* Step number box: 70×70 */
.step-box {
  width: 70px;
  height: 70px;
  background: radial-gradient(70.71% 70.71% at 50% 50%, #6D2312 0%, #0D0D0D 100%);
  border: 1px solid rgba(231,173,63,0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 28px;
  position: relative;
  transition: background .3s ease, border-color .3s ease, box-shadow .3s ease, transform .3s ease;
}
/* Inner double border */
.step-box-inner {
  position: absolute;
  inset: 5px;
  border: 1px solid rgba(231,173,63,0.14);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color .3s ease;
}

/* Step number: Cormorant 500 28px gold */
.step-num {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  font-size: 28px;
  line-height: 34px;
  color: #E7AD3F;
  transition: color .3s ease, text-shadow .3s ease;
}

/* Step title: Cormorant 500 24px */
.step-title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  font-size: 24px;
  line-height: 100%;
  letter-spacing: 0;
  color: #FFFFFF;
  margin-bottom: 16px;
  transition: color .3s ease;
}

/* Step description: Jost 300 16px */
.step-desc {
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  font-size: 16px;
  line-height: 24.57px;
  letter-spacing: 0;
  color: rgba(248,244,238,0.58);
  max-width: 340px;
  transition: color .3s ease;
}

/* ── CTA button ── */
.steps-cta {
  text-align: center;
  margin-top: 70px;
}
.steps-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 50px;
  padding: 0 48px;
  background: linear-gradient(101.38deg, #6D2312 0%, #8A3015 60%, #BD7B2E 100%);
  border: 1px solid #E7AD3F;
  font-family: 'Jost', sans-serif;
  font-weight: 500;
  font-size: 11px;
  line-height: 16px;
  letter-spacing: 2.42px;
  text-transform: uppercase;
  color: #FEEB94;
  text-decoration: none;
  transition: filter .25s ease, transform .25s ease;
}
.steps-btn:hover { filter: brightness(1.15); transform: translateY(-2px); color: #FEEB94; }

/* ── Responsive ── */
@media (max-width: 1200px) {
  .steps-title { font-size: 46px; line-height: 54px; }
  .steps-title em { font-size: 46px; line-height: 54px; }
}
@media (max-width: 991px) {
  .steps-track { grid-template-columns: 1fr; gap: 50px; }
  .steps-connector { display: none; }
  .step-desc { max-width: 100%; }
  .steps-title { font-size: 38px; line-height: 46px; }
  .steps-title em { font-size: 38px; line-height: 46px; }
  .steps-sub { margin-bottom: 48px; }
}
@media (max-width: 768px) {
  .steps-section { padding: 70px 0 80px; }
  .steps-title { font-size: 32px; line-height: 40px; }
  .steps-title em { font-size: 32px; line-height: 40px; }
  .steps-sub { font-size: 14px; line-height: 24px; }
  .step-title { font-size: 20px; }
  .step-desc { font-size: 14px; }
}
@media (max-width: 480px) {
  .steps-section { padding: 50px 0 60px; }
  .steps-title { font-size: 28px; line-height: 34px; }
  .steps-title em { font-size: 28px; line-height: 34px; }
  .steps-cta { margin-top: 48px; }
  .steps-btn { width: 100%; max-width: 280px; }
}


/* ══════════════════════════════════════
   KEY DATES — exact Figma spec
   BG: #1C0B00 + radial overlay
   Heading: center, Cormorant 400 + em gold
   Cards: 271px, dark gradient, gold top bar
   Label: Jost 300 9.5px / 3.42px tracking
   Month: Jost 500 italic 13px / 2.6px #ECBB45
   Day: Jost 500 60px gold gradient
   Year: Jost 300 14px / 2.1px rgba(248,244,238,0.58)
   Desc: Cormorant 500 18px white
   Top bar: 3px gradient #6D2312→#BD7B2E→#E7AD3F
══════════════════════════════════════ */
.dates-section {
  position: relative;
  background: #1C0B00;
  padding: 90px 0 100px;
  overflow: hidden;
}
.dates-section::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(90% 70% at 50% 50%, rgba(13,13,13,0.5) 0%, rgba(13,13,13,0.15) 100%);
  pointer-events: none;
  z-index: 0;
}
.dates-section .container { position: relative; z-index: 1; }

/* ── Heading block — centered ── */
.dates-head {
  text-align: center;
  margin-bottom: 60px;
}
.dates-eyebrow {
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  font-size: 10px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: #E7AD3F;
  margin-bottom: 14px;
}
/* "Mark Your" = Cormorant 400 white
   "Calendar"  = Cormorant 400 gold */
.dates-title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  font-size: 52px;
  line-height: 1.1;
  letter-spacing: 0.5px;
  color: #FFFFFF;
  margin-bottom: 16px;
}
.dates-title em {
  font-style: normal;
  background: linear-gradient(90deg, #ECBB45, #BD7B2E, #FEEB94);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.dates-sub {
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  font-size: 16px;
  line-height: 26px;
  color: rgba(248,244,238,0.55);
  text-align: center;
}

/* ── Cards row ── */
.dates-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

/* ── Each card ── */
.date-card {
  position: relative;
  height: 271px;
  background: linear-gradient(180deg, rgba(109,35,18,0.18) 0%, rgba(13,13,13,0.6) 100%);
  border: 1px solid rgba(231,173,63,0.18);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: border-color .3s ease, transform .3s ease;
}
.date-card:hover {
  border-color: rgba(231,173,63,0.4);
  transform: translateY(-4px);
}

/* Gold gradient top bar — 3px */
.date-card-top-bar {
  position: absolute;
  top: 1px;
  left: 1px;
  right: 1px;
  height: 3px;
  background: linear-gradient(90deg, #6D2312 0%, #BD7B2E 50%, #E7AD3F 100%);
  z-index: 1;
}

/* Inner content — centered */
.date-card-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
  height: 100%;
  padding-top: 38px;
}

/* Label: Jost 300 9.5px / 3.42px / uppercase / #E7AD3F */
.date-label {
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  font-size: 9.5px;
  line-height: 14px;
  letter-spacing: 3.42px;
  text-transform: uppercase;
  color: #E7AD3F;
  text-align: center;
  margin-bottom: 12px;
}

/* Month: Jost 500 italic 13px / 2.6px / #ECBB45 */
.date-month {
  font-family: 'Jost', sans-serif;
  font-weight: 500;
  font-style: italic;
  font-size: 13px;
  line-height: 19px;
  letter-spacing: 2.6px;
  color: #ECBB45;
  text-align: center;
  text-transform: uppercase;
  margin-bottom: 4px;
}

/* Day number: Jost 500 60px gold gradient */
.date-day {
  font-family: 'Jost', sans-serif;
  font-weight: 500;
  font-size: 60px;
  line-height: 68px;
  text-align: center;
  background: linear-gradient(103.2deg, #FEEB94 0%, #E7AD3F 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 6px;
}

/* Year: Jost 300 14px / 2.1px / rgba(248,244,238,0.58) */
.date-year {
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: 2.1px;
  color: rgba(248,244,238,0.58);
  text-align: center;
  margin-bottom: 14px;
}

/* Description: Cormorant 500 18px white */
.date-desc {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  font-size: 18px;
  line-height: 22px;
  color: #FFFFFF;
  text-align: center;
}

/* ── Responsive ── */
@media (max-width: 991px) {
  .dates-row { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; gap: 16px; }
  .date-card { height: auto; padding-bottom: 36px; }
  .dates-title { font-size: 44px; }
}
@media (max-width: 768px) {
  .dates-section { padding: 70px 0 80px; }
  .dates-title { font-size: 36px; }
  .dates-row { max-width: 340px; }
}
@media (max-width: 480px) {
  .dates-title { font-size: 30px; }
  .date-day { font-size: 48px; line-height: 56px; }
  .dates-row { max-width: 100%; }
}


/* ══════════════════════════════════════
   CTA STRIP — exact Figma spec
   BG: radial-gradient(51.15% 312.74% at 50% 55%, rgba(109,35,18,0.8)→#010101)
   Border: 0.5px solid #E7AD3F top + bottom
   Heading: Cormorant 400 44px | em: 500 gold
   Desc: Jost 400 18px center
   Button: gold fill, dark text
══════════════════════════════════════ */
.cta-strip {
  position: relative;
  background: radial-gradient(51.15% 312.74% at 50% 55%, rgba(109,35,18,0.8) 0%, #010101 100%);
  border-top: 0.5px solid #E7AD3F;
  border-bottom: 0.5px solid #E7AD3F;
  padding: 80px 0;
  text-align: center;
  overflow: hidden;
}

/* Heading: Cormorant 400 44px / 0.88px tracking */
.cta-strip-title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  font-style: normal;
  font-size: 44px;
  line-height: 100%;
  letter-spacing: 0.88px;
  text-align: center;
  color: #FFFFFF;
  margin-bottom: 20px;
}
/* "Recognised?" span: Cormorant 500 44px gold */
.cta-strip-title em {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  font-style: normal;
  font-size: 44px;
  line-height: 100%;
  letter-spacing: 0.88px;
  background: linear-gradient(90deg, #ECBB45, #BD7B2E, #FEEB94);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Desc: Jost 400 18px center */
.cta-strip-desc {
  font-family: 'Jost', sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 100%;
  letter-spacing: 0;
  text-align: center;
  color: rgba(248,244,238,0.65);
  margin-bottom: 36px;
  line-height: 28px;
}

/* Button: gold fill matching Figma */
.cta-strip-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 50px;
  padding: 0 44px;
  background: linear-gradient(90deg, #BD7B2E, #E7AD3F);
  border: none;
  font-family: 'Jost', sans-serif;
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: #0D0D0D;
  text-decoration: none;
  transition: filter .25s ease, transform .25s ease;
}
.cta-strip-btn:hover {
  filter: brightness(1.1);
  transform: translateY(-2px);
  color: #0D0D0D;
}

/* Responsive */
@media (max-width: 768px) {
  .cta-strip { padding: 60px 0; }
  .cta-strip-title { font-size: 34px; }
  .cta-strip-title em { font-size: 34px; }
  .cta-strip-desc { font-size: 15px; }
}
@media (max-width: 480px) {
  .cta-strip { padding: 50px 0; }
  .cta-strip-title { font-size: 28px; letter-spacing: 0.5px; }
  .cta-strip-title em { font-size: 28px; }
  .cta-strip-desc { font-size: 14px; }
  .cta-strip-btn { width: 240px; }
}


/* ══════════════════════════════════════
   SPONSORS SECTION — exact Figma spec
   BG: sponsors-bg.png + radial overlay
   Concentric vector borders at corners
   Heading: centered Cormorant 400 + em gold
   Tier labels: flanked by gold lines
   Cards: dark bg, white logo bg, gold border
   Enquiry: divider line + text + outline btn
══════════════════════════════════════ */
.sponsors-section {
  position: relative;
  background: #0E0600;
  padding: 90px 0 80px;
  overflow: hidden;
}

/* BG texture */
.sponsors-bg {
  position: absolute;
  inset: 0;
  background: url('../img/sponsors-bg.png') center / cover no-repeat;
  opacity: 0.55;
  z-index: 0;
}

/* Radial dark overlay */
.sponsors-section::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(90% 70% at 50% 50%, rgba(20,8,0,0.55) 0%, rgba(20,8,0,0.2) 100%);
  z-index: 1;
  pointer-events: none;
}

/* Decorative vectors removed */

.sponsors-section .container { position: relative; z-index: 2; }

/* ── Heading ── */
.sponsors-head {
  text-align: center;
  margin-bottom: 56px;
}
.sponsors-eyebrow {
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  font-size: 10px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: #E7AD3F;
  margin-bottom: 14px;
}
.sponsors-title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  font-size: 52px;
  line-height: 1.05;
  letter-spacing: 0.5px;
  color: #FFFFFF;
}
.sponsors-title em {
  font-style: normal;
  background: linear-gradient(90deg, #ECBB45, #BD7B2E, #FEEB94);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── Tier wrapper ── */
.sponsor-tier-wrap {
  margin-bottom: 44px;
}

/* Tier label row: ——— DIAMOND SPONSOR ——— */
.sponsor-tier-label-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 24px;
}
.sponsor-tier-line {
  flex: 1;
  max-width: 180px;
  height: 0.5px;
  background: rgba(231,173,63,0.4);
}
.sponsor-tier-name {
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  font-size: 10px;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: #E7AD3F;
  white-space: nowrap;
}

/* ── Sponsor rows ── */
.sponsor-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* ── Base card ── */
.sponsor-card {
  box-sizing: border-box;
  background: rgba(13,13,13,0.75);
  border: 1px solid rgba(231,173,63,0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color .3s ease, transform .3s ease;
  overflow: hidden;
}
.sponsor-card:hover {
  border-color: rgba(231,173,63,0.45);
  transform: translateY(-2px);
}

/* Diamond — large single card */
.diamond-card {
  width: 320px;
  height: 100px;
}

/* Logo cards — white bg so coloured logos show */
.logo-card {
  background: #EFE3CE;
  width: 220px;
  height: 90px;
  padding: 14px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.logo-card img {
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  filter: none;
}

/* Platinum row cards */
.platinum-row .sponsor-card:not(.logo-card) {
  width: 220px;
  height: 90px;
}

/* Category row cards */
.category-row .sponsor-card {
  width: 180px;
  height: 80px;
}

/* Placeholder text inside empty cards */
.sponsor-card-placeholder {
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  font-size: 12px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(239,227,206,0.35);
}

/* ── Enquiry block ── */
.sponsors-divider {
  width: 100%;
  height: 0.5px;
  background: rgba(231,173,63,0.2);
  margin: 56px 0 40px;
}
.sponsors-enquiry { text-align: center; }
.sponsors-enquiry-text {
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  font-size: 16px;
  line-height: 26px;
  color: rgba(248,244,238,0.6);
  margin-bottom: 26px;
}
.sponsors-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 50px;
  padding: 0 44px;
  background: transparent;
  border: 1px solid #E7AD3F;
  font-family: 'Jost', sans-serif;
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: #ECBB45;
  text-decoration: none;
  transition: all .25s ease;
}
.sponsors-btn:hover {
  background: rgba(231,173,63,0.1);
  color: #FEEB94;
  transform: translateY(-2px);
}



/* Organised By / Hosted By block */
.org-hosted-wrap {
  margin-top: 16px;
}
.org-hosted-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}
/* Sponsor role labels (Organised By / Hosted By) */
.sponsor-card-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.sponsor-role-label {
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(231,173,63,0.6);
  text-align: center;
}
/* ── Responsive ── */
@media (max-width: 991px) {
  .sponsors-title { font-size: 42px; }
  .diamond-card { width: 280px; }
  .logo-card { width: 180px; }
  .platinum-row .sponsor-card:not(.logo-card) { width: 180px; }

}
@media (max-width: 768px) {
  .sponsors-section { padding: 70px 0 60px; }
  .sponsors-title { font-size: 36px; }
  .sponsor-row { gap: 12px; }
  .diamond-card { width: 100%; max-width: 320px; }
  .logo-card { width: 160px; height: 80px; }
  .sponsor-tier-line { max-width: 80px; }
}
@media (max-width: 480px) {
  .sponsors-title { font-size: 30px; }
  .category-row .sponsor-card { width: 140px; height: 70px; }
  .sponsor-tier-line { max-width: 50px; }
}

/* ══════════════════════════════════════
   HERO RESPONSIVE
══════════════════════════════════════ */
@media (max-width: 1400px) {
  .hero { height: 820px; }
  .hero-title { font-size: 58px; line-height: 62px; }
  .hero-subtitle { font-size: 19px; }
}
@media (max-width: 1200px) {
  .hero { height: 760px; }
  .hero-title { font-size: 50px; line-height: 54px; letter-spacing: 3px; }
  .hero-subtitle { font-size: 17px; letter-spacing: 2.5px; }
  .hero-desc { font-size: 17px; }
  .hero-arch { display: none; }
}
@media (max-width: 991px) {
  .hero { height: auto; min-height: 100vh; }
  .hero-inner {
    position: relative;
    top: auto;
    transform: none;
    padding: 140px 24px 80px;
  }
  .hero-video-wrap { width: 100%; }
  .hero-arch { display: none; }
  .hero-title { font-size: 44px; line-height: 48px; letter-spacing: 2.5px; }
  .hero-subtitle { font-size: 16px; letter-spacing: 2px; }
  .hero-desc { font-size: 17px; max-width: 90%; }
  .hero-eyebrow { font-size: 12px; letter-spacing: 3px; }
  .hero-eyebrow-row { gap: 14px; }
  .hero-eyebrow-line { width: 32px; }
  .hero-scroll { display: none; }
}
@media (max-width: 768px) {
  .hero-inner { padding: 120px 20px 70px; }
  .hero-title { font-size: 36px; line-height: 40px; letter-spacing: 2px; }
  .hero-subtitle { font-size: 15px; letter-spacing: 1.5px; }
  .hero-desc { font-size: 16px; line-height: 24px; }
  .hero-meta { font-size: 12px; letter-spacing: 1.5px; gap: 10px; }
  .hero-btn-primary { width: 220px; font-size: 10px; }
  .hero-btn-secondary { width: 200px; font-size: 10px; }
}
@media (max-width: 480px) {
  .hero-inner { padding: 100px 16px 60px; }
  .hero-title { font-size: 30px; line-height: 34px; letter-spacing: 1.5px; }
  .hero-eyebrow { font-size: 10px; letter-spacing: 2px; }
  .hero-subtitle { font-size: 13px; letter-spacing: 1px; }
  .hero-desc { font-size: 14px; }
  .hero-actions { flex-direction: column; gap: 12px; }
  .hero-btn-primary, .hero-btn-secondary { width: 260px; height: 46px; font-size: 10px; }
  .hero-meta { flex-direction: column; gap: 6px; }
  .hero-meta .dot { display: none; }
  .hero-rule { margin: 14px auto; }
}
@media (max-width: 360px) {
  .hero-title { font-size: 26px; letter-spacing: 1px; }
  .hero-btn-primary, .hero-btn-secondary { width: 240px; }
}

/* ══════════════════════════════════════
   SECTIONS RESPONSIVE
══════════════════════════════════════ */

/* About */
@media (max-width: 991px) {
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-visual { max-width: 320px; margin: 0 auto; order: -1; }
  .stat-strip { grid-template-columns: repeat(3,1fr); }
}
@media (max-width: 600px) {
  .stat-strip { grid-template-columns: 1fr; }
  .stat-item { border-right: none; border-bottom: 1px solid var(--border); padding: 28px 20px; }
  .stat-item:last-child { border-bottom: none; }
  .about-copy h2 { font-size: 24px; }
}

/* Categories */
@media (max-width: 991px) {
  .cat-grid { grid-template-columns: repeat(3,1fr); gap: 14px; }
}
@media (max-width: 768px) {
  .cat-grid { grid-template-columns: repeat(2,1fr); gap: 12px; }
  .cat-card { padding: 24px 14px; }
}
@media (max-width: 480px) {
  .cat-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
  .cat-card { padding: 18px 10px; }
  .cat-card h3 { font-size: 10px; }
}

/* Steps */
@media (max-width: 991px) {
  .steps-row { grid-template-columns: 1fr; gap: 40px; }
  .steps-row::before { display: none; }
  .step-item p { max-width: 100%; }
}

/* Dates */
@media (max-width: 768px) {
  .dates-row { grid-template-columns: 1fr; gap: 16px; }
  .date-card { padding: 24px 20px; }
  .date-card .date-day { font-size: 44px; }
}

/* Sponsors */
@media (max-width: 768px) {
  .sponsor-box { min-width: 160px !important; padding: 20px 24px !important; }
  .sponsor-tier.diamond .sponsor-box { min-width: 240px !important; }
}

/* Footer */
@media (max-width: 991px) {
  .footer-top { grid-template-columns: 1fr 1fr; gap: 28px; }
  .footer-brand-logo { height: 50px; }
}
@media (max-width: 600px) {
  .footer-top { grid-template-columns: 1fr; }
  .footer-about p { max-width: 100%; }
}

/* ── About responsive ── */
@media (max-width: 1400px) {
  .about-inner { padding: 0 64px; }
  .about-heading { font-size: 42px; line-height: 52px; }
  .about-heading em { font-size: 42px; line-height: 52px; }
}
@media (max-width: 1200px) {
  .about-inner { grid-template-columns: 1fr 320px; padding: 0 36px; }
  .about-content { padding-right: 60px; }
  .about-heading { font-size: 36px; line-height: 45px; }
  .about-heading em { font-size: 36px; line-height: 45px; }
}
@media (max-width: 991px) {
  .about-inner {
    grid-template-columns: 1fr;
    padding: 0 36px;
  }
  .about-content { padding-right: 0; }
  .about-visual { display: none; }
  .about-section { padding: 70px 0 60px; }
}
@media (max-width: 768px) {
  .about-inner { padding: 0 24px; }
  .about-heading { font-size: 28px; line-height: 36px; }
  .about-heading em { font-size: 28px; line-height: 36px; }
  .stat-item:last-child { grid-column: 1 / -1; }
}
@media (max-width: 480px) {
  .about-inner { padding: 0 16px; }
  .about-heading { font-size: 24px; line-height: 30px; }
  .about-heading em { font-size: 24px; line-height: 30px; }
  .about-section { padding: 50px 0 50px; }
}

/* ══════════════════════════════════════
   ABOUT HIGHLIGHT BOX
══════════════════════════════════════ */
.about-highlight-box {
  border: 1px solid rgba(201,150,42,0.38);
  border-left: 4px solid #C9962A;
  background: rgba(201,150,42,0.05);
  padding: 22px 24px 18px 24px;
  margin-top: 24px;
  position: relative;
}
.about-highlight-box::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, #C9962A 0%, rgba(201,150,42,0.15) 70%, transparent 100%);
}
.about-highlight-text {
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  font-size: 15px;
  line-height: 26px;
  color: rgba(255,255,255,0.82);
  margin: 0 0 10px 0;
}
.about-highlight-closing {
  margin-bottom: 0 !important;
  color: #ffffffd1;
  font-style: italic;
}

/* ══════════════════════════════════════
   CATEGORY GROUP CARDS (cgc)
══════════════════════════════════════ */
.cgc-wrap {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  border: 1px solid rgba(201,150,42,0.2);
  overflow: hidden;
}

/* Vertical separator between cards */
.cgc-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 40px 28px 36px;
  border-right: 1px solid rgba(201,150,42,0.15);
  text-decoration: none;
  background: transparent;
  transition: background .3s ease;
  overflow: hidden;
}
.cgc-card:last-child { border-right: none; }

/* Gold top bar — shines on hover */
.cgc-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, transparent, #C9962A 30%, #FEEB94 50%, #C9962A 70%, transparent);
  opacity: 0;
  transition: opacity .35s ease;
}
.cgc-card:hover {
  background: rgba(201,150,42,0.04);
}
.cgc-card:hover::before { opacity: 1; }

/* Icon box */
.cgc-icon {
  width: 56px; height: 56px;
  border: 1px solid rgba(201,150,42,0.28);
  display: flex; align-items: center; justify-content: center;
  padding: 12px;
  margin-bottom: 28px;
  flex-shrink: 0;
  transition: border-color .3s, box-shadow .3s;
}
.cgc-icon svg { width: 100%; height: 100%; }
.cgc-card:hover .cgc-icon {
  border-color: rgba(201,150,42,0.65);
  box-shadow: 0 0 14px rgba(201,150,42,0.15);
}

/* Number range */
.cgc-range {
  font-family: 'Cinzel', serif;
  font-weight: 700;
  font-size: 9px;
  letter-spacing: 2.5px;
  color: rgba(201,150,42,0.45);
  display: block;
  margin-bottom: 10px;
}

/* Group title */
.cgc-title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  font-size: 24px;
  line-height: 30px;
  color: #EFE3CE;
  margin: 0 0 18px 0;
  transition: color .3s;
  letter-spacing: 0.3px;
}
.cgc-card:hover .cgc-title {
  background: linear-gradient(90deg, #FEEB94, #E7AD3F);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Gold divider */
.cgc-divider {
  width: 32px; height: 1px;
  background: rgba(201,150,42,0.35);
  margin-bottom: 16px;
  transition: width .3s ease;
}
.cgc-card:hover .cgc-divider { width: 56px; }

/* Category list */
.cgc-list {
  list-style: none;
  padding: 0; margin: 0;
  display: flex; flex-direction: column;
  gap: 9px;
  flex: 1;
}
.cgc-list li {
  font-family: 'Jost', sans-serif;
  font-weight: 400;
    font-size: 14px;
    line-height: 22px;
  color: rgba(239,227,206,0.48);
  display: flex; align-items: flex-start; gap: 8px;
  transition: color .25s;
}
.cgc-list li::before {
  content: '';
  width: 4px; height: 4px;
  background: rgba(201,150,42,0.4);
  border-radius: 50%;
  flex-shrink: 0; margin-top: 7px;
  transition: background .25s;
}
.cgc-card:hover .cgc-list li { color: rgba(239,227,206,0.72); }
.cgc-card:hover .cgc-list li::before { background: #C9962A; }

/* Arrow — bottom right */
.cgc-arrow {
  position: absolute;
  bottom: 24px; right: 24px;
  font-size: 16px;
  color: rgba(201,150,42,0.3);
  transition: color .3s, transform .3s;
  line-height: 1;
}
.cgc-card:hover .cgc-arrow {
  color: #C9962A;
  transform: translateX(4px);
}

/* Responsive */
@media (max-width: 1200px) {
  .cgc-card { padding: 34px 22px 30px; }
  .cgc-title { font-size: 18px; line-height: 24px; }
}
@media (max-width: 1050px) {
  .cgc-wrap { grid-template-columns: repeat(2, 1fr); }
  .cgc-card:nth-child(2n) { border-right: none; }
  .cgc-card:nth-child(3), .cgc-card:nth-child(4) { border-top: 1px solid rgba(201,150,42,0.15); }
}
@media (max-width: 700px) {
  .cgc-wrap { grid-template-columns: 1fr; }
  .cgc-card { border-right: none; border-top: 1px solid rgba(201,150,42,0.15); }
  .cgc-card:first-child { border-top: none; }
}
@media (max-width: 480px) {
  .cgc-wrap { grid-template-columns: 1fr; }
  .cgc-card { border-right: none; border-top: 1px solid rgba(201,150,42,0.15); }
  .cgc-card:first-child { border-top: none; }
}
