/* =========================================================
   MRS UNIVERSE GREAT BRITAIN — Design System
   Palette: midnight navy / antique gold / crown crimson / cream
   Type: Cinzel · Cormorant Garamond · Jost
   ========================================================= */

:root {
  --navy-950: #070D1F;
  --navy-900: #0B1733;
  --navy-800: #122249;
  --navy-700: #1C3164;
  --navy-600: #2C4787;

  --gold-700: #9C7A2E;
  --gold-600: #B28F3C;
  --gold-500: #C9A24B;
  --gold-300: #E2CC8E;
  --gold-100: #F5ECCF;

  --crimson-700: #5E1023;
  --crimson-600: #7E1530;
  --crimson-500: #9C1C3B;

  --cream-50: #FBF8F1;
  --cream-100: #F3ECDC;

  --ink-900: #161D32;
  --ink-700: #3C4361;
  --ink-500: #6B7290;

  --white: #FFFFFF;

  --font-display: 'Cinzel', serif;
  --font-serif: 'Cormorant Garamond', serif;
  --font-body: 'Jost', sans-serif;

  --section-pad: clamp(64px, 9vw, 132px);
  --container: 1240px;
  --radius: 2px;
  --ease: cubic-bezier(.22, .61, .36, 1);
}

/* =========================================================
   Base
   ========================================================= */

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  background: var(--cream-50);
  color: var(--ink-900);
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

button {
  font-family: inherit;
  cursor: pointer;
}

h1,
h2,
h3,
h4,
p,
figure {
  margin: 0;
}

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 28px;
}

::selection {
  background: var(--gold-300);
  color: var(--navy-900);
}

:focus-visible {
  outline: 2px solid var(--gold-500);
  outline-offset: 3px;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* =========================================================
   Typography
   ========================================================= */

.eyebrow {
  font-family: var(--font-display);
  font-size: 12.5px;
  letter-spacing: .32em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--gold-600);
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.eyebrow::before {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--gold-500);
  display: inline-block;
}

.eyebrow.on-dark {
  color: var(--gold-300);
}

h2.section-title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.18;
  color: var(--navy-900);
  letter-spacing: .01em;
}

.on-dark h2.section-title,
h2.section-title.on-dark {
  color: var(--cream-50);
}

.section-lede {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(19px, 2vw, 23px);
  color: var(--ink-700);
  line-height: 1.6;
  max-width: 62ch;
}

.on-dark .section-lede {
  color: var(--cream-100);
}

.section-head {
  margin-bottom: 56px;
  max-width: 760px;
}

.section-head.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

p.body-text {
  font-size: 17px;
  color: var(--ink-700);
  max-width: 68ch;
  line-height: 1.85;
}

.on-dark p.body-text {
  color: rgba(251, 248, 241, 0.82);
}

blockquote.pull-quote {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(22px, 2.4vw, 30px);
  line-height: 1.5;
  color: var(--navy-900);
  border-left: 2px solid var(--gold-500);
  padding-left: 28px;
  margin: 36px 0;
}

.on-dark blockquote.pull-quote {
  color: var(--cream-50);
  border-color: var(--gold-500);
}

/* =========================================================
   Layout Helpers
   ========================================================= */

.section {
  padding: var(--section-pad) 0;
  position: relative;
}

.section--light {
  background: var(--cream-50);
}

.section--cream {
  background: var(--cream-100);
}

.section--navy {
  background: var(--navy-900);
  color: var(--cream-50);
}

.section--navy.deep {
  background: var(--navy-950);
}

.divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin: 0 auto;
  width: 100%;
}

.divider .line {
  height: 1px;
  width: 64px;
  background: linear-gradient(90deg, transparent, var(--gold-500), transparent);
}

.divider svg {
  width: 16px;
  height: 16px;
  color: var(--gold-500);
}

.grid {
  display: grid;
  gap: 32px;
}

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

.grid-3 {
  grid-template-columns: repeat(3, 1fr);
}

.grid-4 {
  grid-template-columns: repeat(4, 1fr);
}

.grid-5 {
  grid-template-columns: repeat(5, 1fr);
}

@media (max-width: 980px) {
  .grid-3,
  .grid-4,
  .grid-5 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 620px) {
  .grid-2,
  .grid-3,
  .grid-4,
  .grid-5 {
    grid-template-columns: 1fr;
  }
}

