@import url('https://fonts.googleapis.com/css2?family=Bodoni+Moda:ital,opsz,wght@0,6..96,400..900;1,6..96,400..900&family=Outfit:wght@300;400;500;600;700&display=swap');

:root {
  --bg-gray: #3a3a3a;
  --bg-darker-gray: #242424;
  --bg-cream: #f7f4ec;
  --bg-black: #121212;

  --accent-gold: #f2a900;
  --accent-orange: #ff7b00;

  --text-dark: #121212;
  --text-light: #f7f4ec;
  --text-gray: #6b6b6b;

  --font-sans: 'Outfit', sans-serif;
  --font-serif: 'Bodoni Moda', serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-sans);
  background-color: var(--bg-gray);
  color: var(--text-light);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6,
.bodoni-font {
  font-family: var(--font-serif);
  font-weight: 500;
  letter-spacing: 0.5px;
}

.text-gold {
  color: var(--accent-gold);
}

.text-orange {
  color: var(--accent-orange);
}

.text-italic {
  font-style: italic;
}

.text-cream {
  color: var(--bg-cream);
}

/* Section Themes */
.section-gray {
  background-color: var(--bg-gray);
  color: var(--text-light);
}

.section-dark-gray {
  background-color: var(--bg-darker-gray);
  color: var(--text-light);
}

.section-cream {
  background-color: var(--bg-cream);
  color: var(--text-dark);
}

.section-black {
  background-color: var(--bg-black);
  color: var(--text-light);
}


.section {
  padding: 6rem 0;
  position: relative;
}

/* Arched and Geometric Classes */
.arch-img {
  border-radius: 400px 400px 0 0;
  object-fit: cover;
  width: 100%;
}

.pill-img {
  border-radius: 500px;
  object-fit: cover;
}

/* Buttons */
.btn-editorial {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  text-decoration: none;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.btn-yellow {
  background-color: var(--accent-gold);
  color: var(--bg-black);
}

.btn-yellow:hover {
  background-color: var(--accent-orange);
  color: #fff;
}

.btn-outline-cream {
  border: 1px solid var(--bg-cream);
  color: var(--bg-cream);
  background: transparent;
  border-radius: 50px;
  text-decoration: none;
}

.btn-outline-cream:hover {
  background: var(--bg-cream);
  color: var(--bg-black);
}

/* Animations */
.animate-fade {
  animation: fadeIn 1.5s ease;
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes ticker {
  0% {
    transform: translate3d(0, 0, 0);
  }

  100% {
    transform: translate3d(-50%, 0, 0);
  }
}

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

/* Hide scrollbar */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--bg-darker-gray);
}

::-webkit-scrollbar-thumb {
  background: var(--accent-gold);
}

/* ----------------------------------------------------
   Navbar Component
   ---------------------------------------------------- */
.editorial-navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 2rem 5%;
  background-color: var(--bg-gray);
  color: var(--text-light);
  position: relative;
  z-index: 100;
}

/* Vogue-Inspired Typographic Logo (Bodoni Moda) */
.vogue-logo {
  font-family: var(--font-serif);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 3.5px;
  color: var(--text-light);
  line-height: 1;
  display: inline-block;
  transition: all 0.4s ease;
}

.brand-logo-text.vogue-logo {
  font-size: 1.45rem;
}

.brand-link:hover .vogue-logo {
  color: var(--accent-gold);
  letter-spacing: 4.5px;
}

.footer-vogue-logo {
  font-size: 1.6rem;
  letter-spacing: 4px;
  color: var(--text-light);
}

.footer-vogue-logo:hover {
  color: var(--accent-gold);
}

.brand-logo-img:hover {
  opacity: 0.85;
}

.nav-links {
  display: flex;
  gap: 3rem;
}

.nav-links a {
  text-decoration: none;
  color: var(--text-light);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  transition: color 0.3s ease;
}

.nav-links a:hover {
  color: var(--accent-gold);
}

.nav-menu-btn {
  display: none;
  flex-direction: column;
  gap: 8px;
  cursor: pointer;
  z-index: 110;
}

.hamburger {
  width: 30px;
  height: 2px;
  background-color: var(--text-light);
  transition: all 0.3s ease;
}

/* Hamburger active transformation */
.nav-menu-btn.active .hamburger:nth-child(1) {
  transform: translateY(5px) rotate(45deg);
}

.nav-menu-btn.active .hamburger:nth-child(2) {
  transform: translateY(-5px) rotate(-45deg);
}

@media (max-width: 768px) {
  .nav-menu-btn {
    display: flex;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: var(--bg-gray);
    padding: 2rem 5%;
    gap: 1.5rem;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
  }

  .nav-links.active {
    display: flex;
  }
}

/* ----------------------------------------------------
   Hero Component
   ---------------------------------------------------- */
.editorial-hero {
  padding: 2rem 5% 5rem 5%;
  max-width: 1400px;
  margin: 0 auto;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr 1fr;
  gap: 2rem;
  align-items: flex-start;
}

.hero-title {
  font-size: 5.5rem;
  line-height: 1.1;
  margin-bottom: 2rem;
}

.hero-subtitle {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 2px;
  color: var(--accent-gold);
}

.hero-subtitle .line {
  width: 50px;
  height: 2px;
  background-color: var(--accent-gold);
}

.hero-bottom-text {
  margin-top: auto;
  padding-top: 15rem;
  color: var(--accent-gold);
  font-family: var(--font-serif);
  font-size: 1.8rem;
  line-height: 1.4;
}

