:root {
  --mom-gold: #cf9b13;
  /* Premium Midtone Metallic Gold */
  --mom-gold-light: #ffe79a;
  /* Bright highlights from MOM logo */
  --mom-gold-deep: #8c620c;
  /* Shadow gold */
  --mom-gold-dark: #5c3d00;
  /* Deep luxury gold/brown for text contrast */
  --mom-silver: #c0c0c0;
  --mom-black: #090909;
  --mom-charcoal: #151515;
  --mom-gray: #6f6f6f;
  --mom-soft: #faf8f2;
  /* Elegant champagne neutral backdrop */
  --mom-white: #ffffff;
  --mom-line: rgba(9, 9, 9, .08);
  --mom-gold-gradient: linear-gradient(135deg, #ffe79a 0%, #cf9b13 45%, #8c620c 80%, #5c3d00 100%);
  --mom-gold-soft-gradient: linear-gradient(135deg, rgba(255, 231, 154, 0.22) 0%, rgba(207, 155, 19, 0.12) 100%);
  --shadow: 0 24px 70px rgba(0, 0, 0, .14);
  --radius-xl: 32px;
  --radius-lg: 22px;
  --radius-md: 16px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--mom-black);
  background: var(--mom-white);
  font-family: 'Outfit', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

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

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

.site-shell {
  overflow: hidden;
}

.main-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(18px, 4vw, 64px);
  background: rgba(255, 255, 255, .92);
  border-bottom: 1px solid var(--mom-line);
  backdrop-filter: blur(18px);
}

.brand,
.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand img {
  width: auto;
  height: 64px;
  object-fit: contain;
  border-radius: 6px;
}

.brand strong,
.footer-brand span {
  display: block;
  font-family: 'Cinzel', serif;
  font-size: 26px;
  line-height: .9;
  letter-spacing: .05em;
}

.brand small {
  color: var(--mom-gray);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-menu a {
  padding: 11px 14px;
  border-radius: 999px;
  color: #2b2b2b;
  font-size: 14px;
  font-weight: 800;
  transition: .25s ease;
}

.nav-menu a:hover,
.nav-menu a.active {
  background: rgba(207, 155, 19, .15);
  color: var(--mom-black);
}

.nav-menu .nav-cta {
  background: var(--mom-black);
  color: var(--mom-white);
  box-shadow: 0 12px 28px rgba(0, 0, 0, .18);
}

.nav-menu .nav-cta:hover {
  background: var(--mom-gold-gradient);
  color: var(--mom-white);
  transform: translateY(-2px);
  border-color: transparent;
}

.nav-toggle {
  display: none;
  border: 0;
  background: var(--mom-black);
  width: 46px;
  height: 46px;
  border-radius: 14px;
  padding: 12px;
}

.nav-toggle span {
  display: block;
  height: 2px;
  background: var(--mom-gold);
  margin: 5px 0;
  border-radius: 999px;
}

.hero {
  position: relative;
  min-height: 88vh;
  display: grid;
  align-items: center;
  padding: 88px clamp(20px, 5vw, 80px);
  background:
    radial-gradient(circle at 80% 20%, rgba(207, 155, 19, .25), transparent 45%),
    radial-gradient(circle at 15% 80%, rgba(207, 155, 19, .15), transparent 40%),
    var(--mom-black);
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255, 255, 255, .03) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, .03) 1px, transparent 1px);
  background-size: 46px 46px;
  mask-image: linear-gradient(to bottom, black, transparent 82%);
}

.hero-content {
  position: relative;
  max-width: clamp(420px, 50vw, 680px);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(207, 155, 19, .15);
  border: 1px solid rgba(207, 155, 19, .45);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: 12px;
}

.eyebrow::before {
  content: '';
  width: 9px;
  height: 9px;
  background: var(--mom-gold);
  border-radius: 50%;
  box-shadow: 0 0 0 6px rgba(207, 155, 19, .22);
}