/* =========================================================
   Buttons
   ========================================================= */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 12.5px;
  letter-spacing: .18em;
  text-transform: uppercase;
  font-weight: 600;
  padding: 17px 30px;
  border-radius: var(--radius);
  border: 1px solid transparent;
  transition: all .35s var(--ease);
  white-space: nowrap;
}

.btn--gold {
  background: linear-gradient(180deg, var(--gold-300), var(--gold-600));
  color: var(--navy-950);
  box-shadow: 0 8px 24px -10px rgba(178, 143, 60, 0.65);
}

.btn--gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 28px -10px rgba(178, 143, 60, 0.75);
}

.btn--outline {
  background: transparent;
  border-color: var(--gold-500);
  color: var(--navy-900);
}

.on-dark .btn--outline,
.btn--outline.on-dark {
  color: var(--cream-50);
  border-color: var(--gold-500);
}

.btn--outline:hover {
  background: rgba(201, 162, 75, 0.12);
}

.btn--ghost {
  background: transparent;
  color: inherit;
  border-bottom: 1px solid var(--gold-500);
  padding: 6px 2px;
  border-radius: 0;
  letter-spacing: .18em;
}

.btn--ghost:hover {
  color: var(--gold-600);
}

.btn--crimson {
  background: linear-gradient(135deg, var(--crimson-500), var(--crimson-700));
  color: var(--cream-50);
}

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

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
}

/* =========================================================
   Cards
   ========================================================= */

.card {
  background: var(--white);
  border: 1px solid rgba(28, 49, 100, 0.08);
  padding: 36px 30px;
  position: relative;
  transition: transform .4s var(--ease), box-shadow .4s var(--ease);
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 50px -24px rgba(11, 23, 51, 0.35);
}

.card .icon {
  width: 44px;
  height: 44px;
  color: var(--gold-600);
  margin-bottom: 20px;
}

.card h3 {
  font-family: var(--font-display);
  font-size: 17px;
  letter-spacing: .04em;
  color: var(--navy-900);
  margin-bottom: 12px;
}

.card p {
  font-size: 15px;
  color: var(--ink-700);
  line-height: 1.75;
}

.card--navy {
  background: var(--navy-800);
  border-color: rgba(201, 162, 75, 0.18);
}

.card--navy h3 {
  color: var(--gold-300);
}

.card--navy p {
  color: rgba(251, 248, 241, 0.78);
}

/* =========================================================
   Reveal Animation
   ========================================================= */

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .8s var(--ease), transform .8s var(--ease);
}

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

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* =========================================================
   Header — Center Logo + Menu Below
   ========================================================= */

.site-nav--stacked {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: transparent;
  border-bottom: 0;
  padding: 0;
}

.nav-logo-strip {
  background: var(--cream-50);
  padding: 22px 0 20px;
  border-bottom: 1px solid rgba(201, 162, 75, 0.18);
  transition: padding .3s var(--ease), box-shadow .3s var(--ease);
}

.nav-logo-strip .container {
  display: flex;
  justify-content: center;
  align-items: center;
}

.brand--center {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  line-height: 0;
}

.brand-logo--large {
  display: block;
  width: clamp(320px, 34vw, 460px);
  height: auto;
  max-height: 110px;
  object-fit: contain;
}

.nav-menu-strip {
  background: rgba(6, 20, 52, 0.96);
  border-bottom: 1px solid rgba(201, 162, 75, 0.32);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.16);
}

.nav-menu-inner {
  min-height: 54px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 22px;
  position: relative;
}

.site-nav--stacked .nav-links {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: clamp(18px, 2vw, 34px);
}

.site-nav--stacked .nav-links a {
  color: var(--cream-50);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  line-height: 1;
  padding: 21px 0 19px;
  position: relative;
  transition: color .25s var(--ease);
}

.site-nav--stacked .nav-links a::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 13px;
  width: 0;
  height: 1px;
  background: var(--gold-500);
  transform: translateX(-50%);
  transition: width 0.25s var(--ease);
}

.site-nav--stacked .nav-links a:hover {
  color: var(--gold-300);
}

.site-nav--stacked .nav-links a:hover::after {
  width: 100%;
}