.arch-container {
  position: relative;
  width: 100%;
  max-width: 480px;
  margin: 0 auto;
}

.arch-img {
  height: 650px;
}

.rotating-badge-container {
  position: absolute;
  bottom: -50px;
  right: -50px;
  width: 160px;
  height: 160px;
  background-color: var(--accent-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.rotating-badge {
  width: 100%;
  height: 100%;
  animation: rotate 15s linear infinite;
}

.badge-text {
  font-size: 12.5px;
  font-family: var(--font-sans);
  font-weight: 600;
  fill: var(--bg-black);
  letter-spacing: 2px;
}

.badge-center-icon {
  position: absolute;
  color: var(--bg-black);
  font-size: 1.5rem;
}

.hero-right {
  display: flex;
  flex-direction: column;
  gap: 4rem;
}

.quote-block {
  position: relative;
}

.quote-mark {
  color: var(--accent-orange);
  font-size: 5rem;
  line-height: 0;
  font-family: var(--font-serif);
  position: absolute;
  top: 1rem;
  left: -1rem;
}

.quote-block p {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  line-height: 1.2;
  margin-left: 2rem;
  position: relative;
  z-index: 2;
}

.contact-block {
  background-color: var(--accent-orange);
  padding: 3rem 2rem;
  color: var(--text-light);
  margin-right: -5%;
}

.contact-block h3 {
  font-family: var(--font-serif);
  font-size: 1.8rem;
}

.small-feature {
  display: flex;
  gap: 1.5rem;
  align-items: center;
}

.small-feature img {
  width: 90px;
  height: 90px;
  object-fit: cover;
}

.feature-text p {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 1px;
  margin-bottom: 0.5rem;
}

.feature-text a {
  color: var(--accent-gold);
  text-decoration: none;
  font-size: 0.85rem;
  letter-spacing: 1px;
  font-weight: 600;
}

@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 4rem;
  }

  .hero-bottom-text {
    padding-top: 3rem;
  }

  .rotating-badge-container {
    bottom: -20px;
    right: 20px;
  }

  .contact-block {
    margin-right: 0;
  }
}

/* ----------------------------------------------------
   Ticker Component
   ---------------------------------------------------- */
.ticker-wrap {
  width: 100%;
  overflow: hidden;
  background-color: var(--bg-cream);
  padding: 1.2rem 0;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  white-space: nowrap;
  display: flex;
}

.ticker-wrap.dark {
  background-color: var(--bg-darker-gray);
  border-color: rgba(255, 255, 255, 0.05);
}

.ticker {
  display: inline-block;
  animation: ticker 30s linear infinite;
  font-family: var(--font-serif);
  font-size: 1.5rem;
  color: var(--text-dark);
  white-space: nowrap;
}

.ticker-item {
  display: inline-block;
  padding: 0 3rem;
}

.ticker-wrap.dark .ticker {
  color: var(--text-light);
}

.ticker-separator {
  color: var(--accent-orange);
  font-size: 1.2rem;
  vertical-align: middle;
}

/* ----------------------------------------------------
   Services Component
   ---------------------------------------------------- */