h1,
.display-title {
  margin: 22px 0 18px;
  font-family: 'Cinzel', serif;
  font-size: clamp(34px, 4.8vw, 58px);
  line-height: 1.12;
  letter-spacing: .03em;
}

.gold-text {
  background: var(--mom-gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.hero h1 {
  color: var(--mom-white);
}

.hero p {
  max-width: 660px;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(15px, 1.4vw, 17px);
  line-height: 1.75;
  font-weight: 500;
}

.hero .eyebrow {
  background: rgba(207, 155, 19, .12);
  border: 1px solid rgba(207, 155, 19, .40);
  color: var(--mom-gold-light);
}

.hero .button-outline {
  background: rgba(255, 255, 255, 0.04);
  color: var(--mom-white) !important;
  border: 2px solid rgba(255, 255, 255, 0.25);
}

.hero .button-outline:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: var(--mom-white);
  color: var(--mom-white) !important;
  box-shadow: 0 8px 24px rgba(255, 255, 255, 0.1);
}

.page-hero p {
  max-width: 660px;
  color: var(--mom-gray);
  font-size: clamp(15px, 1.6vw, 18px);
  line-height: 1.7;
  font-weight: 600;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 34px;
}

.button,
.button-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 28px;
  border-radius: 999px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 13px;
  transition: all .25s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.button {
  background: var(--mom-gold-gradient);
  color: #000000 !important;
  border: 1px solid var(--mom-gold-light);
  box-shadow: 0 12px 28px rgba(207, 155, 19, .28);
}

.button-outline {
  background: transparent;
  color: var(--mom-black) !important;
  border: 2px solid var(--mom-black);
}

.button:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 36px rgba(207, 155, 19, .4);
  background: linear-gradient(135deg, #ffe79a 0%, #cf9b13 100%);
  color: #000000 !important;
}

.button-outline:hover {
  transform: translateY(-3px);
  background: var(--mom-black);
  color: var(--mom-white) !important;
  box-shadow: var(--shadow);
}

.hero-card {
  position: absolute;
  right: clamp(20px, 6vw, 90px);
  bottom: clamp(20px, 6vw, 90px);
  width: min(360px, 88vw);
  padding: 24px;
  border-radius: var(--radius-xl);
  background: rgba(21, 21, 21, 0.75);
  box-shadow: var(--shadow);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(20px);
  color: var(--mom-white);
}

.hero-card img {
  height: 132px;
  object-fit: contain;
  margin: 0 auto 16px;
  border-radius: 1rem;
}

.hero-card strong {
  display: block;
  font-size: 22px;
  color: var(--mom-gold-light);
  margin-bottom: 8px;
}

.hero-card p {
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.65);
}

.section {
  padding: 92px clamp(20px, 5vw, 80px);
}

.section.alt {
  background: var(--mom-soft);
}

.section.dark {
  background: var(--mom-black);
  color: var(--mom-white);
}

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

.section-head h2,
.page-hero h1 {
  margin: 0 0 14px;
  font-family: 'Cinzel', serif;
  font-size: clamp(28px, 3.6vw, 42px);
  line-height: 1.15;
  letter-spacing: .03em;
}

.section-head p {
  color: var(--mom-gray);
  font-size: 16px;
  line-height: 1.65;
  font-weight: 600;
}

/* Allow interactive studio heading and paragraph to be a single line */
.interactive-studio .section-head {
  max-width: 100%;
}
.interactive-studio .section-head p {
  max-width: 100%;
}

.dark .section-head p {
  color: rgba(255, 255, 255, .72);
}

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

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

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

.card {
  position: relative;
  min-height: 240px;
  padding: 28px;
  border-radius: var(--radius-lg);
  background: var(--mom-white);
  border: 1px solid var(--mom-line);
  box-shadow: 0 14px 42px rgba(0, 0, 0, .06);
  transition: .25s ease;
  overflow: hidden;
}

.card::after {
  content: '';
  position: absolute;
  right: -60px;
  top: -60px;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: rgba(207, 155, 19, .12);
}

.card:hover {
  transform: translateY(-7px);
  box-shadow: var(--shadow);
  border-color: rgba(207, 155, 19, .5);
}