.nav-cta--stacked {
  position: absolute;
  right: 0;
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-cta--stacked .btn {
  min-height: 34px;
  padding: 10px 15px;
  font-size: 10px;
}

/* Menu Toggle */

.menu-toggle {
  width: 42px;
  height: 42px;
  border: 1px solid rgba(201, 162, 75, 0.45);
  background: rgba(251, 248, 241, 0.04);
  color: var(--cream-50);
  border-radius: 999px;
  display: none;
  align-items: center;
  justify-content: center;
}

.menu-toggle svg {
  width: 22px;
  height: 22px;
}

.site-nav--stacked .menu-toggle {
  display: none;
}

/* Scrolled Header */

.site-nav--stacked.scrolled .nav-logo-strip {
  padding: 14px 0 12px;
  box-shadow: 0 12px 30px rgba(7, 13, 31, 0.12);
}

.site-nav--stacked.scrolled .brand-logo--large {
  max-height: 82px;
}

/* Important: because header is taller now */

.hero {
  padding-top: clamp(160px, 13vw, 190px);
}

/* =========================================================
   Hero Image Fix
   ========================================================= */

.campaign-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: brightness(1.08) contrast(1.08);
}

/* =========================================================
   Value Bar
   ========================================================= */

.value-bar {
  background: var(--navy-950);
  color: var(--cream-50);
  border-top: 1px solid rgba(201, 162, 75, 0.22);
  border-bottom: 1px solid rgba(201, 162, 75, 0.22);
  padding: 26px 0;
}

.value-row {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
  align-items: center;
}

.value-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  color: var(--gold-300);
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  text-align: center;
}

.value-item svg {
  width: 22px;
  height: 22px;
  color: var(--gold-500);
  flex: 0 0 auto;
}

.tagline {
  margin-top: 20px;
  text-align: center;
  font-family: var(--font-serif);
  font-style: italic;
  color: rgba(251, 248, 241, 0.76);
  font-size: 20px;
}

/* =========================================================
   Footer
   ========================================================= */

.footer-main {
  background:
    radial-gradient(circle at top left, rgba(201, 162, 75, 0.12), transparent 36%),
    linear-gradient(180deg, var(--navy-900), var(--navy-950));
  color: var(--cream-50);
  padding: 76px 0 28px;
  border-top: 1px solid rgba(201, 162, 75, 0.26);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.35fr .8fr .8fr .9fr;
  gap: 48px;
  align-items: start;
}

.footer-brand p {
  margin-top: 20px;
  color: rgba(251, 248, 241, 0.76);
  font-size: 15px;
  line-height: 1.85;
  max-width: 420px;
}

.footer-logo-link {
  display: inline-flex;
  align-items: center;
  line-height: 0;
}

.footer-logo {
  display: block;
  width: min(280px, 80vw);
  height: auto;
  max-height: 86px;
  object-fit: contain;
}

.social-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 24px;
}

.social-row a {
  width: 40px;
  height: 40px;
  border: 1px solid rgba(201, 162, 75, 0.36);
  color: var(--gold-300);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  transition: all .3s var(--ease);
}

.social-row a:hover {
  background: rgba(201, 162, 75, 0.12);
  color: var(--cream-50);
  transform: translateY(-2px);
}

.social-row svg {
  width: 19px;
  height: 19px;
}