.editorial-services {
  padding: 8rem 0;
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.orange-tag {
  color: var(--accent-orange);
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 2px;
  margin-bottom: 2rem;
}

.services-title {
  font-size: 3.5rem;
  line-height: 1.1;
  margin-bottom: 2rem;
}

.services-desc {
  font-size: 1.1rem;
  color: var(--text-dark);
  max-width: 80%;
  margin-bottom: 3rem;
}

.services-bottom {
  display: flex;
  align-items: center;
  gap: 3rem;
}

.services-date {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 1px;
}

.services-right {
  position: relative;
}

.drag-badge {
  position: absolute;
  top: 30%;
  left: -40px;
  background-color: #fff;
  color: #000;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 0.7rem;
  font-weight: 700;
  z-index: 2;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

@media (max-width: 900px) {
  .services-grid {
    grid-template-columns: 1fr;
  }

  .services-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
  }
}

/* ----------------------------------------------------
   Gallery Component
   ---------------------------------------------------- */
.editorial-gallery {
  padding: 6rem 0 10rem 0;
  position: relative;
  overflow: hidden;
}

.gallery-layout {
  position: relative;
}

.gallery-header {
  text-align: center;
  position: relative;
  z-index: 10;
  padding-top: 4rem;
}

.section-number {
  font-family: var(--font-serif);
  font-size: 3rem;
  font-style: italic;
  color: var(--text-light);
  margin-bottom: 0.5rem;
}

.gallery-title {
  font-size: 4rem;
  line-height: 1.1;
  margin-bottom: 3rem;
}

.explore-btn {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 130px;
  height: 130px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  font-size: 0.7rem;
  letter-spacing: 2px;
  font-weight: 600;
  text-align: center;
  margin: 0 auto;
  cursor: pointer;
  transition: background 0.3s ease;
}

.explore-btn:hover {
  background: var(--text-light);
  color: var(--bg-gray);
}

.scattered-images {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.scattered-images img {
  position: absolute;
  object-fit: cover;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.img-1 {
  top: 0;
  left: 10%;
  width: 250px;
  height: 350px;
}

.img-2 {
  top: -40px;
  right: 25%;
  width: 180px;
  height: 220px;
}

.img-3 {
  bottom: -80px;
  left: 20%;
  width: 300px;
  height: 200px;
}

.img-4 {
  bottom: -20px;
  right: 10%;
  width: 220px;
  height: 320px;
}

.orange-square {
  position: absolute;
  background-color: var(--accent-orange);
}

.sq-1 {
  top: 50%;
  right: 15%;
  width: 40px;
  height: 40px;
}

.sq-2 {
  bottom: 20%;
  left: 45%;
  width: 60px;
  height: 60px;
}

@media (max-width: 1024px) {
  .scattered-images {
    position: relative;
    height: 600px;
    margin-top: 3rem;
  }

  .img-1 {
    top: 0;
    left: 0;
    width: 45%;
    height: 250px;
  }

  .img-4 {
    bottom: 0;
    right: 0;
    width: 45%;
    height: 250px;
  }

  .img-2 {
    display: none;
  }

  .img-3 {
    top: 50%;
    left: 20%;
    width: 60%;
    height: 200px;
    z-index: 5;
  }
}

/* ----------------------------------------------------
   Client Portal & CTA Component
   ---------------------------------------------------- */
.editorial-portal {
  padding: 8rem 0;
}

.portal-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr 1fr;
  gap: 2rem;
  align-items: center;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  padding-bottom: 4rem;
}

.portal-item img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  margin-bottom: 1rem;
}

.portal-center {
  padding: 0 2rem;
}

.portal-center img {
  height: 550px;
}

.portal-label {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 1.5rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  padding-bottom: 0.5rem;
}

.portal-link {
  color: var(--text-dark);
  text-decoration: none;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 1px;
}

.portal-bottom-center {
  text-align: center;
  max-width: 600px;
  margin: 6rem auto 0 auto;
}

.portal-title {
  font-size: 3.5rem;
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

.portal-desc {
  margin-bottom: 2rem;
}

.portal-form {
  display: flex;
  gap: 1rem;
  justify-content: center;
}

.portal-form input {
  padding: 1rem 1.5rem;
  border: 1px solid #ddd;
  background: transparent;
  outline: none;
  font-family: var(--font-sans);
  width: 250px;
  color: var(--text-dark);
}

.bottom-cta {
  padding: 8rem 0;
}

.cta-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr 1fr;
  align-items: center;
  gap: 2rem;
}

.cta-left {
  position: relative;
}

.cta-left .quote-mark {
  color: var(--accent-orange);
  font-size: 4rem;
  position: absolute;
  top: -1rem;
  left: -2rem;
  font-family: var(--font-serif);
}

.cta-title {
  font-size: 3rem;
  line-height: 1.1;
  position: relative;
  z-index: 2;
}

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

.circle-img-container {
  position: relative;
}

.circle-img-container img {
  width: 350px;
  height: 350px;
  object-fit: cover;
  border-radius: 50%;
}

.cta-badge {
  bottom: 0;
  right: -20px;
}

.cta-right-title {
  font-size: 2rem;
  line-height: 1.2;
}

@media (max-width: 1024px) {

  .portal-grid,
  .cta-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .portal-center img {
    height: auto;
  }

  .portal-form {
    flex-direction: column;
    align-items: center;
  }

  .cta-left .quote-mark {
    display: none;
  }
}

/* ----------------------------------------------------
   Footer Component
   ---------------------------------------------------- */
.editorial-footer {
  padding: 6rem 0 2rem 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1.5fr;
  gap: 4rem;
  padding-bottom: 4rem;
  margin-bottom: 2rem;
  max-width: 1400px;
  margin: auto;
}

.pill-links {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.pill-links a {
  display: inline-block;
  padding: 0.5rem 1.5rem;
  border-radius: 30px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--text-light);
  text-decoration: none;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 1px;
  transition: all 0.3s ease;
}

.pill-links a:hover {
  border-color: var(--accent-gold);
  color: var(--accent-gold);
}

.newsletter-form {
  display: flex;
  gap: 1rem;
}

.newsletter-form input {
  flex: 1;
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  padding: 0.5rem 0;
  outline: none;
  font-family: var(--font-sans);
}

.btn-pill {
  background: var(--text-light);
  color: var(--bg-black);
  border: none;
  padding: 0.8rem 1.5rem;
  border-radius: 30px;
  font-weight: 700;
  font-size: 0.8rem;
  cursor: pointer;
  transition: background 0.3s ease;
}

.btn-pill:hover {
  background: var(--accent-gold);
}

.footer-bottom-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 1px;
  max-width: 1400px;
  margin: auto;
}

.footer-logo {
  display: flex;
  align-items: center;
}

.footer-logo-img {
  height: 35px;
  width: auto;
  object-fit: contain;
  display: block;
}

.copyright {
  color: var(--text-gray);
}

.social-pills {
  display: flex;
  gap: 1.5rem;
}

.social-pills a {
  color: var(--text-light);
  text-decoration: none;
}

.social-pills a:hover {
  color: var(--accent-gold);
}

@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .footer-bottom-bar {
    flex-direction: column;
    gap: 1.5rem;
    text-align: center;
  }
}

/* ----------------------------------------------------
   Client Delivery Portal & Gallery Styles
   ---------------------------------------------------- */
.delivery-page {
  padding: 4rem 0 6rem 0;
  min-height: 85vh;
}

.delivery-hero {
  text-align: center;
  margin-bottom: 3.5rem;
  padding: 3rem 2rem;
  position: relative;
  margin: auto;
  overflow: hidden;
  max-width: 1400px;
}

.delivery-title {
  font-family: var(--font-serif);
  font-size: 2.8rem;
  font-weight: 500;
  color: var(--bg-cream);
  margin-bottom: 0.75rem;
  letter-spacing: 0.5px;
}

.delivery-subtitle {
  font-size: 1.1rem;
  color: var(--accent-gold);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 1.5rem;
}