.card .icon {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  background: var(--mom-gold-gradient);
  color: var(--mom-white);
  font-size: 26px;
  font-weight: 900;
  margin-bottom: 24px;
}

.card h3 {
  margin: 0 0 12px;
  font-size: 22px;
}

.card p,
.card li {
  color: var(--mom-gray);
  line-height: 1.65;
  font-weight: 600;
}

.card ul {
  padding-left: 18px;
  margin: 12px 0 0;
}

.dark .card {
  background: #141414;
  border-color: rgba(255, 255, 255, .10);
}

.dark .card p,
.dark .card li {
  color: rgba(255, 255, 255, .68);
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 46px;
  align-items: center;
}

.poster-panel {
  min-height: 520px;
  border-radius: var(--radius-xl);
  background:
    linear-gradient(160deg, rgba(207, 155, 19, .88), rgba(207, 155, 19, .2)),
    linear-gradient(45deg, #111, #221600);
  box-shadow: var(--shadow);
  display: grid;
  place-items: center;
  padding: 32px;
}

.poster-panel img {
  width: min(430px, 100%);
  border-radius: 24px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, .24);
  background: white;
}

.feature-list {
  display: grid;
  gap: 14px;
  margin-top: 26px;
}

.feature-list div {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px;
  border-radius: 16px;
  background: rgba(207, 155, 19, .12);
  font-weight: 900;
}

.feature-list span {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--mom-gold-gradient);
  color: var(--mom-white);
  display: grid;
  place-items: center;
}

.page-hero {
  padding: 86px clamp(20px, 5vw, 80px) 68px;
  background: linear-gradient(135deg, #fff 0%, #fbf9f2 65%, rgba(207, 155, 19, .25));
  border-bottom: 1px solid var(--mom-line);
}

.breadcrumb {
  display: inline-flex;
  margin-bottom: 14px;
  color: var(--mom-gray);
  font-weight: 900;
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: .14em;
}

.process {
  counter-reset: item;
  display: grid;
  gap: 18px;
}

.process-item {
  counter-increment: item;
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 18px;
  padding: 24px;
  border-radius: var(--radius-lg);
  background: var(--mom-white);
  border: 1px solid var(--mom-line);
}

.process-item::before {
  content: counter(item, decimal-leading-zero);
  width: 72px;
  height: 72px;
  border-radius: 22px;
  background: var(--mom-black);
  color: var(--mom-gold);
  display: grid;
  place-items: center;
  font-family: 'Cinzel', serif;
  font-size: 28px;
}

.contact-wrap {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 30px;
}

.contact-card,
.contact-form {
  padding: 30px;
  border-radius: var(--radius-xl);
  background: var(--mom-white);
  border: 1px solid var(--mom-line);
  box-shadow: 0 14px 42px rgba(0, 0, 0, .06);
}

.contact-form {
  display: grid;
  gap: 16px;
}

label {
  font-weight: 900;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: .08em;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--mom-line);
  border-radius: 14px;
  padding: 14px 16px;
  font: inherit;
  outline: none;
  background: #fff;
}

textarea {
  min-height: 140px;
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--mom-gold-deep);
  box-shadow: 0 0 0 4px rgba(207, 155, 19, .22);
}

.main-footer {
  background: #070707;
  color: var(--mom-white);
  padding: 64px clamp(20px, 5vw, 80px) 26px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr .8fr .8fr .9fr;
  gap: 30px;
}

.footer-brand img {
  width: 78px;
  height: 56px;
  object-fit: contain;
  border-radius: 10px;
  background: white;
}

.main-footer p {
  color: rgba(255, 255, 255, .66);
  line-height: 1.7;
}