.footer-col h4 {
  font-family: var(--font-display);
  color: var(--gold-300);
  font-size: 15px;
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.footer-col a,
.footer-col p {
  display: block;
  color: rgba(251, 248, 241, 0.76);
  font-size: 15px;
  line-height: 1.8;
  transition: color .25s var(--ease);
}

.footer-col a {
  margin-bottom: 8px;
}

.footer-col a:hover {
  color: var(--gold-300);
}

.footer-bottom {
  margin-top: 58px;
  padding-top: 24px;
  border-top: 1px solid rgba(251, 248, 241, 0.12);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  color: rgba(251, 248, 241, 0.56);
  font-size: 13px;
  line-height: 1.6;
}

.footer-bottom a {
  color: rgba(251, 248, 241, 0.72);
}

.footer-bottom a:hover {
  color: var(--gold-300);
}

/* =========================================================
   Responsive
   ========================================================= */

@media (max-width: 1180px) {
  .nav-cta--stacked {
    display: none;
  }

  .site-nav--stacked .nav-links {
    gap: 22px;
  }

  .footer-grid {
    grid-template-columns: 1.2fr 1fr 1fr;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 980px) {
  .container {
    padding: 0 22px;
  }

  .nav-logo-strip {
    padding: 16px 0 14px;
  }

  .brand-logo--large {
    width: clamp(240px, 56vw, 340px);
    max-height: 84px;
  }

  .nav-menu-inner {
    min-height: 52px;
    justify-content: flex-end;
  }

  .site-nav--stacked .nav-links {
    display: none;
  }

  .site-nav--stacked .menu-toggle,
  .menu-toggle {
    display: inline-flex;
  }

  .hero {
    padding-top: 140px;
  }

  .value-row {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 620px) {
  .container {
    padding: 0 18px;
  }

  .section-head {
    margin-bottom: 38px;
  }

  .btn {
    width: 100%;
    padding: 15px 22px;
  }

  .btn-row {
    width: 100%;
  }

  .value-row {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .brand-logo--large {
    width: 230px;
    max-height: 70px;
  }

  .nav-logo-strip {
    padding: 13px 0 12px;
  }

  .nav-menu-inner {
    min-height: 48px;
  }

  .hero {
    padding-top: 125px;
  }

  .footer-main {
    padding: 58px 0 24px;
  }

  .footer-logo {
    width: min(235px, 80vw);
    max-height: 74px;
  }
}

/* ===== FIX: Center Logo Header ===== */

.site-nav--stacked {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  padding: 0;
  background: transparent;
}

/* Top white logo area */
.nav-logo-strip {
  width: 100%;
  background: #fbf8f1;
  padding: 20px 0 18px;
  border-bottom: 1px solid rgba(201, 162, 75, 0.18);
}

/* Important: make logo center of full page */
.nav-logo-strip .container {
  max-width: 100%;
  width: 100%;
  padding: 0 28px;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Logo link */
.brand--center {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
  line-height: 0;
}

/* Logo image */
.brand-logo--large {
  display: block;
  width: clamp(300px, 28vw, 430px);
  height: auto;
  max-height: 85px;
  object-fit: contain;
}

/* Menu strip below logo */
.nav-menu-strip {
  width: 100%;
  background: #081631;
  border-bottom: 1px solid rgba(201, 162, 75, 0.35);
}

/* Menu should stay centered */
.nav-menu-inner {
  min-height: 54px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

/* Center menu links */
.site-nav--stacked .nav-links {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 28px;
}

/* Menu text */
.site-nav--stacked .nav-links a {
  color: #fbf8f1;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 19px 0;
}

/* Buttons on right side */
.nav-cta--stacked {
  position: absolute;
  right: 28px;
  display: flex;
  align-items: center;
  gap: 12px;
}

/* Hero top spacing after new header */
.hero {
  padding-top: 145px;
}

/* Mobile */
@media (max-width: 980px) {
  .nav-logo-strip {
    padding: 15px 0 13px;
  }

  .brand-logo--large {
    width: clamp(230px, 55vw, 330px);
    max-height: 75px;
  }

  .nav-menu-inner {
    justify-content: flex-end;
    min-height: 52px;
  }

  .site-nav--stacked .nav-links,
  .nav-cta--stacked {
    display: none;
  }

  .site-nav--stacked .menu-toggle {
    display: inline-flex;
    margin-right: 20px;
  }

  .hero {
    padding-top: 128px;
  }
}

@media (max-width: 560px) {
  .brand-logo--large {
    width: 230px;
    max-height: 65px;
  }

  .hero {
    padding-top: 120px;
  }
}

/* ===== REMOVE TOP BLUE GAP + CENTER LOGO ===== */

html,
body {
  margin: 0;
  padding: 0;
}

/* Remove old header spacing/background */
.site-nav,
.site-nav--stacked {
  position: fixed;
  top: 0 !important;
  left: 0;
  width: 100%;
  margin: 0 !important;
  padding: 0 !important;
  background: transparent !important;
  border: 0 !important;
  z-index: 9999;
}

/* Remove any old pseudo background */
.site-nav::before,
.site-nav::after,
.site-nav--stacked::before,
.site-nav--stacked::after {
  display: none !important;
  content: none !important;
}

/* Logo white strip starts from very top */
.nav-logo-strip {
  margin: 0 !important;
  background: #fbf8f1;
  padding: 18px 0 16px;
  border-top: 0 !important;
  border-bottom: 1px solid rgba(201, 162, 75, 0.18);
}

/* Full-width center logo */
.nav-logo-strip .container {
  max-width: 100% !important;
  width: 100%;
  padding: 0 28px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
}

.brand--center {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
  line-height: 0;
}

.brand-logo--large {
  display: block;
  width: clamp(300px, 28vw, 430px);
  height: auto;
  max-height: 82px;
  object-fit: contain;
}

/* Menu below logo */
.nav-menu-strip {
  margin: 0 !important;
  background: #081631;
  border-top: 0 !important;
  border-bottom: 1px solid rgba(201, 162, 75, 0.35);
}

.nav-menu-inner {
  min-height: 54px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

/* Hero spacing after fixed header */
.hero {
  padding-top: 190px !important;
}
/* =========================================================
   Simple 4 Image Gallery Layout
   ========================================================= */

.gallery-section {
  background: #fbf8f1;
  overflow: hidden;
}

.gallery-section .section-head {
  margin-bottom: 58px;
}

.simple-gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(22px, 3vw, 48px);
  align-items: stretch;
  max-width: 1480px;
  margin: 0 auto;
  counter-reset: gallery-count;
}

.simple-gallery-card {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  border-radius: 14px;
  background: #d8d8d8;
  border: 1px solid rgba(11, 23, 51, 0.12);
  box-shadow: 0 18px 40px -12px rgba(11, 23, 51, 0.38), 0 4px 12px -4px rgba(11, 23, 51, 0.22);
  counter-increment: gallery-count;
  transition: transform .45s var(--ease), box-shadow .45s var(--ease), border-color .45s var(--ease);
}

.simple-gallery-card::before {
  content: counter(gallery-count, decimal-leading-zero);
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 3;
  font-family: var(--font-display);
  font-size: 12px;
  letter-spacing: .08em;
  color: var(--gold-300);
  background: rgba(7, 13, 31, 0.55);
  border: 1px solid rgba(201, 162, 75, 0.5);
  border-radius: 5px;
  padding: 5px 10px;
  line-height: 1;
  transition: background .35s var(--ease), border-color .35s var(--ease);
}

.simple-gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.6s var(--ease), filter 0.6s var(--ease);
}

.simple-gallery-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      180deg,
      rgba(7, 13, 31, 0.05),
      rgba(7, 13, 31, 0.78)
    );
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 26px;
  opacity: 0;
  transition: opacity 0.4s var(--ease);
}

.simple-gallery-overlay span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #f5eccf;
  border: 1px solid rgba(201, 162, 75, 0.72);
  border-radius: 999px;
  padding: 11px 18px;
  background: rgba(7, 13, 31, 0.58);
  transform: translateY(10px);
  transition: transform 0.4s var(--ease);
}

.simple-gallery-overlay svg {
  width: 12px;
  height: 12px;
  flex-shrink: 0;
}

.simple-gallery-card:active {
  transform: scale(0.98);
}

@media (hover: hover) and (pointer: fine) {
  .simple-gallery-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 56px -14px rgba(11, 23, 51, 0.45), 0 10px 20px -8px rgba(11, 23, 51, 0.3);
    border-color: rgba(201, 162, 75, 0.55);
  }

  .simple-gallery-card:hover::before {
    background: rgba(7, 13, 31, 0.75);
    border-color: var(--gold-500);
  }

  .simple-gallery-card:hover img {
    transform: scale(1.07);
    filter: brightness(0.88) contrast(1.08);
  }

  .simple-gallery-card:hover .simple-gallery-overlay {
    opacity: 1;
  }

  .simple-gallery-card:hover .simple-gallery-overlay span {
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .simple-gallery-card,
  .simple-gallery-card img,
  .simple-gallery-card::before,
  .simple-gallery-overlay,
  .simple-gallery-overlay span {
    transition-duration: 1ms;
  }

  .simple-gallery-card:active {
    transform: none;
  }
}

/* Tablet */
@media (max-width: 980px) {
  .simple-gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    max-width: 720px;
  }
}

/* Mobile */
@media (max-width: 560px) {
  .gallery-section .section-head {
    margin-bottom: 36px;
  }

  .simple-gallery-grid {
    grid-template-columns: 1fr;
    gap: 24px;
    max-width: 360px;
  }

  .simple-gallery-card {
    aspect-ratio: 3 / 4;
  }
}

/* =========================================================
   Last Year's Winners banner
   ========================================================= */

.winners-frame {
  margin: 0;
  position: relative;
  overflow: hidden;
  border-radius: 14px;
  border: 1px solid rgba(201, 162, 75, 0.35);
  box-shadow: 0 18px 40px -12px rgba(11, 23, 51, 0.38), 0 4px 12px -4px rgba(11, 23, 51, 0.22);
}

.winners-frame img {
  display: block;
  width: 100%;
  height: auto;
}

.winners-caption {
  font-family: var(--font-display);
  font-size: 15.5px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold-700);
  text-align: center;
  padding: 14px 12px;
  background: var(--white);
  border-top: 1px solid rgba(201, 162, 75, 0.25);
}