.delivery-meta-bar {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
  font-size: 0.85rem;
  color: rgba(247, 244, 236, 0.75);
}

.meta-item {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.badge-code {
  background: rgba(242, 169, 0, 0.15);
  color: var(--accent-gold);
  border: 1px solid var(--accent-gold);
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  font-weight: 600;
  letter-spacing: 1px;
}

/* Video Section */
.delivery-section-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 1.5rem;
  width: 100%;
  margin: auto;
  max-width: 1400px;
}

.video-delivery-card {
  background: var(--bg-darker-gray);
  text-align: center;
  overflow: hidden;
  padding: 5.5rem 1.5rem;
  margin-bottom: 4rem;

}

.video-wrapper {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  /* 16:9 Aspect Ratio */
  background: #000;
  max-width: 1400px;
  margin: auto;
}

.video-wrapper iframe,
.video-wrapper video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
  object-fit: cover;
  max-width: 1400px;
  margin: auto;
}

.video-info-bar {
  padding: 1.5rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #1e1e1e;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  max-width: 1400px;
  margin: auto;
}

/* Photo Gallery Grid */
.photo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 1.5rem;
  margin-bottom: 4rem;
}

.photo-card {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: var(--bg-darker-gray);
  cursor: pointer;
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.photo-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.5);
}

.photo-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.photo-card:hover img {
  transform: scale(1.06);
}

.photo-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0) 60%);
  opacity: 0;
  transition: opacity 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.5rem;
}

.photo-card:hover .photo-card-overlay {
  opacity: 1;
}

.photo-card-caption {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  color: var(--text-light);
  margin-bottom: 0.25rem;
}

.photo-card-tag {
  font-size: 0.75rem;
  color: var(--accent-gold);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Lightbox Modal */
.lightbox-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(10px);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.lightbox-modal.active {
  display: flex;
}

.lightbox-img-container {
  max-width: 90vw;
  max-height: 85vh;
  position: relative;
  text-align: center;
}

.lightbox-img-container img {
  max-width: 100%;
  max-height: 80vh;
  border-radius: 8px;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.8);
  object-fit: contain;
}

.lightbox-close {
  position: absolute;
  top: 1.5rem;
  right: 2rem;
  color: #fff;
  font-size: 2.5rem;
  cursor: pointer;
  transition: color 0.3s ease, transform 0.3s ease;
  line-height: 1;
  z-index: 10001;
}

.lightbox-close:hover {
  color: var(--accent-gold);
  transform: scale(1.15) rotate(90deg);
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  font-size: 1.8rem;
  width: 55px;
  height: 55px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 10000;
}

.lightbox-nav:hover {
  background: var(--accent-gold);
  color: var(--bg-black);
  transform: translateY(-50%) scale(1.1);
  border-color: var(--accent-gold);
}

.lightbox-prev {
  left: 2rem;
}

.lightbox-next {
  right: 2rem;
}

.lightbox-img-container img {
  max-width: 100%;
  max-height: 75vh;
  border-radius: 12px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.9);
  object-fit: contain;
  animation: zoomIn 0.35s cubic-bezier(0.165, 0.84, 0.44, 1);
}

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

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

.lightbox-caption {
  margin-top: 1rem;
  font-family: var(--font-serif);
  font-size: 1.2rem;
  color: var(--bg-cream);
  letter-spacing: 0.5px;
}

/* Access Gate Form */
.access-gate-card {
  max-width: 550px;
  margin: 3rem auto;
  background: var(--bg-darker-gray);
  padding: 3rem 2.5rem;
  border-radius: 20px;
  border: 1px solid rgba(247, 244, 236, 0.1);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
  text-align: center;
}

.access-gate-title {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  margin-bottom: 0.75rem;
}

.access-input-group {
  margin: 2rem 0;
  display: flex;
  gap: 0.75rem;
}

.access-input-group input {
  flex: 1;
  padding: 1rem 1.25rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(247, 244, 236, 0.2);
  border-radius: 8px;
  color: #fff;
  font-size: 1rem;
  letter-spacing: 1px;
  outline: none;
}

.access-input-group input:focus {
  border-color: var(--accent-gold);
  background: rgba(255, 255, 255, 0.08);
}

.demo-chips {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.85rem;
}

.demo-chip {
  display: inline-block;
  background: rgba(242, 169, 0, 0.12);
  color: var(--accent-gold);
  border: 1px solid rgba(242, 169, 0, 0.4);
  padding: 0.35rem 0.85rem;
  border-radius: 20px;
  margin: 0.4rem 0.2rem;
  cursor: pointer;
  font-weight: 500;
  transition: all 0.2s ease;
}

.demo-chip:hover {
  background: var(--accent-gold);
  color: var(--bg-black);
}

/* ----------------------------------------------------
   Light Cream Admin Styles & Drag-and-Drop Dropzone
   ---------------------------------------------------- */
.admin-card-light {
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 20px;
  padding: 2.2rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
}

.form-label-light {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.35rem;
  letter-spacing: 0.5px;
}

.form-input-light {
  width: 100%;
  padding: 0.8rem 1rem;
  background: #fdfbf7;
  border: 1px solid #e2ddd3;
  border-radius: 8px;
  color: var(--text-dark);
  font-size: 0.95rem;
  font-family: var(--font-sans);
  outline: none;
  transition: all 0.3s ease;
}

.form-input-light:focus {
  border-color: var(--accent-gold);
  background: #ffffff;
  box-shadow: 0 0 0 3px rgba(242, 169, 0, 0.15);
}