.main-footer h3 {
  background: var(--mom-gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.main-footer a:not(.footer-brand):not(.footer-button) {
  display: block;
  color: rgba(255, 255, 255, .72);
  margin: 10px 0;
  font-weight: 700;
}

.footer-button {
  display: inline-flex;
  padding: 13px 18px;
  border-radius: 999px;
  background: var(--mom-gold-gradient);
  color: var(--mom-white);
  font-weight: 900;
  border: 1px solid var(--mom-gold-deep);
}

.footer-bottom {
  margin-top: 44px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, .12);
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

@media (max-width: 1060px) {
  .hero {
    min-height: auto;
    padding: 60px clamp(20px, 4vw, 40px);
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 40px;
  }

  .hero-content {
    max-width: 100%;
  }

  .hero-card {
    position: relative;
    left: auto;
    right: auto;
    bottom: auto;
    width: 100%;
    max-width: 480px;
    margin: 10px auto 0;
  }

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

  .split,
  .contact-wrap {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 760px) {
  .main-header {
    padding: 14px 18px;
  }

  .brand img {
    width: auto;
    height: 26px;
  }

  .brand strong {
    font-size: 24px;
  }

  .brand small {
    display: none;
  }

  .nav-toggle {
    display: block;
  }

  .nav-menu {
    position: absolute;
    left: 18px;
    right: 18px;
    top: 78px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 18px;
    border-radius: 24px;
    background: var(--mom-white);
    box-shadow: var(--shadow);
    border: 1px solid var(--mom-line);
  }

  .nav-menu.open {
    display: flex;
  }

  .nav-menu a {
    text-align: center;
  }

  .hero {
    padding: 54px 20px;
    background:
      radial-gradient(circle at 50% 10%, rgba(207, 155, 19, .2), transparent 50%),
      var(--mom-black);
  }

  .section {
    padding: 62px 20px;
  }

  .grid-3,
  .grid-2 {
    grid-template-columns: 1fr;
  }

  .process-item {
    grid-template-columns: 1fr;
  }

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

/* Interactive mode upgrade */
body.interactive-on .card,
body.interactive-on .button,
body.interactive-on .button-outline,
body.interactive-on .nav-cta,
body.interactive-on .console-tab {
  transform-style: preserve-3d;
}

.particle-layer {
  position: fixed;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
  opacity: 0;
  transition: opacity .3s ease;
}

body.interactive-on .particle-layer {
  opacity: 1;
}

.film-particle {
  position: absolute;
  width: 16px;
  height: 16px;
  background: var(--mom-gold);
  clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
  filter: drop-shadow(0 0 6px rgba(207, 155, 19, 0.7));
  animation: floatParticle linear infinite;
}

@keyframes floatParticle {
  from {
    transform: translateY(110vh) rotate(0deg);
  }

  to {
    transform: translateY(-15vh) rotate(360deg);
  }
}

.interactive-studio {
  background: linear-gradient(180deg, #fff, #fffbf2);
}

.studio-console {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 24px;
  align-items: stretch;
}

.console-tabs {
  display: grid;
  gap: 12px;
}

.console-tab {
  border: 1px solid var(--mom-line);
  background: #fff;
  border-radius: 18px;
  padding: 18px;
  text-align: left;
  font-weight: 950;
  cursor: pointer;
  transition: .25s ease;
}

.console-tab:hover,
.console-tab.active {
  background: var(--mom-black);
  color: var(--mom-gold-light);
  border-color: var(--mom-gold);
  transform: translateX(8px);
  box-shadow: var(--shadow);
}

.console-screen {
  position: relative;
  overflow: hidden;
  min-height: 410px;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 24px;
  align-items: center;
  padding: clamp(24px, 4vw, 46px);
  border-radius: var(--radius-xl);
  color: #fff;
  background: radial-gradient(circle at 80% 20%, rgba(207, 155, 19, .30), transparent 30%), linear-gradient(135deg, #111, #050505);
  box-shadow: var(--shadow);
}

.console-screen::before {
  content: '';
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(207, 155, 19, .25);
  border-radius: 24px;
  pointer-events: none;
}

.console-kicker {
  color: var(--mom-gold);
  text-transform: uppercase;
  letter-spacing: .16em;
  font-size: 12px;
  font-weight: 950;
}

.console-screen h3 {
  margin: 14px 0;
  font-family: 'Cinzel', serif;
  font-size: clamp(24px, 2.6vw, 30px);
  line-height: 1.15;
  letter-spacing: .03em;
}

.console-screen p {
  color: rgba(255, 255, 255, .76);
  font-size: 15px;
  line-height: 1.65;
  font-weight: 650;
}

.console-screen ul {
  display: grid;
  gap: 16px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.console-screen li {
  position: relative;
  padding: 18px 18px 18px 50px;
  border-radius: 18px;
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .12);
  font-weight: 800;
}

.console-screen li::before {
  content: '✦';
  position: absolute;
  left: 18px;
  color: var(--mom-gold);
}

.stat-card {
  min-height: 190px;
  display: grid;
  place-items: center;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: var(--radius-xl);
  background: linear-gradient(180deg, rgba(255, 255, 255, .08), rgba(255, 255, 255, .03));
}

.stat-card strong {
  display: inline-block;
  background: var(--mom-gold-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-family: 'Cinzel', serif;
  font-size: clamp(52px, 7vw, 92px);
  line-height: 1;
  padding: 8px 0;
}

.stat-card span {
  color: rgba(255, 255, 255, .72);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .1em;
  font-size: 12px;
}

.filter-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 28px;
}

.filter-btn {
  border: 1px solid var(--mom-line);
  background: #fff;
  border-radius: 999px;
  padding: 13px 18px;
  font-weight: 950;
  cursor: pointer;
  transition: .22s ease;
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--mom-gold-gradient);
  border-color: var(--mom-gold);
  color: var(--mom-white);
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(207, 155, 19, .24);
}

.filter-card.is-hidden {
  display: none;
}

@media (max-width: 900px) {

  .studio-console,
  .console-screen {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {

  body.interactive-on,
  body.interactive-on * {
    cursor: auto !important;
  }

  .cursor-ring {
    display: none;
  }

  .console-tab:hover,
  .console-tab.active {
    transform: translateY(-2px);
  }
}

/* Home Page featured showcase gallery section */
.home-gallery-section {
  position: relative;
  overflow: hidden;
}

.home-gallery-grid {
  margin-bottom: 32px;
}

.gallery-preview-card {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 0.4s ease;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.preview-img-wrapper {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
}

.preview-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.preview-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.3) 60%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
  color: #fff;
  transition: background 0.4s ease;
}

.preview-overlay h3 {
  font-family: 'Cinzel', serif;
  font-size: 24px;
  letter-spacing: 0.03em;
  margin: 0 0 8px;
  color: var(--mom-gold-light);
}

.preview-overlay span {
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.7);
  transition: color 0.3s ease, transform 0.3s ease;
}

.gallery-preview-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(207, 155, 19, 0.2);
  border-color: rgba(207, 155, 19, 0.35);
}

.gallery-preview-card:hover .preview-img-wrapper img {
  transform: scale(1.08);
}

.gallery-preview-card:hover .preview-overlay {
  background: linear-gradient(0deg, rgba(207, 155, 19, 0.9) 0%, rgba(0, 0, 0, 0.4) 60%, transparent 100%);
}

.gallery-preview-card:hover .preview-overlay span {
  color: #fff;
  transform: translateX(4px);
}

/* Gallery Grid */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(310px, 1fr));
  gap: 24px;
}

.gallery-card {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--mom-line);
  background: #fff;
  aspect-ratio: 4/3;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.03);
}

.gallery-card.is-hidden {
  display: none;
}

.gallery-image-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.gallery-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.2) 65%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
  color: #fff;
  opacity: 1;
  transition: all 0.4s ease;
}

.gallery-overlay h3 {
  font-family: 'Cinzel', serif;
  font-size: 22px;
  letter-spacing: 0.03em;
  margin: 0 0 6px;
  color: var(--mom-gold-light);
  transform: translateY(0);
  transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.gallery-overlay p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.72);
  margin: 0;
  transform: translateY(0);
  transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1) 0.05s;
}

.gallery-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 32px rgba(207, 155, 19, 0.15);
  border-color: var(--mom-gold);
}

.gallery-card:hover img {
  transform: scale(1.08);
}

.gallery-card:hover .gallery-overlay {
  background: linear-gradient(0deg, rgba(207, 155, 19, 0.95) 0%, rgba(0, 0, 0, 0.3) 70%, transparent 100%);
}

.gallery-card:hover .gallery-overlay h3 {
  color: #fff;
}

/* Lightbox styles */
.gallery-lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.94);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  padding: 24px;
}

.gallery-lightbox.active {
  opacity: 1;
  pointer-events: auto;
}

.lightbox-close {
  position: absolute;
  top: 24px;
  right: 28px;
  font-size: 48px;
  color: rgba(255, 255, 255, 0.7);
  cursor: pointer;
  transition: color 0.2s ease, transform 0.2s ease;
  z-index: 10002;
}