.drop-zone-light {
  border: 2px dashed #d1c7b7;
  background: #faf8f3;
  border-radius: 14px;
  padding: 2.5rem 1.5rem;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.drop-zone-light:hover,
.drop-zone-light.drag-over {
  border-color: var(--accent-gold);
  background: rgba(242, 169, 0, 0.08);
  transform: scale(1.01);
}

.drop-zone-icon {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
}

.preview-grid-light {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
  gap: 0.75rem;
  margin-top: 1rem;
}

.preview-item-light {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  aspect-ratio: 1;
  border: 1px solid #e0d8cb;
  background: #eee;
}

.preview-item-light img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.preview-filename {
  position: absolute;
  bottom: 0;
  inset-x: 0;
  background: rgba(0, 0, 0, 0.75);
  color: #fff;
  font-size: 0.65rem;
  padding: 0.2rem 0.4rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.admin-table-light {
  width: 100%;
  border-collapse: collapse;
  margin-top: 1rem;
}

.admin-table-light th,
.admin-table-light td {
  padding: 1rem 0.85rem;
  text-align: left;
  border-bottom: 1px solid #eee8dd;
  font-size: 0.9rem;
}

.admin-table-light th {
  font-family: var(--font-serif);
  color: var(--text-dark);
  font-size: 0.95rem;
  font-weight: 600;
  border-bottom: 2px solid var(--accent-gold);
}

.badge-code-light {
  background: rgba(242, 169, 0, 0.15);
  color: #b45309;
  border: 1px solid rgba(242, 169, 0, 0.4);
  padding: 0.25rem 0.65rem;
  border-radius: 20px;
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.5px;
}

.admin-btn-action {
  font-weight: 600;
  font-size: 0.8rem;
  text-decoration: none;
  transition: opacity 0.2s ease;
}

.admin-btn-action:hover {
  opacity: 0.75;
}

/* Clean Photo Card Overlay */
.clean-photo-card {
  aspect-ratio: 4 / 3;
}

.clean-overlay {
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(2px);
}

.view-icon-badge {
  background: rgba(242, 169, 0, 0.95);
  color: var(--bg-black);
  padding: 0.5rem 1rem;
  border-radius: 30px;
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 1px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  transform: translateY(10px);
  transition: transform 0.3s ease;
}

.clean-photo-card:hover .view-icon-badge {
  transform: translateY(0);
}

/* ----------------------------------------------------
   Responsive Media Queries (Mobile, Tablet, Desktop)
   ---------------------------------------------------- */
@media (max-width: 1024px) {
  .admin-grid {
    grid-template-columns: 1fr !important;
  }
}

@media (max-width: 768px) {
  .delivery-title {
    font-size: 2.2rem !important;
  }

  .badge-hero-mobile {
    display: none;
  }

  .photo-grid {
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)) !important;
    gap: 0.85rem !important;
  }

  .lightbox-nav {
    width: 42px;
    height: 42px;
    font-size: 1.2rem;
  }

  .lightbox-prev {
    left: 0.5rem;
  }

  .lightbox-next {
    right: 0.5rem;
  }

  .lightbox-close {
    top: 0.8rem;
    right: 1rem;
    font-size: 2rem;
  }

  .access-gate-card {
    padding: 2rem 1.5rem !important;
  }

  .access-input-group {
    flex-direction: column;
  }

  .access-input-group button {
    width: 100%;
    padding: 0.9rem !important;
  }
}

@media (max-width: 480px) {
  .delivery-title {
    font-size: 1.8rem !important;
  }

  .photo-grid {
    grid-template-columns: 1fr 1fr !important;
  }
}

/* ----------------------------------------------------
   Glassmorphism & Mobile App UX Components for Deliveries
   ---------------------------------------------------- */
.glass-delivery-card {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
  overflow: hidden;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.glass-delivery-card:hover {
  border-color: rgba(242, 169, 0, 0.3);
  box-shadow: 0 25px 60px rgba(242, 169, 0, 0.08);
}

.delivery-heading {
  font-family: var(--font-serif);
  font-size: clamp(1.2rem, 4vw, 2.2rem);
  word-wrap: break-word;
  overflow-wrap: break-word;
  word-break: break-word;
  hyphens: auto;
  line-height: 1.25;
  color: var(--bg-cream);
  max-width: 100%;
}

.delivery-section-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 1.5rem;
  width: 100%;
  margin: auto;
  max-width: 1400px;
}

.mobile-app-bar {
  display: none;
  position: fixed;
  bottom: 1.25rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 9999;
  background: rgba(18, 18, 18, 0.88);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(242, 169, 0, 0.35);
  border-radius: 50px;
  padding: 0.5rem 1rem;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.7);
  gap: 0.6rem;
  align-items: center;
  max-width: 92%;
}

.mobile-app-bar a,
.mobile-app-bar button {
  background: transparent;
  border: none;
  color: var(--bg-cream);
  font-size: 0.78rem;
  font-weight: 600;
  font-family: var(--font-sans);
  padding: 0.4rem 0.8rem;
  border-radius: 30px;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.35rem;
  white-space: nowrap;
}

.mobile-app-bar a.btn-app-accent {
  background: var(--accent-gold);
  color: var(--bg-black);
  font-weight: 700;
}

@media (max-width: 768px) {
  .mobile-app-bar {
    display: flex;
  }
}

/* ----------------------------------------------------
   Featured Cover Hero & Organic Shape Reel Styles
   ---------------------------------------------------- */