.lightbox-close:hover {
  color: var(--mom-gold-light);
  transform: scale(1.1);
}

.lightbox-content-wrapper {
  position: relative;
  max-width: 95vw;
  max-height: 92vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  animation: zoomIn 0.35s cubic-bezier(0.165, 0.84, 0.44, 1);
}

@keyframes zoomIn {
  from {
    transform: scale(0.92);
    opacity: 0;
  }

  to {
    transform: scale(1);
    opacity: 1;
  }
}

.lightbox-content-wrapper img {
  max-width: 100%;
  max-height: 83vh;
  object-fit: contain;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.7);
}

.lightbox-caption {
  font-family: 'Cinzel', serif;
  font-size: clamp(22px, 3.5vw, 32px);
  color: var(--mom-gold-light);
  margin-top: 18px;
  text-align: center;
  letter-spacing: 0.04em;
}

/* Admin Status Banners */
.admin-status-wrapper {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.admin-badge {
  font-family: 'Cinzel', serif;
  font-size: 15px;
  letter-spacing: 0.05em;
  background: var(--mom-gold-soft-gradient);
  color: var(--mom-gold);
  border: 1px solid rgba(207, 155, 19, 0.3);
  padding: 6px 16px;
  border-radius: 50px;
  box-shadow: 0 4px 15px rgba(207, 155, 19, 0.1);
  display: inline-block;
}

.admin-logout-btn {
  border-color: #ff3333 !important;
  color: #ff3333 !important;
  background: transparent;
  transition: all 0.25s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.admin-logout-btn:hover {
  background: #ff3333 !important;
  color: #ffffff !important;
  border-color: #ff3333 !important;
  box-shadow: 0 10px 25px rgba(255, 51, 51, 0.25);
  transform: translateY(-2px);
}

/* Status Notifications Toast */
.status-message-section {
  display: flex;
  justify-content: center;
  margin-top: -30px;
  margin-bottom: 20px;
  position: relative;
  z-index: 99;
}

.status-toast {
  background: #111;
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 14px 28px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 750;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.status-toast.success {
  border-color: rgba(207, 155, 19, 0.4);
  color: var(--mom-gold-light);
}

.status-toast.error {
  border-color: rgba(255, 51, 51, 0.4);
  color: #ffcccc;
}

/* Experiences Upload Section Styles */
.upload-section {
  background: var(--mom-soft);
  border-bottom: 1px solid var(--mom-line);
}

.upload-container {
  max-width: 960px;
  margin: 0 auto;
  background: #fff;
  border-radius: var(--radius-xl);
  padding: clamp(24px, 5vw, 48px);
  border: 1px solid var(--mom-line);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.04);
}

.upload-container h2 {
  font-family: 'Cinzel', serif;
  font-size: clamp(28px, 4.5vw, 38px);
  margin: 0 0 10px;
  background: var(--mom-gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.upload-container>p {
  color: var(--mom-gray);
  font-size: 16px;
  margin-bottom: 32px;
}

.gallery-upload-form .form-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 32px;
  align-items: stretch;
}

@media (max-width: 768px) {
  .gallery-upload-form .form-grid {
    grid-template-columns: 1fr;
  }
}

.file-input-wrapper {
  position: relative;
  min-height: 220px;
  display: flex;
  align-items: stretch;
  justify-content: stretch;
}

.file-label {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 2px dashed rgba(207, 155, 19, 0.4);
  border-radius: var(--radius-lg);
  padding: 24px;
  cursor: pointer;
  background: rgba(207, 155, 19, 0.02);
  transition: all 0.3s ease;
}

.file-label.hidden {
  display: none !important;
}

.file-label:hover,
.file-label.dragover {
  background: rgba(207, 155, 19, 0.06);
  border-color: var(--mom-gold);
}

.upload-icon {
  font-size: 44px;
  margin-bottom: 12px;
}

.file-text {
  font-size: 14px;
  font-weight: 750;
  color: var(--mom-gold-dark);
  text-align: center;
}

.file-preview-container {
  position: relative;
  flex: 1;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--mom-line);
}

.file-preview-container.hidden {
  display: none !important;
}

.file-preview-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.remove-preview {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.7);
  color: #fff;
  border: none;
  font-size: 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease;
}

.remove-preview:hover {
  background: #ff3333;
}

.input-details {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-size: 13px;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--mom-gold-dark);
}