.featured-cover-card {
  position: relative;
  width: 100%;
  margin: auto;
  max-width: 1400px;
  aspect-ratio: 16 / 9;
  max-height: 600px;
  /* border-radius: 24px; */
  overflow: hidden;
  margin-bottom: 3rem;
  margin-top: 3rem;
  /* border: 1px solid rgba(255, 255, 255, 0.12); */
  /* box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5); */
  cursor: pointer;
}

.featured-cover-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.featured-cover-card:hover img {
  transform: scale(1.05);
}

.featured-cover-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(18, 18, 18, 0.2) 0%, rgba(18, 18, 18, 0.85) 100%);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 2.25rem;
  transition: background 0.3s ease;
}

.featured-cover-card:hover .featured-cover-overlay {
  background: linear-gradient(180deg, rgba(18, 18, 18, 0.1) 0%, rgba(18, 18, 18, 0.9) 100%);
}

.galery-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.25rem;
  flex-wrap: wrap;
  gap: 1rem;
  max-width: 1400px;
  margin: auto;
}

.organic-reel-wrapper {
  position: relative;
  width: 100%;
  margin-top: 1.5rem;
  max-width: 1400px;
  margin: auto;
}

.organic-reel-container {
  display: flex;
  gap: 1.5rem;
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  padding: 1.25rem 0.5rem 2.25rem 0.5rem;
  scrollbar-width: none;
}

.organic-reel-container::-webkit-scrollbar {
  display: none;
}

.reel-item-card {
  flex: 0 0 240px;
  height: 310px;
  position: relative;
  scroll-snap-align: start;
  cursor: pointer;
  overflow: hidden;
  transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1), border-radius 0.6s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.4s ease, border-color 0.3s ease;
  border: 2px solid rgba(242, 169, 0, 0.2);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.reel-item-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

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

/* Organic Form Shape Variants */
.shape-variant-1 {
  border-radius: 120px 120px 24px 24px;
}

.shape-variant-1:hover {
  border-radius: 24px 24px 120px 120px;
  transform: translateY(-10px) scale(1.04);
  border-color: var(--accent-gold);
}

.shape-variant-2 {
  border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
}

.shape-variant-2:hover {
  border-radius: 30% 70% 70% 30% / 40% 60% 40% 60%;
  transform: translateY(-10px) scale(1.04) rotate(2deg);
  border-color: var(--accent-gold);
}

.shape-variant-3 {
  border-radius: 30px 100px 30px 100px;
}

.shape-variant-3:hover {
  border-radius: 100px 30px 100px 30px;
  transform: translateY(-10px) scale(1.04) rotate(-2deg);
  border-color: var(--accent-gold);
}

.shape-variant-4 {
  border-radius: 50px 20px 50px 20px;
}

.shape-variant-4:hover {
  border-radius: 20px 50px 20px 50px;
  transform: translateY(-10px) scale(1.04);
  border-color: var(--accent-gold);
}

.shape-variant-5 {
  border-radius: 24px 120px 24px 120px;
}

.shape-variant-5:hover {
  border-radius: 120px 24px 120px 24px;
  transform: translateY(-10px) scale(1.04) rotate(3deg);
  border-color: var(--accent-gold);
}

.shape-variant-6 {
  border-radius: 40px;
}

.shape-variant-6:hover {
  border-radius: 50%;
  transform: translateY(-10px) scale(1.04);
  border-color: var(--accent-gold);
}

/* Organic Reel Overlay */
.reel-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 40%, rgba(0, 0, 0, 0.88) 100%);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 1.25rem;
  opacity: 0.85;
  transition: opacity 0.3s ease;
}

.reel-item-card:hover .reel-overlay {
  opacity: 1;
}

.reel-number-tag {
  align-self: flex-end;
  background: rgba(18, 18, 18, 0.75);
  backdrop-filter: blur(8px);
  color: var(--accent-gold);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.3rem 0.65rem;
  border-radius: 20px;
  border: 1px solid rgba(242, 169, 0, 0.35);
}

.reel-discover-badge {
  color: var(--bg-cream);
  font-size: 0.8rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.35rem;
  transform: translateY(4px);
  transition: transform 0.3s ease, color 0.3s ease;
}

.reel-item-card:hover .reel-discover-badge {
  transform: translateY(0);
  color: var(--accent-gold);
}

/* Reel Nav Scroll Arrows */
.reel-nav-btn {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: var(--bg-cream);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.reel-nav-btn:hover {
  background: var(--accent-gold);
  color: var(--bg-black);
  border-color: var(--accent-gold);
}

@media (max-width: 768px) {
  .reel-item-card {
    flex: 0 0 190px;
    height: 250px;
  }
}

/* ----------------------------------------------------
   Admin UI/UX Dashboard Components
   ---------------------------------------------------- */
.metric-card {
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 16px;
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 1.25rem;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.03);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.metric-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.06);
}

.metric-icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: rgba(242, 169, 0, 0.12);
  color: var(--accent-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
}

.metric-value {
  display: block;
  font-size: 1.7rem;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.1;
  font-family: var(--font-sans);
}

.metric-label {
  font-size: 0.8rem;
  color: #666;
  font-weight: 500;
  letter-spacing: 0.5px;
}

/* Admin Tabs */
.admin-tab-btn {
  background: #ffffff;
  border: 1px solid #e2ddd3;
  color: #555;
  padding: 0.75rem 1.4rem;
  border-radius: 30px;
  font-size: 0.85rem;
  font-weight: 600;
  font-family: var(--font-sans);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
}

.admin-tab-btn:hover {
  background: #fdfbf7;
  color: var(--text-dark);
  border-color: var(--accent-gold);
}

.admin-tab-btn.active {
  background: var(--bg-black);
  color: var(--bg-cream);
  border-color: var(--bg-black);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
}

.admin-tab-btn.active i {
  color: var(--accent-gold);
}

/* Status Radio Cards */
.status-radio-card {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  background: #ffffff;
  border: 1px solid #e2ddd3;
  border-radius: 12px;
  padding: 0.85rem 1rem;
  cursor: pointer;
  transition: all 0.2s ease;
}

.status-radio-card:hover {
  border-color: var(--accent-gold);
  background: #fdfbf7;
}

.status-radio-card input[type="radio"] {
  accent-color: var(--accent-gold);
  margin-top: 0.2rem;
}

.status-radio-card strong {
  display: block;
  font-size: 0.85rem;
  color: var(--text-dark);
  margin-bottom: 0.15rem;
}

/* ----------------------------------------------------
   Instagram-Style Mobile Feed & Profile Grid
   ---------------------------------------------------- */
.insta-tab-btn {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--text-gray);
  padding: 0.5rem 1.1rem;
  border-radius: 30px;
  font-size: 0.78rem;
  font-weight: 600;
  font-family: var(--font-sans);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  transition: all 0.3s ease;
}

.insta-tab-btn:hover {
  background: rgba(255, 255, 255, 0.12);
  color: var(--bg-cream);
  border-color: var(--accent-gold);
}

.insta-tab-btn.active {
  background: var(--accent-gold);
  color: var(--bg-black);
  border-color: var(--accent-gold);
  font-weight: 700;
  box-shadow: 0 4px 15px rgba(242, 169, 0, 0.25);
}

/* Instagram 1-Column Mobile Feed */
.insta-feed-container {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  max-width: 680px;
  margin: 1.5rem auto 0 auto;
}

.insta-feed-card {
  background: #181818;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
}

.insta-feed-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.85rem 1.1rem;
  background: rgba(255, 255, 255, 0.02);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.insta-feed-user {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.insta-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(45deg, var(--accent-gold), var(--accent-orange));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--bg-black);
  font-weight: 800;
  font-size: 0.85rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.insta-feed-username {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--bg-cream);
  line-height: 1.2;
}

.insta-feed-location {
  font-size: 0.72rem;
  color: var(--text-gray);
}

.insta-feed-media {
  width: 100%;
  aspect-ratio: 4 / 5;
  position: relative;
  background: #0d0d0d;
  cursor: pointer;
  overflow: hidden;
}

.insta-feed-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.insta-feed-media:hover img {
  transform: scale(1.02);
}

.insta-feed-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 1.1rem;
}

.insta-action-left {
  display: flex;
  align-items: center;
  gap: 1.1rem;
}

.insta-action-btn {
  background: none;
  border: none;
  color: var(--bg-cream);
  font-size: 1.35rem;
  cursor: pointer;
  transition: transform 0.2s ease, color 0.2s ease;
  padding: 0;
  display: inline-flex;
}

.insta-action-btn:hover {
  color: var(--accent-gold);
  transform: scale(1.15);
}

.insta-action-btn.liked {
  color: #ef4444;
}

.insta-feed-caption {
  padding: 0 1.1rem 1rem 1.1rem;
  font-size: 0.85rem;
  color: rgba(247, 244, 236, 0.9);
}

.insta-feed-caption strong {
  color: var(--bg-cream);
  margin-right: 0.4rem;
}

/* Instagram 3x3 Profile Grid */
.insta-profile-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3px;
  max-width: 900px;
  margin: 1.5rem auto 0 auto;
}

.insta-grid-item {
  aspect-ratio: 1 / 1;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  background: #181818;
}

.insta-grid-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.insta-grid-item:hover img {
  transform: scale(1.06);
}

.insta-grid-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  color: var(--bg-cream);
  font-weight: 700;
  font-size: 0.9rem;
  opacity: 0;
  transition: opacity 0.2s ease;
}

.insta-grid-item:hover .insta-grid-overlay {
  opacity: 1;
}

/* Instagram Single Multi-Photo Carousel Post */
.insta-carousel-post {
  background: #161616;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.5);
  margin: 1.5rem auto 0 auto;
  max-width: 650px;
  width: 100%;
}

.insta-carousel-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.85rem 1.25rem;
  background: rgba(255, 255, 255, 0.02);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.insta-carousel-track {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none;
  width: 100%;
}

.insta-carousel-track::-webkit-scrollbar {
  display: none;
}

.insta-carousel-slide {
  flex: 0 0 100%;
  width: 100%;
  aspect-ratio: 4 / 5;
  position: relative;
  scroll-snap-align: start;
  background: #0d0d0d;
  cursor: pointer;
}

.insta-carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.insta-slide-counter {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: rgba(18, 18, 18, 0.75);
  backdrop-filter: blur(10px);
  color: var(--bg-cream);
  font-size: 0.78rem;
  font-weight: 700;
  padding: 0.35rem 0.75rem;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  z-index: 10;
}

.insta-carousel-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.85rem 1.25rem;
  background: rgba(255, 255, 255, 0.02);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  flex-wrap: wrap;
  gap: 0.75rem;
}

.insta-dots-indicator {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
}

.insta-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.25);
  transition: all 0.3s ease;
}

.insta-dot.active {
  background: var(--accent-gold);
  width: 18px;
  border-radius: 10px;
}