.form-group input[type="text"],
.form-group input[type="password"],
.form-group select {
  padding: 14px 18px;
  border-radius: var(--radius-md);
  border: 1px solid var(--mom-line);
  background: #fff;
  font-size: 15px;
  font-weight: 700;
  color: var(--mom-black);
  outline: none;
  transition: border-color 0.25s ease;
}

.form-group input[type="text"]:focus,
.form-group input[type="password"]:focus,
.form-group select:focus {
  border-color: var(--mom-gold);
  box-shadow: 0 0 0 3px rgba(207, 155, 19, 0.12);
}

/* Floating delete image button overlay */
.delete-btn {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255, 51, 51, 0.9);
  color: #fff;
  font-size: 22px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  transition: background 0.2s ease, transform 0.2s ease;
  line-height: 1;
  padding-bottom: 2px;
}

.delete-btn:hover {
  background: #ff0000;
  transform: scale(1.15);
}

/* Admin Login Portal Screen Layout */
.login-page-main {
  background: var(--mom-soft);
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.login-wrapper {
  max-width: 480px;
  width: 90vw;
  margin: 0 auto;
}

.login-card {
  background: #fff;
  border-radius: var(--radius-xl);
  padding: clamp(32px, 6vw, 48px);
  border: 1px solid var(--mom-line);
  box-shadow: var(--shadow);
}

.login-header {
  text-align: center;
  margin-bottom: 32px;
}

.login-header .gold-icon {
  font-size: 38px;
  color: var(--mom-gold);
  display: block;
  margin-bottom: 12px;
  animation: pulseGold 2s infinite ease-in-out;
}

.login-header h2 {
  font-family: 'Cinzel', serif;
  font-size: clamp(30px, 5.5vw, 38px);
  margin: 0 0 10px;
  background: var(--mom-gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.login-header p {
  color: var(--mom-gray);
  font-size: 14px;
  line-height: 1.6;
  margin: 0;
}

.login-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.login-error {
  background: rgba(255, 51, 51, 0.08);
  border: 1px solid rgba(255, 51, 51, 0.25);
  color: #ff3333;
  padding: 12px 18px;
  border-radius: var(--radius-md);
  font-size: 13px;
  font-weight: 800;
  display: flex;
  align-items: center;
  gap: 8px;
}

.login-footer {
  text-align: center;
  margin-top: 28px;
  border-top: 1px solid var(--mom-line);
  padding-top: 20px;
}

.back-link {
  font-size: 13px;
  font-weight: 800;
  color: var(--mom-gold-dark);
  text-decoration: none;
  transition: color 0.2s ease;
}

.back-link:hover {
  color: var(--mom-gold);
}

@keyframes pulseGold {

  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }

  50% {
    transform: scale(1.15);
    opacity: 0.8;
  }
}