@media (max-width: 768px) {
  .delivery-page .container {
    padding: 0 0.5rem !important;
  }

  .featured-cover-card {
    display: none !important;
  }

  .insta-feed-container {
    margin-top: 1rem;
    gap: 1.25rem;
  }

  .insta-feed-card,
  .insta-carousel-post {
    border-radius: 14px;
  }

  /* Mobile Video Delivery Card & Responsive Google Drive Iframe Controls Fix */
  .video-delivery-card {
    padding: 0 !important;
    border-radius: 16px !important;
    margin-bottom: 2.5rem !important;
    overflow: hidden !important;
    border: 1px solid rgba(255, 255, 255, 0.12) !important;
    background: #161616 !important;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4) !important;
  }

  .video-wrapper {
    width: 100% !important;
    padding-top: 56.25% !important;
    /* 16:9 Proportional Container */
    position: relative !important;
    max-width: 100% !important;
    background: #000 !important;
    overflow: hidden !important;
  }

  .video-wrapper iframe,
  .video-wrapper video {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    border: none !important;
    max-width: 100% !important;
  }

  .video-info-bar {
    padding: 1.1rem 1.25rem !important;
    background: rgba(255, 255, 255, 0.03) !important;
    border-top: 1px solid rgba(255, 255, 255, 0.08) !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: stretch !important;
    gap: 0.85rem !important;
  }

  .video-info-bar a {
    width: 100% !important;
    justify-content: center !important;
    padding: 0.8rem 1rem !important;
    font-size: 0.82rem !important;
    border-radius: 30px !important;
    text-align: center !important;
  }
}

/* --- 2027 GLASSMORPHISM AESTHETICS --- */
.glass-2027 {
  background: rgba(18, 18, 18, 0.4);
  backdrop-filter: blur(28px) saturate(190%);
  -webkit-backdrop-filter: blur(28px) saturate(190%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 35px 70px rgba(0, 0, 0, 0.5), inset 0 1px 1px rgba(255, 255, 255, 0.12);
  border-radius: 28px;
  position: relative;
  overflow: hidden;
}

.glass-2027::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100%;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.06) 0%, rgba(255, 255, 255, 0) 100%);
  pointer-events: none;
  z-index: 1;
}

/* RESPONSIVE HEADINGS TO PREVENT OVERFLOW */
.delivery-heading {
  font-size: clamp(1.2rem, 3.5vw, 1.8rem) !important;
  line-height: 1.25;
  word-wrap: break-word;
  overflow-wrap: break-word;
  hyphens: auto;
}

.delivery-title {
  font-size: clamp(1.8rem, 5vw, 3.5rem) !important;
  line-height: 1.1;
  letter-spacing: -0.02em;
  font-weight: 700;
  background: linear-gradient(180deg, #FFFFFF 0%, rgba(255, 255, 255, 0.65) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-transform: uppercase;
}

/* --- EDITORIAL HERO 2027 (INSPIRATE) --- */
.editorial-hero {
  background: #121212;
  padding: 2rem 0 4rem 0;
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 2rem;
  align-items: center;
  position: relative;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.editorial-hero-left {
  position: relative;
  z-index: 5;
}

.editorial-title {
  font-family: var(--font-serif);
  font-size: clamp(3rem, 7vw, 5.5rem) !important;
  line-height: 0.95;
  color: var(--bg-cream);
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
  position: relative;
  text-transform: none;
  background: none;
  -webkit-text-fill-color: var(--bg-cream);
}

.editorial-subtitle {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--accent-gold);
  border-bottom: 1px solid var(--accent-gold);
  padding-bottom: 0.5rem;
  display: inline-block;
  margin-bottom: 2rem;
  font-weight: 600;
}

.editorial-hero-center {
  position: relative;
  display: flex;
  justify-content: center;
}

.editorial-cover-img {
  width: 100%;
  max-width: 380px;
  aspect-ratio: 4/5;
  object-fit: cover;
  border-radius: 200px 200px 0 0;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.05);
  background: #1a1a1a;
}

.editorial-badge-wrapper {
  position: absolute;
  bottom: -30px;
  right: -10px;
  width: 130px;
  height: 130px;
  background: var(--bg-cream);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  z-index: 10;
}

.editorial-badge-wrapper .badge-text {
  fill: #121212;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
}

.editorial-badge-wrapper .badge-center-icon {
  color: #121212;
  font-size: 1.5rem;
  position: absolute;
}

.editorial-hero-right {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  align-items: flex-start;
  padding-left: 1rem;
}

.editorial-quote {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  color: var(--bg-cream);
  line-height: 1.2;
}

.editorial-quote span {
  color: #FF4500;
  font-style: italic;
}

.editorial-block {
  background: #FF4500;
  color: #fff;
  padding: 2rem 1.5rem;
  width: 100%;
  box-shadow: 0 20px 40px rgba(255, 69, 0, 0.2);
}

.editorial-block h4 {
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 0.5rem;
  color: #fff !important;
  font-family: var(--font-sans);
}

.editorial-meta {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: rgba(255, 255, 255, 0.8);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.3);
  padding-top: 1.2rem;
  margin-top: 1rem;
}

.editorial-meta strong {
  display: block;
  font-size: 0.65rem;
  opacity: 0.7;
  margin-bottom: 0.2rem;
}

@media (max-width: 992px) {
  .editorial-hero {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 2rem 0;
  }

  .editorial-hero-left {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 2rem;
  }

  .editorial-title {
    text-align: center !important;
  }

  .editorial-badge-wrapper {
    bottom: -20px;
    right: 5%;
  }

  .editorial-hero-right {
    align-items: center;
    margin-top: 2rem;
    padding-left: 0;
  }

  .editorial-meta {
    align-items: center;
    text-align: center;
  }
}