
    *,
    *::before,
    *::after {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    :root {
      --bg: #f2ebe5;
      --kraft: #C8B090;
      --kraft-lt: #DDD0B0;
      --rose: #9A3854;
      --rose-lt: #C07090;
      --sage: #697852;
      --sage-dk: #485438;
      --ink: #2A1E14;
      --ink-mid: #56422E;
      --ink-lt: #4e2c0d;
    }

    html,
    body {
      font-family: 'Lora', serif;
      color: var(--ink);
      overflow-x: hidden;
      background-image: url('../images/paper-bg.png');
      background-size: auto;
      background-repeat: repeat;
      background-attachment: fixed;
      background-color: #f2ebe5;
    }
/* ── NAVBAR (permanently transparent — background tum khud lagaogi) ── */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
  height: 70px;
  background: transparent;
  display: flex;
  flex-direction: column;
  padding: 0rem 2rem;
  transition: background 0.3s ease, height 0.3s ease;
}

/* Desktop scrolled/menu-open background — sirf desktop bar ke peeche.
   Mobile media query mein neeche isko override karke transparent kar diya hai. */
.navbar.scrolled,
.navbar.menu-open {
  background-image: url('../images/navbar-bg.png');
  background-size: 100% auto;
  background-repeat: repeat-y;
  background-position: center;
  /* padding: 0.8rem 2rem; */
}

.navbar-inner {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 220px 1fr 220px;
  align-items: center;
  height: 70px;
  justify-content: center;
  align-content: center;
  justify-items: center;
  flex-shrink: 0;
}

/* ── DESKTOP LOGO ── */
.nav-logo-desktop {
  text-decoration: none;
  display: inline-block;
  position: relative;
  transform-origin: center bottom;
  animation: pmLogoPop 0.9s 0.1s cubic-bezier(0.34, 1.56, 0.64, 1) both;
  transition: transform 0.3s ease;
}

@keyframes pmLogoPop {
  0% { opacity: 0; transform: scale(0.3) rotate(-18deg) translateY(-10px); }
  55% { opacity: 1; transform: scale(1.12) rotate(6deg) translateY(2px); }
  75% { transform: scale(0.96) rotate(-3deg); }
  100% { opacity: 1; transform: scale(1) rotate(-2deg) translateY(0); }
}

.nav-logo-desktop:hover { transform: rotate(2deg) scale(1.06); }

.nav-logo-desktop img {
  position: relative;
  z-index: 2;
  filter: drop-shadow(0 2px 3px rgba(0,0,0,0.12));
}

.nav-logo-tape {
  position: absolute;
  top: -8px;
  left: -10px;
  width: 38px;
  height: 16px;
  background: repeating-linear-gradient(135deg, var(--rose) 0px, var(--rose) 6px, rgba(193,122,134,0.55) 6px, rgba(193,122,134,0.55) 12px);
  opacity: 0.85;
  transform: rotate(-35deg) scaleX(0);
  transform-origin: left center;
  border-radius: 1px;
  z-index: 1;
  box-shadow: 0 1px 2px rgba(0,0,0,0.1);
  animation: pmTapeStick 0.5s 0.75s cubic-bezier(0.22, 1, 0.36, 1) both;
}

@keyframes pmTapeStick {
  from { transform: rotate(-35deg) scaleX(0); opacity: 0; }
  to { transform: rotate(-35deg) scaleX(1); opacity: 0.85; }
}

/* ── NAV LINKS (desktop) ── */
.nav-center { display: flex; align-items: center; justify-content: center; gap: 0; list-style: none; }
.nav-center li { opacity: 0; animation: pmLinkIn 0.55s ease both; }
.nav-center li:nth-child(1) { animation-delay: 0.2s; }
.nav-center li:nth-child(2) { animation-delay: 0.28s; }
.nav-center li:nth-child(3) { animation-delay: 0.36s; }
.nav-center li:nth-child(4) { animation-delay: 0.44s; }
.nav-center li:nth-child(5) { animation-delay: 0.52s; }
.nav-center li:nth-child(6) { animation-delay: 0.60s; }

@keyframes pmLinkIn {
  from { opacity: 0; transform: translateY(-10px) rotate(-3deg); }
  to { opacity: 1; transform: translateY(0) rotate(0); }
}

.nav-center li a {
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--ink-mid);
  padding: 0.45rem 0.9rem;
  border-radius: 18px;
  transition: color 0.25s ease, background 0.25s ease, transform 0.2s ease;
  white-space: nowrap;
  display: flex;
  align-items: center;
}

.nav-icon { display: inline-block; font-size: 0.85rem; color: var(--rose); margin-right: 0.45rem; transition: color 0.25s ease, transform 0.25s ease; }
.nav-center li a:hover { background: var(--rose); color: #fff; transform: translateY(-1px); }
.nav-center li a:hover .nav-icon { color: #fff; transform: scale(1.1); }

.nav-right { display: flex; justify-content: flex-end; align-items: center; gap: 1rem; }

/* Desktop */
.nav-center a.active {
  background: var(--rose, #8b2942);
  color: #fff !important;
}

.nav-center a.active i{
  background: var(--rose, #8b2942);
  color: #fff !important;
}

/* Mobile */
.mobile-nav a.active {
  background: var(--rose, #8b2942);
  color: #fff !important;
}

.mobile-nav a.active {
  background: var(--rose, #8b2942);
  color: #fff !important;
  border-radius: 50px;
  padding: 0.6rem 1rem;
}

.mobile-nav a.active i {
  color: #fff;
}
.nav-cta {
  text-decoration: none;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #fff;
  background: var(--sage-dk);
  padding: 0.5rem 1.2rem;
  border-radius: 22px;
  transition: background 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
  white-space: nowrap;
  opacity: 0;
  animation: pmCtaPop 0.6s 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) both;
}

@keyframes pmCtaPop {
  from { opacity: 0; transform: scale(0.7) translateY(-6px); }
  to { opacity: 1; transform: scale(1) translateY(0); }
}

.nav-cta:hover { background: var(--rose); transform: translateY(-2px) scale(1.04); box-shadow: 0 6px 14px rgba(193,122,134,0.35); }

/* ════════════════════════════════════════════════════════
   MOBILE BAR — logo + hamburger + dropdown, ek hi wrapper.
   Default hidden — sirf mobile media query mein dikhega.
   NO BACKGROUND yahan — jo bhi bg chahiye .mobile-bar pe khud add karna.
   ════════════════════════════════════════════════════════ */
.mobile-bar {
  display: none;
  flex-direction: column;
  width: 100%;

  /* ✅ PROPER FIX — background hamesha TOP pe pin rahega,
     dropdown khulne se box ki height badhe to bhi shift nahi hoga */
  background-image: url('../images/mobile-header-bg.png');   /* ← apna actual image path daalo */
  background-repeat: no-repeat;
  background-position: top center;
  background-size: 100% auto;
  background-color: var(--cream);  /* ← image jitni tall hai, usse zyada box badhe to neeche yeh solid color fill karega, gap nahi dikhega */
}

.mobile-nav a:hover,
.mobile-nav a:active {
  color: var(--rose);
  padding-left: 4px;
}

.mobile-nav a {
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--ink-mid);
  padding: 0.75rem 0.6rem;
  border-bottom: 1px solid var(--kraft-lt);
  border-radius: 10px;
  opacity: 0;
  transition: background 0.2s ease, color 0.2s ease, padding-left 0.2s ease;
}

.mobile-nav a i {
  color: var(--rose);
  width: 1.1em;
  margin-right: 0.3rem;
  transition: color 0.2s ease;
}

/* ✅ Tap par visible feedback — desktop wale hover jaisa hi */
.mobile-nav a:active,
.mobile-nav a:hover {
  background: var(--rose);
  color: #fff;
  padding-left: 1rem;
}

.mobile-nav a:active i,
.mobile-nav a:hover i {
  color: #fff;
}
.mobile-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-shrink: 0;
}

.nav-logo-mobile {
  display: inline-block;
  text-decoration: none;
  animation: pmLogoPop 0.9s 0.1s cubic-bezier(0.34, 1.56, 0.64, 1) both;
}

.nav-logo-mobile img { max-height: 36px; }

/* ── HAMBURGER ── */
.hamburger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  outline: none;
  appearance: none;
  -webkit-appearance: none;
  padding: 4px;
  width: 28px;
  height: 28px;
  box-shadow: none;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2.5px;
  background: var(--ink-mid);
  border-radius: 2px;
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.25s ease, width 0.3s ease, background 0.3s ease;
}

.hamburger.active span { background: var(--rose); }
.hamburger.active span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; width: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* ── MOBILE DROPDOWN LINKS — no background, .mobile-bar wrapper hi cover karega ── */
.mobile-nav {
  display: flex;
  flex-direction: column;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.4s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.3s ease;
}

.mobile-nav.open {
  max-height: 80vh;
  opacity: 1;
  overflow-y: auto;
  padding-bottom: 1.5rem;
}

.mobile-nav a {
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--ink-mid);
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--kraft-lt);
  opacity: 0;
}

.mobile-nav a i { color: var(--rose); width: 1.1em; margin-right: 0.3rem; }
.mobile-nav.open a { animation: pmMobLinkPop 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) forwards; }
.mobile-nav.open a:nth-child(1) { animation-delay: 0.05s; }
.mobile-nav.open a:nth-child(2) { animation-delay: 0.11s; }
.mobile-nav.open a:nth-child(3) { animation-delay: 0.17s; }
.mobile-nav.open a:nth-child(4) { animation-delay: 0.23s; }
.mobile-nav.open a:nth-child(5) { animation-delay: 0.29s; }

@keyframes pmMobLinkPop {
  0% { opacity: 0; transform: translateX(-16px); }
  100% { opacity: 1; transform: translateX(0); }
}

.mobile-nav a:last-child { border: none; }
.mobile-nav a:hover { color: var(--rose); padding-left: 4px; }

@media (prefers-reduced-motion: reduce) {
  .navbar, .nav-logo-desktop, .nav-logo-mobile, .nav-logo-tape, .nav-center li, .nav-cta, .mobile-nav.open a {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
}

/* ════════ MOBILE BREAKPOINT ════════ */
@media (max-width: 968px) {
  .navbar { padding: 0 1.25rem; height: auto; }

  /* Desktop scrolled-bg yahan disable — mobile-bar pe khud bg lagani hai */
  .navbar.scrolled,
  .navbar.menu-open {
    background-image: none;
  }

  /* Desktop bar poora gayab mobile pe */
  .navbar-inner { display: none; }

  /* Mobile bar (header + dropdown) ab visible */
  .mobile-bar { display: flex; }
}
@media (max-width: 968px) {
  .navbar { padding: 0 1.25rem; height: auto; }

  .navbar.scrolled,
  .navbar.menu-open {
    background-image: none;
  }

  .navbar-inner { display: none; }

  /* base .mobile-bar — sirf layout, NO background yahan */
  .mobile-bar {
    display: flex;
    flex-direction: column;
    width: calc(100% + 2.5rem);
    margin-left: -1.25rem;
    margin-right: -1.25rem;
  }

  /* background SIRF scroll ya menu-open par */
  .navbar.scrolled .mobile-bar,
  .navbar.menu-open .mobile-bar {
    background-color: #f0e3c8;
    background-image: 
      url('../images/mobile-header-bg.png');
    background-repeat: no-repeat, no-repeat;
    background-position: top center, bottom center;
    background-size: 100% auto, 100% auto;
  }

  .mobile-header { padding: 20px 1.25rem; } .nav-logo-mobile img{max-height:45px;}
  .mobile-nav { padding: 0 1.25rem; }
  .mobile-nav.open { padding: 1.75rem 1.25rem 1.5rem; }
}

/* ════════ MOBILE + TABLET BREAKPOINT ════════
   968px se 1180px kiya hai. Wajah: desktop nav (logo + 4 links + CTA,
   220px/1fr/220px grid) ko comfortably fit hone ke liye ~1200px+ chahiye.
   iPad landscape (1024px) aur iPad Air landscape (1180px) jaise widths
   968–1180px ke "dead zone" mein aate the — desktop bar force ho raha
   tha but squish/overlap ho raha tha. Ab ye range bhi hamburger nav
   use karega, jo tablet ke liye reliable hai. */
@media (max-width: 1180px) {
  .navbar { padding: 0 1.25rem; height: auto; }

  .navbar.scrolled,
  .navbar.menu-open {
    background-image: none;
  }

  .navbar-inner { display: none; }

  .mobile-bar {
    display: flex;
    flex-direction: column;
    width: calc(100% + 2.5rem);
    margin-left: -1.25rem;
    margin-right: -1.25rem;
  }

  .navbar.scrolled .mobile-bar,
  .navbar.menu-open .mobile-bar {
    background-color: #f0e3c8;
    background-image:
      url('../images/mobile-header-bg.png');
    background-repeat: no-repeat, no-repeat;
    background-position: top center, bottom center;
    background-size: 100% auto, 100% auto;
  }

  .mobile-header { padding: 10px 1.25rem; min-height:70px;}
  .mobile-nav { padding: 0 1.25rem; }
  .mobile-nav.open { padding: 1.75rem 1.25rem 1.5rem; }
}
/* ── HERO ── */
    .hero {
      position: relative;
      min-height: 100vh;
      display: grid;
      grid-template-columns: 34% 1fr;
      overflow: hidden;
    }

    .hero-left {
      position: relative;
      overflow: hidden;
      z-index: 1;
    }

    .hero-left img.pinky-photo {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center top;
      display: block;
      mask-image: linear-gradient(to right, black 40%, rgba(0, 0, 0, 0.5) 70%, transparent 100%);
      -webkit-mask-image: linear-gradient(to right, black 40%, rgba(0, 0, 0, 0.5) 70%, transparent 100%);
    }

    .photo-ph {
      width: 100%;
      height: 100%;
      min-height: 580px;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 1rem;
      opacity: 0.45;
    }

    .hero-middle-wrap {
      position: relative;
      display: flex;
      z-index: 2;
      overflow: hidden;
    }

    .hero-center {
      position: relative;
      flex: 1;
      display: flex;
      align-items: center;
      justify-content: center;
      z-index: 2;
    }

    .hero-content {
      position: relative;
      z-index: 3;
      max-width: 600px;
      width: 100%;
    }

    .h-pill {
      font-size: 0.67rem;
      letter-spacing: 0.07em;
      text-transform: uppercase;
      color: var(--ink-lt);
      display: flex;
      flex-wrap: wrap;
      gap: 0.35rem;
      align-items: center;
      font-weight: bold;
    }

    .h-pill .dot {
      color: var(--kraft);
    }

    .h-divider {
      display: flex;
      align-items: center;
      gap: 0.6rem;
      margin-bottom: 1.5rem;
    }

    .h-divider-line {
      flex: 1;
      height: 1px;
      background: linear-gradient(to right, transparent, var(--kraft-lt));
    }

    .h-divider-line.r {
      background: linear-gradient(to left, transparent, var(--kraft-lt));
    }

    .h-divider-heart {
      color: var(--rose-lt);
      font-size: 0.78rem;
    }

    .h-headline {
      font-family: 'Playfair Display', serif;
      font-size: clamp(1.2rem, 2vw, 2rem);
      line-height: 1.3;
      color: var(--ink);
      font-weight: 400;
      margin-bottom: 1.5rem;
    }

    .h-headline .script {
      font-family: 'Dancing Script', cursive;
      color: var(--rose);
      font-weight: 600;
      font-size: 1.15em;
    }

    .h-headline em {
      font-style: italic;
    }

    .h-sub {
      font-size: 0.93rem;
      line-height: 2;
      color: var(--ink-mid);
      margin-bottom: 2.2rem;
      text-align: justify;
      /* padding:0 20px; */
      margin-bottom: 20px;
    }

    .btn-j {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      font-family: 'Dancing Script', cursive;
      font-size: 1.3rem;
      font-weight: 600;
      color: #fff;
      background: var(--rose);
      padding: 0.65rem 2rem;
      border-radius: 32px;
      text-decoration: none;
      box-shadow: 0 4px 18px rgba(154, 56, 84, 0.28);
      transition: background 0.2s, transform 0.15s;
      margin-top:20px;
    }

    .btn-j:hover {
      background: #B04060;
      transform: translateY(-2px);
    }

    .hero-right {
      position: relative;
      width: 50%;
      flex-shrink: 0;
      display: flex;
      align-items: center;
      justify-content: center;
      z-index: 2;
      padding: 1rem;
    }

    .right-deco-img {
      width: 100%;
      max-width: 100%;
      max-height: 85%;
      object-fit: contain;
      display: block;
      transform-origin: center center;
      animation: floatTilt 4s ease-in-out infinite;
      filter: drop-shadow(4px 8px 20px rgba(0, 0, 0, 0.12));
    }

    @keyframes floatTilt {
      0% {
        transform: rotate(12deg) translateY(0px)
      }

      50% {
        transform: rotate(14deg) translateY(-16px)
      }

      100% {
        transform: rotate(12deg) translateY(0px)
      }
    }

    @keyframes fadeInUp {
      from {
        opacity: 0;
        transform: translateY(20px)
      }

      to {
        opacity: 1;
        transform: translateY(0)
      }
    }

    .h-pill {
      animation: fadeInUp 0.7s ease both 0.2s;
      opacity: 0;
    }

    .h-divider {
      animation: fadeInUp 0.7s ease both 0.4s;
      opacity: 0;
    }

    .h-headline {
      animation: fadeInUp 0.7s ease both 0.55s;
      opacity: 0;
    }

    .h-sub {
      animation: fadeInUp 0.7s ease both 0.7s;
      opacity: 0;
      /* margin:0 20px; */
    }

    .btn-j {
      animation: fadeInUp 0.7s ease both 0.85s;
      opacity: 0;
    }


    /* ── RESPONSIVE ── */
    @media (max-width: 1024px) {
      .hero {
        grid-template-columns: 40% 1fr;
      }

      .hero-right {
        width: 28%;
      }

    }


    @media (max-width: 860px) {
      .hero {
        grid-template-columns: 1fr;
        min-height: auto;
      }

      .hero-left {
        height: 55vw;
        min-height: 260px;
        max-height: 380px;
      }

      .hero-left img.pinky-photo {
        mask-image: linear-gradient(to bottom, black 70%, transparent 100%);
        -webkit-mask-image: linear-gradient(to bottom, black 70%, transparent 100%);
      }

      .hero-middle-wrap {
        flex-direction: column;
      }

      .hero-right {
        width: 100%;
        padding: 1rem 1.5rem 1rem;
        justify-content: center;
      }

      .hero-content {
        max-width: 100%;
        text-align: center;
      }

      .h-pill {
        justify-content: center;
      }
    }

    @media (max-width: 720px) {
      .navbar-inner {
        grid-template-columns: 1fr auto;
      }

      .h-sub{
        margin: 0 20px;
      }
      .nav-center,
      .nav-right .nav-cta {
        display: none;
      }

      .hamburger {
        display: flex;
      }

      .expand-panel {
        padding: 1.5rem 1rem 1.5rem;
      }
    }


   


    /* ── IMPACT STATS BANNER ── */
    .impact-banner {
      position: relative;

      margin-top: -2px;
      /* flush against section above */
    }

    /* REPLACE your existing torn-bg */
    .torn-bg {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: fill;
      /* stretch horizontally to fill full width */
      object-position: top center;
      z-index: 0;
      display: block;
    }

    /* REPLACE your existing impact-stats */
    .impact-stats {
      position: relative;
      z-index: 1;
      display: flex;
      align-items: center;
      justify-content: space-evenly;
      /* spread evenly across full width */
      flex-wrap: wrap;
      width: 100%;
      /* full width, no max-width cap */
      margin: 0;
      padding: 4.5rem 6rem 2.5rem;
      /* more left-right padding to match green zone */
    }

    /* ── STAT ANIMATIONS ── */
    /* ── FIX STAT ITEM LAYOUT & COLORS ── */
    .stat-item {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 4px;
      flex: 1;
      min-width: 120px;
      text-align: center;
      padding: 0 1rem;
      opacity: 0;
      transform: translateY(30px);
      transition: opacity 0.6s ease, transform 0.6s ease;
    }

    .stat-item.stat-visible {
      opacity: 1;
      transform: translateY(0);
    }

    .stat-item i {
      font-size: 30px;
      color: rgba(255, 255, 255, 0.80);
      margin-bottom: 6px;
      display: block;
    }

    .stat-num {
      font-family: 'Playfair Display', serif;
      font-size: clamp(1.2rem, 2vw, 1.7rem);
      font-weight: 600;
      color: #ffffff;
      letter-spacing: 0.02em;
      line-height: 1;
      display: block;
    }

    .stat-label {
      font-family: 'Lato', sans-serif;
      font-size: 12px;
      font-weight: 400;
      color: rgba(255, 255, 255, 0.72);
      letter-spacing: 0.03em;
      line-height: 1.5;
      display: block;
      margin-top: 2px;
    }

    .stat-divider {
      width: 1px;
      height: 44px;
      background: rgba(255, 255, 255, 0.25);
      flex-shrink: 0;
      align-self: center;
      transform: scaleY(0);
      transform-origin: top;
      transition: transform 0.5s ease 0.5s;
    }

    .impact-banner.banner-visible .stat-divider {
      transform: scaleY(1);
    }

    @media (max-width: 860px) {
      .impact-stats {
        gap: 1rem;
        padding-top: 3.5rem;
      }

      .stat-divider {
        display: none;
      }

      .stat-item {
        padding: 0.8rem 1.5rem;
      }

      .impact-stats {
        justify-content: center;
      }
    }

    @media (max-width: 500px) {
      .impact-stats {
        padding: 4.3rem 1rem 1.5rem;
      }

      .timeline-sky{
        overflow-x:auto;
      }
      .stat-item {
        width: 45%;
        padding: 0.6rem;
      }
    }

    @keyframes floatY {

      0%,
      100% {
        transform: translateY(0px);
      }

      50% {
        transform: translateY(-10px);
      }
    }

    @keyframes floatYLeft {

      0%,
      100% {
        transform: translateY(0px) rotate(-12deg);
      }

      50% {
        transform: translateY(-10px) rotate(-12deg);
      }
    }

    @keyframes floatYRight {

      0%,
      100% {
        transform: translateY(0px) rotate(12deg);
      }

      50% {
        transform: translateY(-10px) rotate(12deg);
      }
    }

    @keyframes sway {

      0%,
      100% {
        transform: rotate(-3deg);
      }

      50% {
        transform: rotate(3deg);
      }
    }

    @keyframes fadeSlideUp {
      from {
        opacity: 0;
        transform: translateY(22px);
      }

      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    @keyframes pulseDot {

      0%,
      100% {
        box-shadow: 0 0 0 0 rgba(196, 120, 106, 0.5);
      }

      50% {
        box-shadow: 0 0 0 5px rgba(196, 120, 106, 0);
      }
    }

    @keyframes tapeDrift {

      0%,
      100% {
        transform: translateX(-50%) rotate(-1deg);
      }

      50% {
        transform: translateX(-50%) rotate(1deg);
      }
    }

    /* ─── SECTION ─── */
    .awards-section {
      /*background: var(--cream);*/
      padding: 56px 20px 20px;
      position: relative;
    }

    .container {
      max-width: 1060px;
      margin: 0 auto;
    }

    /* ══════════════════════════════
     HEADER
  ══════════════════════════════ */
    .section-header {
      text-align: center;
      margin-bottom: 48px;
      position: relative;
      animation: fadeSlideUp 0.8s ease both;
      /* extra side padding so absolute cards don't overlap text on narrow screens */
      padding: 0 180px;
    }

    .section-header .eyebrow {
      font-family: 'Dancing Script', cursive;
      font-size: 1.1rem;
      color: var(--rose);
      margin-bottom: 4px;
    }
/* 
    .section-header h2 {
      font-family: 'Playfair Display', serif;
      font-size: clamp(1.9rem, 4.5vw, 2.8rem);
      font-weight: 600;
      color: var(--deep-brown);
      line-height: 1.2;
      margin-bottom: 8px;
    } */

    .heart-divider {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      margin: 8px 0;
    }

    .heart-divider::before,
    .heart-divider::after {
      content: '';
      flex: 1;
      max-width: 100px;
      height: 1px;
      background: var(--kraft);
    }

    .heart-divider span {
      color: var(--rose);
      font-size: 0.9rem;
    }

    .section-header .tagline {
      font-family: 'Playfair Display', serif;
      font-style: italic;
      font-size: clamp(0.95rem, 2.5vw, 1.15rem);
      color: var(--warm-brown);
      margin-bottom: 6px;
    }

    .section-header .subtext {
      font-size: 0.88rem;
      color: var(--text-muted);
      max-width: 420px;
      margin: 0 auto;
      line-height: 1.6;
    }

    /* ── LEFT DECO CARD (header) ── */
    /* Replace <img src> with your actual image path */
    .header-deco-left {
      position: absolute;
      top: 30%;
      left: -10px;
      transform: translateY(-50%) rotate(-12deg);
      width: 260px;
      /* adjust to your image size */
      animation: floatYLeft 5s ease-in-out infinite;
    }

    .header-deco-left img {
      width: 100%;
      height: auto;
      display: block;
    }

    /* ── RIGHT DECO CARD (header) ── */
    .header-deco-right {
      position: absolute;
      top: 30%;
      right: -10px;
      transform: translateY(-50%) rotate(12deg);
      width: 320px;
      /* adjust to your image size */
      animation: floatYRight 5s ease-in-out infinite;
      animation-delay: 0.6s;
    }

    .header-deco-right img {
      width: 100%;
      height: auto;
      display: block;
    }

    /* ══════════════════════════════
     FEATURED BLOCK
  ══════════════════════════════ */
    /* Outer wrapper carries the background image you want behind the whole block */
    .featured-outer {
      position: relative;
      margin-bottom: 40px;
      border-radius: 4px;
      overflow: hidden;
      animation: fadeSlideUp 0.9s ease 0.2s both;
    }

    /* ── BACKGROUND IMAGE behind the entire featured block ──
     Set your bg image here: */
    .featured-outer::before {
      content: '';
      position: absolute;
      inset: 0;
      background: url('../images/award-background.png') center/cover no-repeat;
      /* background: var(--cream-dark); */
      /* opacity: 0.6; */
      z-index: 0;
    }

    .featured-block {
      position: relative;
      z-index: 1;
      display: grid;
      grid-template-columns: 1.05fr 1fr;
      gap: 0;
      align-items: stretch;
    }

    /* LEFT: video */
    .featured-video-wrap {
      position: relative;
      background: #111;
      /* white border gives a photo-frame feel */
      border: 6px solid #fff;
      box-shadow: 4px 4px 16px rgba(0, 0, 0, 0.18);
      margin: 28px 0 28px 28px;
      align-self: center;
    }

    .featured-video-wrap iframe {
      width: 100%;
      aspect-ratio: 16/9;
      border: none;
      display: block;
    }

    /* RIGHT: text panel — transparent so bg shows through */
    .featured-info {
      padding: 36px 32px 36px 28px;
      display: flex;
      flex-direction: column;
      justify-content: center;
      background: transparent;
    }

    .featured-badge {
      font-size: 0.68rem;
      font-weight: 700;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 10px;
      display: flex;
      align-items: center;
      gap: 6px;
    }

    .featured-badge .badge-star {
      font-size: 0.85rem;
      display: inline-block;
      animation: sway 3s ease-in-out infinite;
    }

    .featured-info h3 {
      font-family: 'Playfair Display', serif;
      font-size: clamp(1.3rem, 2.8vw, 1.9rem);
      font-weight: 600;
      color: var(--deep-brown);
      line-height: 1.25;
      margin-bottom: 16px;
    }

    .featured-info ul {
      list-style: none;
      margin-bottom: 20px;
    }

    .featured-info ul li {
      font-size: 0.9rem;
      color: var(--text-main);
      padding: 6px 0;
      border-bottom: 1px solid rgba(212, 196, 160, 0.5);
      display: flex;
      align-items: flex-start;
      gap: 9px;
      line-height: 1.5;
    }

    .featured-info ul li::before {
      content: '♥';
      color: var(--rose);
      font-size: 0.62rem;
      margin-top: 5px;
      flex-shrink: 0;
    }

    .btn-watch {
      display: inline-flex;
      align-items: center;
      gap: 9px;
      background: var(--rose);
      color: #fff;
      border: none;
      border-radius: 2px;
      padding: 11px 22px;
      font-family: 'Lato', sans-serif;
      font-size: 0.84rem;
      font-weight: 700;
      letter-spacing: 0.06em;
      cursor: pointer;
      text-decoration: none;
      transition: background 0.2s, transform 0.2s;
      align-self: flex-start;
    }

    .btn-watch:hover {
      background: var(--rose-dark);
      transform: translateY(-2px);
    }

    .btn-watch .play-icon {
      width: 0;
      height: 0;
      border-top: 5px solid transparent;
      border-bottom: 5px solid transparent;
      border-left: 9px solid #fff;
    }

    /* ══════════════════════════════
     TIMELINE
  ══════════════════════════════ */
    @keyframes swayTag {

      0%,
      100% {
        transform: rotate(-2.5deg);
      }

      50% {
        transform: rotate(2.5deg);
      }
    }

    .timeline-wrap {
      position: relative;
      margin-bottom: 48px;
      animation: fadeSlideUp 0.8s ease 0.35s both;
    }

    /* SKY band */
    .timeline-sky {
      position: relative;
      width: 100%;
      /* background: url('../images/timeline-background.png') center top / 100% auto no-repeat; */
      padding: 14px 24px 40px;
      overflow: hidden;

    }




    /* Twine rope */
    .timeline-inner {
      display: flex;
      align-items: flex-start;
      min-width: 600px;
      position: relative;
      padding-top: 0;
    }

    .timeline-inner::before {
      content: '';
      position: absolute;
      top: 12px;
      left: 0;
      right: 0;
      height: 2.5px;
      background: repeating-linear-gradient(90deg,
          #7A5C1E 0px, #A0802A 5px, #7A5C1E 10px);
      opacity: 0.55;
      border-radius: 2px;
    }

    .tl-item {
      flex: 1;
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
      padding: 0 3px;
      position: relative;
    }

    /* string hanging down from rope */
    .tl-item::before {
      content: '';
      display: block;
      width: 1.5px;
      height: 20px;
      margin-top: 12px;
      background: repeating-linear-gradient(180deg,
          #8B6914 0px, #BFA050 4px, #8B6914 8px);
      opacity: 0.5;
      flex-shrink: 0;
    }

    /* hanging tag card */
    .tl-tag {
      background: linear-gradient(160deg, #FDFAF2 0%, #F5EDD8 100%);
      border: 1px solid #C8A96E;
      border-radius: 2px 2px 3px 3px;
      padding: 9px 7px 8px;
      position: relative;
      box-shadow: 1px 3px 6px rgba(0, 0, 0, 0.14), inset 0 1px 0 rgba(255, 255, 255, 0.6);
      width: 90%;
      transform-origin: top center;
      animation: swayTag 5s ease-in-out infinite;
    }

    /* hole at top */
    .tl-tag::before {
      content: '';
      position: absolute;
      top: -5px;
      left: 50%;
      transform: translateX(-50%);
      width: 7px;
      height: 7px;
      border-radius: 50%;
      background: #CBE0EC;
      border: 1.5px solid #C8A96E;
    }

    /* subtle texture line on tag */
    .tl-tag::after {
      content: '';
      position: absolute;
      bottom: 6px;
      left: 8px;
      right: 8px;
      height: 1px;
      background: rgba(200, 169, 110, 0.3);
    }

    .tl-year {
      font-family: 'Playfair Display', serif;
      font-size: 1rem;
      font-weight: 600;
      color: var(--deep-brown);
      margin-bottom: 3px;
      display: block;
    }

    .tl-label {
      font-family: 'Dancing Script', cursive;
      font-size: 1.32rem;
      color: var(--text-muted);
      line-height: 1.35;
      display: block;
      cursor:pointer;
    }

    .tl-item:nth-child(1) .tl-tag {
      animation-delay: 0s;
    }

    .tl-item:nth-child(2) .tl-tag {
      animation-delay: 0.5s;
    }

    .tl-item:nth-child(3) .tl-tag {
      animation-delay: 1.0s;
    }

    .tl-item:nth-child(4) .tl-tag {
      animation-delay: 1.5s;
    }

    .tl-item:nth-child(5) .tl-tag {
      animation-delay: 2.0s;
    }

    .tl-item:nth-child(6) .tl-tag {
      animation-delay: 2.5s;
    }

    .tl-item:nth-child(7) .tl-tag {
      animation-delay: 3.0s;
    }

    /* EARTH band below sky */

    /* ══════════════════════════════
     AWARDS GRID
  ══════════════════════════════ */
    .awards-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 20px;
      margin-bottom: 40px;
    }

    .award-card {
      background: #fff;
      border: 1.5px solid var(--kraft);
      border-radius: 2px;
      box-shadow: 3px 3px 0 var(--kraft);
      overflow: hidden;
      display: flex;
      flex-direction: column;
      transition: transform 0.25s, box-shadow 0.25s;
      position: relative;
      animation: fadeSlideUp 0.7s ease both;
    }

    .award-card:nth-child(1) {
      animation-delay: 0.1s;
    }

    .award-card:nth-child(2) {
      animation-delay: 0.2s;
    }

    .award-card:nth-child(3) {
      animation-delay: 0.3s;
    }

    .award-card:nth-child(4) {
      animation-delay: 0.4s;
    }

    .award-card:nth-child(5) {
      animation-delay: 0.5s;
    }

    .award-card:nth-child(6) {
      animation-delay: 0.6s;
    }

    .award-card:nth-child(7) {
      animation-delay: 0.7s;
    }

    .award-card:hover {
      transform: translateY(-4px);
      box-shadow: 5px 8px 0 var(--kraft);
    }


    .card-video {
      position: relative;
      aspect-ratio: 16/9;
      background: #111;
      overflow: hidden;
    }

    .card-video iframe {
      width: 100%;
      height: 100%;
      border: none;
      display: block;
    }

    .card-dot-badge {
      position: absolute;
      top: 8px;
      left: 8px;
      width: 30px;
      height: 30px;
      border-radius: 50%;
      z-index: 1;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 0.85rem;
    }

    .badge-gold {
      background: #FDF3DC;
    }

    .badge-rose {
      background: #FAECEB;
    }

    .badge-blue {
      background: #E8EEF8;
    }

    .badge-teal {
      background: #E3F2EF;
    }

    .badge-sage {
      background: #E8EFE5;
    }

    .card-body {
      padding: 14px 13px 13px;
      flex: 1;
      display: flex;
      flex-direction: column;
    }

    .card-by {
      font-size: 0.72rem;
      color: var(--rose);
      font-style: italic;
      margin-bottom: 6px;
    }
    .card-watch-btn .play-icon {
      width: 0;
      height: 0;
      border-top: 4px solid transparent;
      border-bottom: 4px solid transparent;
      border-left: 7px solid currentColor;
    }

    /* Simple version — ek image, optional play button */

.card-media {
  position: relative;
  aspect-ratio:16/15;
  background: #EFE6D2;
  overflow: hidden;
  cursor: default;
}

.card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.card-media[onclick] {
  cursor: pointer;
}

.card-media iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

.play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

.play-btn::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 53%;
  transform: translate(-50%, -50%);
  width: 0;
  height: 0;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  border-left: 13px solid var(--rose);
}

.card-title {
  font-family: 'Playfair Display', serif;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--deep-brown);
  margin-bottom: 1px;
  margin-top: 15px;
}

.card-title1 {
  font-family: 'Playfair Display', serif;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--deep-brown);
  margin-bottom: 1px;
  /*margin-top: 15px;*/
}

.card-desc {
  font-size: 0.76rem;
  color: var(--text-muted);
  line-height: 1.5;
  flex: 1;
  margin-bottom: 11px;
}

.card-link {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--rose);
  text-decoration: none;
}

.view-more-wrap {
  display: flex;
  justify-content: center;
  margin: -8px 0 40px;
}

.btn-view-more {
  background: #fff;
  border: 1.5px solid var(--kraft);
  color: var(--deep-brown);
  font-weight: 700;
  padding: 10px 26px;
  cursor: pointer;
  /* font-family: 'Playfair Display', serif; */

}

   

   
    /* ══════════════════════════════
     RESPONSIVE
  ══════════════════════════════ */
    @media (max-width: 960px) {
      .section-header {
        padding: 0 140px;
      }

      .header-deco-left,
      .header-deco-right {
        width: 130px;
      }
    }

    @media (max-width: 768px) {
      .section-header {
        padding: 0 20px;
      }

      .header-deco-left,
      .header-deco-right {
        display: none;
      }

      .featured-block {
        grid-template-columns: 1fr;
      }

      .featured-video-wrap {
        margin: 20px 20px 0;
      }

      .featured-info {
        padding: 20px 20px 28px;
      }

      .awards-grid {
        grid-template-columns: repeat(2, 1fr);
      }
    }

    @media (max-width: 480px) {
      .awards-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
      }
      .journey-title{
          font-size:1.4rem;
      } 

      .card-body {
        padding: 10px 9px;
      }

      .card-title1 {
        font-size: 0.82rem;
      }
      .card-title1 {
        font-size: 0.82rem;
      }

      .card-desc {
        font-size: 0.72rem;
      }
    }

    @media (max-width: 360px) {
      .awards-grid {
        grid-template-columns: 1fr;
      }
       .timeline-sky{
        overflow-x:auto;
      }
    }


    .scrap-section {
      width: 100%;
      /* padding:60px 0 70px; */
      overflow: hidden;
      position: relative;
    }

    .scrap-header {
      text-align: center;
      /* margin-bottom:40px; */
      position: relative;
      z-index: 2;
      padding: 0 20px;
    }

    .scrap-eyebrow {
      font-family: 'Playfair Display', Georgia, sans-serif;
      font-size: 18px;
      color: #8b9470;
      margin-bottom: 8px;
    }

    .scrap-title {
      font-family: 'Playfair Display', Georgia, sans-serif;
      font-size: 44px;
      color: #3d3529;
      font-weight: 700;
    }

    .scrap-line {
      width: 120px;
      height: 1px;
      background: linear-gradient(to right, transparent, #b89e7a, transparent);
      margin: 12px auto 0;
    }

    .scrap-track-wrap {
      width: 100%;
      overflow-x: auto;
      overflow-y: visible;
      padding: 20px 60px 0px;
      cursor: grab;
      -webkit-overflow-scrolling: touch;
      scrollbar-width: none;
    }

    .scrap-track-wrap::-webkit-scrollbar {
      display: none;
    }

    .scrap-track-wrap.grabbing {
      cursor: grabbing;
    }

    .scrap-track {
      display: flex;
      align-items: flex-end;
      gap: 0;
      width: max-content;
      min-width: 100%;
      padding: 20px 20px 20px;
      position: relative;
    }

    /* Vine SVG connector sits behind cards */
    .vine-connector {
      position: absolute;
      bottom: 54px;
      left: 0;
      right: 0;
      pointer-events: none;
      z-index: 0;
      overflow: visible;
    }

    .note-wrap {
      position: relative;
      flex-shrink: 0;
      width: 300px;
      height: 220px;
      perspective: 900px;
      margin: 0 -3px;
      z-index: 1;
    }

    .note-inner {
      width: 100%;
      height: 100%;
      position: relative;
      transform-style: preserve-3d;
      transition: transform 0.55s cubic-bezier(0.4, 0, 0.2, 1);
      cursor: pointer;
    }

    .note-wrap.flipped .note-inner {
      transform: rotateY(180deg);
    }

    .note-wrap.flipped {
      z-index: 20;
    }

    .note-front,
    .note-back {
      position: absolute;
      inset: 0;
      backface-visibility: hidden;
      -webkit-backface-visibility: hidden;
      border-radius: 2px;
      overflow: hidden;
    }

    .note-back {
      transform: rotateY(180deg);
    }

    .note-bg {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center center;
      border-radius: 2px;
      /* No filter clipping — full image visible */
    }

    .note-content {
      position: absolute;
      inset: 0;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      padding: 24px 14px 16px;
      gap: 10px;
      /* background:rgba(255,252,246,0.32); */
    }

    /* Base back styling stays the same, just remove the shared background */
    .note-back-content {
      position: absolute;
      inset: 0;
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      justify-content: center;
      padding: 22px 16px 20px;
    }

    /* Per-card back colors — matched to each front image's vibe */
    .back-1 .note-back-content {
      background: rgba(255, 232, 193, 0.7);
    }

    /* Speaker - warm beige */
    .back-2 .note-back-content {
      background: rgba(245, 191, 191, 0.6);
    }

    /* Expressive Art - blush pink */
    .back-3 .note-back-content {
      background: rgba(170, 191, 146, 0.6);
    }

    /* Sustainable Gifting - sage green */
    .back-4 .note-back-content {
      background: rgba(216, 208, 180, 0.65);
    }

    /* Waste-to-Wonder - earthy tan */
    .back-5 .note-back-content {
      background: rgba(142, 193, 142, 0.6);
    }

    /* Children's - soft green */
    .back-6 .note-back-content {
      background: rgba(200, 178, 226, 0.6);
    }

    /* Corporate/CSR - lavender */
    .back-7 .note-back-content {
      background: rgba(190, 145, 160, 0.6);
    }

    /* CSR Partnerships - dusty rose */

    .note-icon svg {
      width: 44px;
      height: 44px;
      fill: none;
      stroke: #3a3020;
      stroke-width: 1.6;
      stroke-linecap: round;
      stroke-linejoin: round;
    }

    .note-label {
      font-family: 'Dancing Script', cursive;
      font-size: 20px;
      font-weight: 700;
      color: #3a3020;
      text-align: center;
      line-height: 1.35;
      /* text-shadow:0 1px 3px rgba(255,250,240,0.9),0 0 8px rgba(255,250,240,0.7); */
    }

    .note-hint {
      font-size: 9px;
      color: #2f1e08;
      letter-spacing: 0.07em;
      text-transform: uppercase;
      /* opacity: 0.8; */
      border:1px solid #2f1e08;
      padding: 4px 4px;
    }

    .back-title {
      font-family: 'Dancing Script', cursive;
      font-size: 18px;
      font-weight: 700;
      color: #3a3020;
      margin-bottom: 5px;
      line-height: 1.3;
      text-shadow: 0 1px 3px rgba(255, 250, 240, 0.9);
    }

    .back-rule {
      width: 85%;
      height: 1px;
      background: rgba(160, 130, 90, 0.4);
      margin: 4px 0 8px;
    }

    .back-desc {
      font-family: 'Lato', sans-serif;
      font-size: 13.5px;
      color: #4a3a28;
      line-height: 1.65;
      font-weight: 400;
    }

    .back-close {
      position: absolute;
      bottom: 11px;
      right: 13px;
      font-size: 8.5px;
      color: #8a7858;
      letter-spacing: 0.05em;
      text-transform: uppercase;
      opacity: 0.85;
    }


    .pin-dot {
      position: absolute;
      top: -9px;
      left: 50%;
      transform: translateX(-50%);
      z-index: 6;
      width: 15px;
      height: 15px;
      border-radius: 50%;
      border: 1.5px solid #8a7050;
      box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
    }


    /* ROTATION OFFSETS */
    .r-1 {
      transform: rotate(-4deg);
      margin-bottom: 32px;
    }

    .r-2 {
      transform: rotate(2.5deg);
      margin-bottom: 12px;
    }

    .r-3 {
      transform: rotate(-2.5deg);
      margin-bottom: 22px;
    }

    .r-4 {
      transform: rotate(3.5deg);
      margin-bottom: 16px;
    }

    .r-5 {
      transform: rotate(-3deg);
      margin-bottom: 26px;
    }

    .r-6 {
      transform: rotate(1.5deg);
      margin-bottom: 8px;
    }

    .r-7 {
      transform: rotate(-2.5deg);
      margin-bottom: 20px;
    }

    .r-8 {
      transform: rotate(2deg);
      margin-bottom: 14px;
    }

    /* CONTINUOUS FLOAT ANIMATIONS — each card gets unique timing */
    @keyframes float1 {

      0%,
      100% {
        transform: rotate(-4deg) translateY(0px);
      }

      50% {
        transform: rotate(-4deg) translateY(-8px);
      }
    }

    @keyframes float2 {

      0%,
      100% {
        transform: rotate(2.5deg) translateY(0px);
      }

      50% {
        transform: rotate(2.5deg) translateY(-10px);
      }
    }

    @keyframes float3 {

      0%,
      100% {
        transform: rotate(-2.5deg) translateY(0px);
      }

      50% {
        transform: rotate(-2.5deg) translateY(-7px);
      }
    }

    @keyframes float4 {

      0%,
      100% {
        transform: rotate(3.5deg) translateY(0px);
      }

      50% {
        transform: rotate(3.5deg) translateY(-9px);
      }
    }

    @keyframes float5 {

      0%,
      100% {
        transform: rotate(-3deg) translateY(0px);
      }

      50% {
        transform: rotate(-3deg) translateY(-11px);
      }
    }

    @keyframes float6 {

      0%,
      100% {
        transform: rotate(1.5deg) translateY(0px);
      }

      50% {
        transform: rotate(1.5deg) translateY(-8px);
      }
    }

    @keyframes float7 {

      0%,
      100% {
        transform: rotate(-2.5deg) translateY(0px);
      }

      50% {
        transform: rotate(-2.5deg) translateY(-9px);
      }
    }

    .note-wrap.r-1 {
      animation: float1 4.2s ease-in-out infinite;
    }

    .note-wrap.r-2 {
      animation: float2 3.8s ease-in-out infinite;
      animation-delay: 0.6s;
    }

    .note-wrap.r-3 {
      animation: float3 4.5s ease-in-out infinite;
      animation-delay: 1.1s;
    }

    .note-wrap.r-4 {
      animation: float4 3.6s ease-in-out infinite;
      animation-delay: 0.3s;
    }

    .note-wrap.r-5 {
      animation: float5 4.8s ease-in-out infinite;
      animation-delay: 1.5s;
    }

    .note-wrap.r-6 {
      animation: float6 4.0s ease-in-out infinite;
      animation-delay: 0.9s;
    }

    .note-wrap.r-7 {
      animation: float7 4.3s ease-in-out infinite;
      animation-delay: 0.4s;
    }

    /* Pause animation on hover/flip for comfortable reading */
    .note-wrap:hover,
    .note-wrap.flipped {
      animation-play-state: paused;
    }




    /* Vine draw animation */
    @keyframes vineDraw {
      from {
        stroke-dashoffset: 2000;
      }

      to {
        stroke-dashoffset: 0;
      }
    }

    .vine-path {
      stroke-dasharray: 2000;
      stroke-dashoffset: 0;
      animation: vineDraw 2.5s ease-out forwards;
    }

    

    /* Leaf pulse on vine */
    @keyframes leafPulse {

      0%,
      100% {
        opacity: 0.55;
        transform: scale(1);
      }

      50% {
        opacity: 0.8;
        transform: scale(1.08);
      }
    }

    /* CTA */
    .cta-wrap {
      text-align: center;
      margin-top: 14px;
      position: relative;
      z-index: 3;
      padding: 0 20px;
    }

    .cta-btn {
      font-family: 'Dancing Script', cursive;
      font-size: 21px;
      color: #5c4a32;
      border: 1px solid #b89e7a;
      padding: 14px 50px;
      background: rgba(250, 245, 235, 0.92);
      cursor: pointer;
      transition: background 0.3s, transform 0.2s;
      border-radius: 1px;
      text-decoration: none;
      display: inline-block;
      letter-spacing: 0.02em;
    }

    .cta-btn:hover {
      background: #ede4d3;
      transform: translateY(-1px);
    }


    .journey-section {
      position: relative;
      padding: 50px 40px 0px;
      text-align: center;
      overflow: hidden;
    }


    .journey-header {
      margin-bottom: 50px;
      position: relative;
      z-index: 1;
    }

    .journey-title {
           font-family: 'Cinzel', serif;
      font-size: clamp(1.9rem, 3vw, 2.9rem);
      font-weight: 700;
      color: #3a2c1e;
      line-height: 1.1;
      margin-bottom: 12px;
      text-align: center;
      text-transform: uppercase;
    }

    .journey-divider {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 12px;
      margin-top: 14px;
    }

    .divider-line {
      width: 60px;
      height: 1px;
      background: #b89e7a;
    }

    .divider-heart {
      color: #b89e7a;
      font-size: 14px;
      display: inline-block;
      animation: heartBeat 2.4s ease-in-out infinite;
    }

    @keyframes heartBeat {

      0%,
      100% {
        transform: scale(1);
      }

      50% {
        transform: scale(1.25);
      }
    }

    .journey-track {
      display: flex;
      align-items: center;
      justify-content: center;
      flex-wrap: wrap;
      gap: 0;
      max-width: 1200px;
      margin: 0 auto;
    }

    .journey-step {
      display: flex;
      flex-direction: column;
      align-items: center;
      width: 150px;

      /* Hidden state for scroll-reveal */
      opacity: 0;
      transform: translateY(30px);
      transition: opacity 0.7s ease, transform 0.7s ease;
    }

    .journey-step.in-view {
      opacity: 1;
      transform: translateY(0);
    }

    /* Stagger each step's reveal */
    .journey-step:nth-child(1) {
      transition-delay: 0s;
    }

    .journey-step:nth-child(3) {
      transition-delay: 0.12s;
    }

    .journey-step:nth-child(5) {
      transition-delay: 0.24s;
    }

    .journey-step:nth-child(7) {
      transition-delay: 0.36s;
    }

    .journey-step:nth-child(9) {
      transition-delay: 0.48s;
    }

    .journey-step:nth-child(11) {
      transition-delay: 0.6s;
    }

    .journey-step img {
      width: 160px;
      height: 160px;
      object-fit: cover;
      border-radius: 4px;
      margin-bottom: 14px;
      transition: transform 0.35s ease, box-shadow 0.35s ease;
    }

    .journey-step img:hover {
      transform: translateY(-6px) scale(1.05);
    }


    .journey-label {
      font-family: 'Lora', serif;
      font-size: 17px;
      font-weight: 700;
      color: #4a3a28;
      text-align: center;
      letter-spacing: 0.02em;
      font-style:italic;
    }

    .journey-arrow {
      font-size: 20px;
      color: #a89060;
      margin: 0 14px 30px;
      flex-shrink: 0;
      display: inline-block;

      /* Hidden state for scroll-reveal */
      opacity: 0;
      transition: opacity 0.6s ease;
    }

    .journey-arrow.in-view {
      opacity: 1;
      animation: arrowMove 1.8s ease-in-out infinite;
    }

    /* Stagger arrow reveals to match steps */
    .journey-arrow:nth-child(2) {
      transition-delay: 0.06s;
    }

    .journey-arrow:nth-child(4) {
      transition-delay: 0.18s;
    }

    .journey-arrow:nth-child(6) {
      transition-delay: 0.3s;
    }

    .journey-arrow:nth-child(8) {
      transition-delay: 0.42s;
    }

    .journey-arrow:nth-child(10) {
      transition-delay: 0.54s;
    }

    @keyframes arrowMove {

      0%,
      100% {
        transform: translateX(0);
        opacity: 0.6;
      }

      50% {
        transform: translateX(6px);
        opacity: 1;
      }
    }

    /* Responsive: stack on small screens */
    @media (max-width: 768px) {
      .journey-track {
        flex-direction: column;
        gap: 24px;
      }
       .timeline-sky{
        overflow-x:auto;
      }

      .journey-arrow {
        transform: rotate(90deg);
        margin: 0;
      }

      .tl-label {
        font-size: 0.9rem;
      }

      @keyframes arrowMove {

        0%,
        100% {
          transform: rotate(90deg) translateX(0);
          opacity: 0.6;
        }

        50% {
          transform: rotate(90deg) translateX(6px);
          opacity: 1;
        }
      }
    }

:root {
    --text-color: #f0eadd;
    --highlight-color: #d19a8b;
    --box-bg: #f9f5ed;
    --box-text: #4a4e3b;
    --font-sans: 'Montserrat', sans-serif;
    --font-serif: 'Cormorant Garamond', serif;
    /* --font-script: 'Great Vibes', cursive; */
}

/* --- Main Footer Container --- */
.custom-footer {
    /* REPLACE THIS URL WITH YOUR ACTUAL BACKGROUND IMAGE PATH */
    background-image: url('../images/footer-background.png'); 
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
    color: var(--text-color);
    font-family: var(--font-sans);
    position: relative;
    width: 100%;
}

/* Padding to avoid the decorative edges of your background image */
.footer-overlay {
    padding: 120px 8% 20px 8%; 
    max-width: 1400px;
    margin: 0 auto;
}

/* --- Top Main Columns --- */
.footer-main {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 20px;
}

.footer-col {
    flex: 1;
}

/* --- Column 1: Brand --- */
.brand-col {
    text-align: center;
    max-width: 350px;
}

.logo-circle {
    width: 60px;
    height: 60px;
    border: 1px solid var(--text-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px auto;
    font-family: var(--font-serif);
    font-size: 28px;
    position: relative;
}

/* Tiny leaves around logo */
.logo-circle::after {
    content: "\f06c"; /* fa-leaf */
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    bottom: -5px;
    right: -10px;
    font-size: 14px;
}

.signature-text {
    font-family: var(--font-script);
    font-size: 42px;
    font-weight: 400;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.signature-text i {
    font-size: 20px;
    color: var(--highlight-color);
}

.sub-heading {
    font-size: 12px;
    letter-spacing: 3px;
    font-weight: 500;
    margin-bottom: 15px;
}

.sub-heading i {
    color: var(--highlight-color);
    font-size: 12px;
}

.separator-line {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 20px;
}

.separator-line span {
    width: 30px;
    height: 1px;
    background-color: var(--highlight-color);
}

.separator-line i {
    color: var(--highlight-color);
    font-size: 12px;
}

.brand-desc {
    font-family: var(--font-sans);
    font-size: 14px;
    line-height: 1.8;
    font-weight: 300;
}

.brand-desc i {
    color: var(--highlight-color);
}

/* --- Column 2: Quick Links --- */
.links-col {
    border-left: 1px solid rgba(240, 234, 221, 0.2);
    border-right: 1px solid rgba(240, 234, 221, 0.2);
    padding: 0 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.col-title {
    font-size: 13px;
    letter-spacing: 3px;
    font-weight: 500;
    margin-bottom: 30px;
    text-align: center;
}

.quick-links {
    list-style: none;
    width: 100%;
    max-width: 200px;
}

.quick-links li {
    margin-bottom: 15px;
}

.quick-links a {
    color: var(--text-color);
    text-decoration: none;
    font-size: 14px;
    font-weight: 300;
    display: flex;
    align-items: center;
    gap: 15px;
    transition: color 0.3s ease;
}

.quick-links a i {
    color: var(--highlight-color);
    width: 15px;
    text-align: center;
}

.quick-links a:hover {
    color: var(--highlight-color);
}

/* --- Column 3: Stay Connected --- */
.connect-col {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.social-icons {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
}

.social-icons a {

width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
}



/* Newsletter Paper Box */
.newsletter-box {
    /* background-color: var(--box-bg); */
    color: var(--box-text);
    padding: 30px 25px;
    text-align: center;
    position: relative;
    width: 100%;
    max-width: 320px;
    box-shadow: 2px 4px 15px rgba(0,0,0,0.2);
    /* Creates the slightly torn paper edge look */
    background-image: url("../images/card-design.png");
     background-repeat: no-repeat;
    background-size: 100% 100%;
    pointer-events: none;
    border-radius: 2px 2px 5px 2px;
}

.paperclip-icon {
    position: absolute;
    top: -10px;
    right: 20px;
    font-size: 24px;
    color: #a89486;
    transform: rotate(15deg);
}

.envelope-icon {
    font-size: 24px;
    color: var(--highlight-color);
    margin-bottom: 10px;
}

.newsletter-box h5 {
    font-size: 13px;
    letter-spacing: 2px;
    font-weight: 600;
    margin-bottom: 10px;
}

.newsletter-box p {
    font-size: 12px;
    line-height: 1.6;
    margin-bottom: 20px;
    font-family: var(--font-serif);
}

.subscribe-form {
    display: flex;
    background: #fff;
    border-radius: 3px;
    overflow: hidden;
    box-shadow: inset 0 1px 3px rgba(0,0,0,0.1);
}

.subscribe-form input {
    flex: 1;
    border: none;
    padding: 10px 15px;
    font-size: 12px;
    font-family: var(--font-sans);
    outline: none;
    background: transparent;
}

.subscribe-form button {
    background-color: var(--highlight-color);
    border: none;
    color: white;
    padding: 0 15px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.subscribe-form button:hover {
    background-color: #b58071;
}

/* --- Features Middle Row --- */
.footer-features {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(240, 234, 221, 0.2);
    border-bottom: 1px solid rgba(240, 234, 221, 0.2);
    padding: 20px 60px;
    /* margin-bottom: 20px; */
    position: relative;
}

/* Small heart icon in the middle of the border */
.footer-features::before {
    content: "\f004"; /* fa-heart */
    font-family: "Font Awesome 6 Free";
    font-weight: 400;
    position: absolute;
    top: -9px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #4b543d; /* match background near this area to mask the line */
    padding: 0 10px;
    color: var(--highlight-color);
    font-size: 14px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.feature-item i {
    font-size: 28px;
    color: var(--highlight-color);
}

.feature-text h6 {
    font-size: 12px;
    letter-spacing: 1.5px;
    font-weight: 500;
    margin-bottom: 3px;
}

.feature-text p {
    font-size: 11px;
    font-weight: 300;
    line-height: 1.4;
    color: rgba(240, 234, 221, 0.8);
}

/* --- Bottom Copyright Bar --- */
.footer-bottom {
    text-align: center;
    padding-top: 15px;
}

.footer-bottom p , a{
    font-size: 12px;
    font-weight: 300;
    color: rgba(240, 234, 221, 0.9);
}

.footer-bottom .divider {
    margin: 0 10px;
    color: rgba(240, 234, 221, 0.5);
}

.footer-bottom i {
    color: var(--highlight-color);
}

/* --- Responsive Adjustments --- */
@media (max-width: 992px) {
    .footer-main {
        flex-direction: column;
        align-items: center;
        gap: 50px;
    }
    
    .links-col {
        border-left: none;
        border-right: none;
        border-top: 1px solid rgba(240, 234, 221, 0.2);
        border-bottom: 1px solid rgba(240, 234, 221, 0.2);
        padding: 40px 0;
        width: 100%;
    }

    .footer-features {
        flex-wrap: wrap;
        gap: 30px;
        justify-content: center;
    }
    
    .feature-item {
        width: 45%;
        justify-content: center;
    }
}

@media (max-width: 600px) {
    .feature-item {
        width: 100%;
        justify-content: flex-start;
        padding-left: 10%;
    }
    
    .footer-overlay {
        padding-left: 5%;
        padding-right: 5%;
    }
}

    .pinky-cards-section {
      max-width: 1400px;
      margin: 0 auto;
      padding: 30px 28px;
    }

    /* ══ CARDS ROW — 4 horizontal cards ══ */
    .cards-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 16px;
    }

    .card-item {
      position: relative;
      border-radius: 10px;
      overflow: hidden;
      cursor: pointer;
      width: 100%;
      transition: transform 0.25s ease;
      user-select: none;
    }

    .card-item:hover {
      transform: translateY(-3px);
    }

    /* Card needs relative positioning + room above for the ribbon to hang from */
.card-item {
  position: relative;
  overflow: visible;
  transition: transform 0.3s ease;
}

/* Lift effect on active card */
.card-item.active {
  transform: translateY(-8px);
  z-index: 3;
}

/* Ribbon tag — hidden by default, hangs from top */
.card-item::before {
  content: '';
  position: absolute;
  top: -2px;
  left: 28px;
  width: 26px;
  height: 0;
  z-index: -1;
  clip-path: polygon(0 0, 100% 0, 100% 78%, 50% 100%, 0 78%);
  transition: height 0.35s ease, top 0.35s ease;
  pointer-events: none;
}

.card-item.active::before {
  height: 38px;
  top: -10px;
  z-index: 1;
}

/* Color-matched ribbons per card */
.card-pink::before   { background: #c75c7e; }
.card-olive::before  { background: #7f8c5e; }
.card-purple::before { background: #8a6fb0; }
.card-gray::before   { background: #8a8378; }

/* Subtle shadow under lifted card so it doesn't look like it's floating randomly */
.card-item.active {
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.12);
}

    /* The actual card image fills the whole card */
    .card-bg-img {
      width: 100%;
      height: auto;
      display: block;
    }

    /* Text sits on the RIGHT half — where the parchment is empty */
    .card-text {
      position: absolute;
      top: 0;
      right: 0;
      width: 60%;
      height: 100%;
      display: flex;
      flex-direction: column;
      justify-content: center;
      padding: 14px 18px 14px 8px;
      pointer-events: none;
    }

    .card-title {
      font-family: 'Playfair Display',sans-serif;
      font-weight: 900;
      font-size: clamp(1.2rem, 1.4vw, 1.0rem);
      line-height: 1.2;
      margin-bottom: 7px;
      letter-spacing: 0.01em;
    }

    /* Per-card title colours matching original */
    .card-pink .card-title {
      color: #9b3a5a;
    }

    .card-olive .card-title {
      color: #5a6e3a;
    }

    .card-purple .card-title {
      color: #5a3a7a;
    }

    .card-gray .card-title {
      color: #5a4a2a;
    }

    .card-desc {
      font-family: 'Lora', Georgia, serif;
      font-size: clamp(0.72rem, 0.8vw, 0.88rem);
      line-height: 1.3;
      color: #5a4838;
      margin-bottom: 10px;
    }

    .card-link {
      font-family: 'Lato', sans-serif;
      font-style: italic;
      font-size: clamp(0.82rem, 1.1vw, 0.76rem);
      pointer-events: all;
      display: inline-block;
      color: #9b3a5a;
      text-decoration: none;
      border-bottom: 1.5px solid currentColor;
      padding-bottom: 1px;
      transition: opacity 0.2s;
      width: fit-content;
      font-weight: 600;
    }

    .card-olive .card-link {
      color: #5a6e3a;
    }

    .card-purple .card-link {
      color: #5a3a7a;
    }

    .card-gray .card-link {
      color: #7a5c2e;
    }

    .card-link:hover {
      opacity: 0.7;
    }
    
    
    @media (max-width: 1024px) {
  .cards-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    padding: 16px 5vw;
  }
  .card-title{
      font-size: clamp(2rem, 1.4vw, 1.0rem);
  }
  .card-desc{
          font-size: clamp(1.3rem, 0.8vw, 0.88rem);
  }
  .card-link{
      font-size: 1.4rem;
  }
}

@media (max-width: 600px) {
  .cards-grid {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 14px 6vw;
  }
}

    /* ══ GAP ══ */
    .gap-row {
      height: 20px;
    }

    /* ══ PANEL + ARROWS ══ */
    .panel-section {
      position: relative;
    }

    .panel-section .arrow-btn {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      z-index: 20;
      width: 42px;
      height: 42px;
      border-radius: 50%;
      border: 1.5px solid #c8b09a;
      background: rgba(253, 248, 242, 0.95);
      backdrop-filter: blur(6px);
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 17px;
      color: #5a4030;
      box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1);
      transition: background 0.2s, transform 0.2s;
    }

    .panel-section .arrow-btn:hover {
      background: #fff;
      transform: translateY(-50%) scale(1.1);
    }

    .panel-section .arrow-btn:disabled {
      opacity: 0.3;
      cursor: default;
    }

    .panel-section .arrow-btn:disabled:hover {
      transform: translateY(-50%) scale(1);
    }

    .panel-section .arrow-btn.arrow-left {
      left: -30px;
    }

    .panel-section .arrow-btn.arrow-right {
      right: -30px;
    }

    /* ══ SLIDER ══ */
    .panel-section .slider-outer {
      overflow: hidden;
      border-radius: 14px;
      /* border: 1.5px solid #ddd0bb;
      background: #fdf8f2;
      box-shadow: 0 4px 24px rgba(0, 0, 0, 0.07); */
    }

    .panel-section .slider-track {
      display: flex;
      transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
      will-change: transform;
    }

    /* ══ EXPAND PANELS ══ */
    .expand-panel {
      min-width: 100%;
      padding: 40px 52px 44px;
    }

    .ep-pink {
      background: linear-gradient(135deg, #fdf2f3 0%, #fdf8f2 100%);
    }

    .ep-olive {
      background: linear-gradient(135deg, #f4f6ee 0%, #fdf8f2 100%);
    }

    .ep-purple {
      background: linear-gradient(135deg, #f3f0f9 0%, #fdf8f2 100%);
    }

    .ep-gray {
      background: linear-gradient(135deg, #f2f5ef 0%, #fdf8f2 100%);
    }

    .ep-inner {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 44px;
      align-items: start;
    }

    .ep-tag {
      font-family: 'Inter', sans-serif;
      font-size: 0.68rem;
      font-weight: 600;
      letter-spacing: 0.13em;
      text-transform: uppercase;
      color: #9a7c5e;
      margin-bottom: 10px;
    }

    .ep-headline {
      font-family: 'Dancing Script', sans-serif;
      font-size: clamp(1.9rem, 3vw, 2.9rem);
      font-weight: 700;
      color: #3a2c1e;
      line-height: 1.1;
      margin-bottom: 12px;
    }

    .ep-sub {
      font-family: 'Lora', serif;
      font-size: 1rem;
      font-style: italic;
      color: #7a6050;
      line-height: 1.6;
      margin-bottom: 20px;
    }

    .ep-body p {
      font-family: 'Lora', serif;
      font-size: 1.42rem;
      color: #5a4838;
      line-height: 1.55;
      margin-bottom: 10px;
    }

    .ep-sections {
      margin-top: 22px;
    }

    .ep-sections-label {
      font-family: 'Inter', sans-serif;
      font-size: 0.68rem;
      font-weight: 600;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: #9a7c5e;
      margin-bottom: 10px;
    }


  .ep-pills{
    display: flex;
    flex-wrap: wrap;
    gap: 1rem 0.9rem;
    padding: 0.5rem 0.25rem;
  }

  .ep-pill{
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-family: 'Jost', sans-serif;
    font-size: 0.86rem;
    font-weight: 500;
    line-height: 1.3;
    color: #5c4a3a;
    background: #fdecfb;
    padding: 0.5rem 0.95rem 0.6rem;
    box-shadow: 0 3px 8px rgba(74,59,47,0.16);
    cursor: default;
    user-select: text;
    clip-path: polygon(
      2% 8%, 18% 0%, 38% 4%, 58% 0%, 80% 5%, 98% 0%,
      100% 35%, 96% 60%, 100% 88%, 82% 100%, 60% 95%,
      40% 100%, 20% 96%, 0% 100%, 3% 60%
    );
  }

  /* alternating rotation so the row scatters naturally
     instead of lining up like buttons */
  .ep-pill:nth-child(6n+1){ transform: rotate(-2.5deg); }
  .ep-pill:nth-child(6n+2){ transform: rotate(2deg); }
  .ep-pill:nth-child(6n+3){ transform: rotate(-1.5deg); }
  .ep-pill:nth-child(6n+4){ transform: rotate(3deg); }
  .ep-pill:nth-child(6n+5){ transform: rotate(-3deg); }
  .ep-pill:nth-child(6n+6){ transform: rotate(1.5deg); }

  .ep-pill-icon{
    font-size: 0.95rem;
    flex-shrink: 0;
  }


/* ══ PILLS — kill messy rotation + tighten spacing on smaller screens ══ */
@media (max-width: 640px) {
  .ep-pill {
    transform: none !important;
  }
  .ep-pills {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.6rem;
  }
  .ep-pill {
    width: 100%;
  }
  .ep-sig {
    margin-top: 18px;
  }
}

/* ══ IMG-ROW — stack into single column on phones so images + labels have room ══ */
@media (max-width: 640px) {
  .img-row {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .img-block {
    aspect-ratio: 16/10;
  }
  .vid-label {
    font-size: 0.68rem;
    padding: 3px 8px;
    bottom: 8px;
    right: 8px;
    left: 8px;
    text-align: right;
    white-space: normal;
  }
  .img-block .ilab {
    font-size: 0.64rem;
  }
}

/* ══ Extra breathing room around ep-left content on phones ══ */
@media (max-width: 640px) {
  .ep-left {
    padding: 14px 4px;
  }
  .ep-sections {
    margin-top: 18px !important;
  }
}
  @media (max-width: 480px){
    .ep-pill{
      font-size: 0.8rem;
      padding: 0.45rem 0.8rem 0.55rem;
      ;
    }
    .ep-pills{
      gap: 0.8rem 0.7rem;
      flex-direction: column
    }
  }

    .ep-sig {
      font-family: 'Dancing Script', cursive;
      font-size: 1.2rem;
      color: #9a7a5e;
      margin-top: 24px;
    }

    .ep-right {
      display: flex;
      flex-direction: column;
      gap: 14px;
    }

    .video-block {
      position: relative;
      border-radius: 12px;
      overflow: hidden;
      aspect-ratio: 16/9;
      background: #d4c4b0;
      cursor: pointer;
    }

    .video-block img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      transition: transform 0.4s;
    }

    .video-block:hover img {
      transform: scale(1.04);
    }

    .veil {
      position: absolute;
      inset: 0;
      /* background: rgba(30, 18, 8, 0.35); */
    }

    .play-btn {
      position: absolute;
      /* inset: 0; */
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .play-circle {
      width: 52px;
      height: 52px;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.92);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 20px;
      color: #3a2c1e;
      transition: transform 0.2s;
    }

    .video-block:hover .play-circle {
      transform: scale(1.1);
    }

 .vid-label {
  position: absolute;
  bottom: 10px;
  right: 12px;
  font-family: 'Lora', serif;
  font-size: 0.72rem;
  font-style: italic;
  color: #fff;
  background: rgba(0, 0, 0, 0.45);
  padding: 3px 10px;
  border-radius: 12px;
  backdrop-filter: blur(2px);
}

    .img-row {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 12px;
    }

    .img-block {
      position: relative;
      border-radius: 10px;
      overflow: hidden;
      aspect-ratio: 4/3;
      background: #ddd0be;
      cursor: pointer;
    }

    .img-block img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      transition: transform 0.35s;
    }

    .img-block:hover img {
      transform: scale(1.06);
    }

    .img-block i {
      position: absolute;
      top: 8px;
      right: 9px;
      font-size: 15px;
      color: rgba(255, 255, 255, 0.85);
      text-shadow: 0 1px 4px rgba(0, 0, 0, 0.4);
    }

    .img-block .ilab {
      position: absolute;
      bottom: 7px;
      left: 9px;
      font-family: 'Inter', sans-serif;
      font-size: 0.68rem;
      font-weight: 500;
      color: rgba(255, 255, 255, 0.9);
      text-shadow: 0 1px 4px rgba(0, 0, 0, 0.5);
    }

    /* ══ NAV DOTS ══ */
    .slider-footer {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 12px;
      padding: 14px 0 2px;
    }

    .nav-dot {
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: #d0bea8;
      border: none;
      cursor: pointer;
      padding: 0;
      transition: background 0.25s, width 0.25s, border-radius 0.25s;
      position: relative;
      overflow: hidden;
    }

    .nav-dot.active {
      background: #c8b090;
      width: 30px;
      border-radius: 4px;
    }

    .nav-dot.active::after {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      height: 100%;
      width: 0%;
      background: #7a5c3e;
      border-radius: 4px;
      animation: dotFill 12s linear forwards;
    }

    @keyframes dotFill {
      from {
        width: 0%
      }

      to {
        width: 100%
      }
    }

    /* ══ RESPONSIVE ══ */
    @media (max-width: 1024px) {
      .cards-grid {
        gap: 12px;
      }

      .expand-panel {
        padding: 30px 60px 34px;
      }

      .ep-inner {
        gap: 28px;
      }

      .arrow-btn.arrow-left {
        left: -16px;
      }

      .arrow-btn.arrow-right {
        right: -16px;
      }
    }

    @media (max-width: 768px) {
      .cards-grid {
        grid-template-columns: repeat(1, 1fr);
        gap: 10px;
      }

      .card-text {
        width: 54%;
        padding: 12px 18px 12px 6px;
      }

      .expand-panel {
        padding: 24px 20px 28px;
      }

      .ep-inner {
        grid-template-columns: 1fr;
        gap: 22px;
      }

      .ep-right {
        order: -1;
      }

      .arrow-btn {
        width: 36px;
        height: 36px;
        font-size: 15px;
      }

      .arrow-btn.arrow-left {
        left: -14px;
      }

      .arrow-btn.arrow-right {
        right: -14px;
      }
    }

    @media (max-width: 480px) {

      .pinky-cards-section {
        padding: 20px 12px;
      }

      .cards-grid {
        grid-template-columns: repeat(1, 1fr);
        gap: 8px;
      }

      .card-text {
        width: 55%;
        padding: 40px 14px 40px 14px;
      }
      .card-title{
        font-size:18px;
      }
      .card-desc{
        font-size: 13px;
      }
      .card-link{
        font-size: 14px;
      }
      .expand-panel {
        padding: 18px 14px 22px;
      }

      .ep-headline {
        font-size: 1.6rem;
      }

      .arrow-btn {
        width: 30px;
        height: 30px;
        font-size: 13px;
      }

      .arrow-btn.arrow-left {
        left: -10px;
      }

      .arrow-btn.arrow-right {
        right: -10px;
      }
    }

    /* ══ VERTICAL EDGE SCROLL HINTS (replaces round .arrow-btn) ══ */
.panel-section .edge-hint {
  position: absolute;
  top: 50%;
  transform: translateY(-50%) rotate(180deg);
  writing-mode: vertical-rl;
  text-orientation: mixed;
  z-index: 20;
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: none;
  color: #9a7c5e;
  background: none;
  border: none;
  cursor: pointer;
  padding: 14px 6px;
  transition: color 0.2s, opacity 0.2s;
  opacity: 0.8;
  white-space: nowrap;
}

.panel-section .edge-hint:hover {
  color: #5a4030;
  opacity: 1;
}

.panel-section .edge-hint i {
  font-size: 18px;
  /* counter-rotate the icon so the chevron still points the right way */
  transform: rotate(180deg);
}

.panel-section .edge-hint.edge-hint-left {
  left: 6px;
}

.panel-section .edge-hint.edge-hint-right {
  right: 6px;
  transform: translateY(-50%) rotate(0deg);
}

.panel-section .edge-hint.edge-hint-right i {
  transform: rotate(0deg);
}

.panel-section .edge-hint:disabled {
  opacity: 0.25;
  cursor: default;
}

.panel-section .edge-hint:disabled:hover {
  color: #9a7c5e;
}

/* ══ RESPONSIVE ══ */
@media (max-width: 1024px) {
  .panel-section .edge-hint.edge-hint-left {
    left: 4px;
  }

  .panel-section .edge-hint.edge-hint-right {
    right: 4px;
  }
}

@media (max-width: 768px) {
  .panel-section .edge-hint {
    font-size: 1.05rem;
    padding: 12px 4px;
  }

  .panel-section .edge-hint i {
    font-size: 15px;
  }

  .panel-section .edge-hint.edge-hint-left {
    left: 2px;
  }

  .panel-section .edge-hint.edge-hint-right {
    right: 2px;
  }

  
    .panel-section .arrow-btn.arrow-left {
      display: none;
    }
      .panel-section .arrow-btn.arrow-right {
      display: none;
    }
    .ep-body p{
      font-size: 1rem;
    }
    .ep-left{
      padding:10px 20px;
    }
}

@media (max-width: 480px) {
  .panel-section .edge-hint {
    font-size: 0.9rem;
  }

  .panel-section .edge-hint i {
    font-size: 13px;
  }

  .panel-section .edge-hint.edge-hint-left {
    left: 0px;
  }

  .panel-section .edge-hint.edge-hint-right {
    right: 0px;
  }
}

    
/* ══ AWARDS GRID ══ */
.awards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

/* ══ AWARD CARD ══ */
.award-card {
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid #e8ddd0;
  display: flex;
  flex-direction: column;
  transition: transform 0.2s, box-shadow 0.2s;
}
.award-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(0,0,0,0.1);
}

.card-media {
  position: relative;
  width: 100%;
  aspect-ratio: 16/12;
  background: #e8ddd0;
  overflow: hidden;
}
.card-media img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.card-media iframe {
  width: 100%; height: 100%;
  border: none;
  display: block;
}
.card-media-placeholder {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, #f5ede0 0%, #ecdcc8 100%);
}
.card-media-placeholder i {
  font-size: 32px;
  color: #c8a878;
}

.card-icon-badge {
  position: absolute;
  bottom: -14px; left: 14px;
  width: 32px; height: 32px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid #e8ddd0;
  display: flex; align-items: center; justify-content: center;
  font-size: 15px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  z-index: 2;
}


.card-olive .card-title  { color: #5a6e3a; }
.card-blue .card-title   { color: #2a5a8a; }
.card-purple .card-title { color: #5a3a7a; }
.card-teal .card-title   { color: #2a6a6a; }
.card-gold .card-title   { color: #7a5a1a; }

.card-by {
  font-family: 'Inter', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  color: #9a7c5e;
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.card-link {
  /* font-family: 'Lora', serif; */
  font-style: italic;
  font-size: 0.73rem;
  color: #9b3a5a;
  text-decoration: none;
  border-bottom: 1px solid currentColor;
  padding-bottom: 1px;
  width: fit-content;
  transition: opacity 0.2s;
  display: inline-flex; align-items: center; gap: 4px;
  margin-bottom: 15px;
}
.card-link:hover { opacity: 0.7; }

/* ══ VIDEO CARD ══ */
.card-video-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  background: #e8ddd0;
  overflow: hidden;
}
.card-video-wrap iframe { width: 100%; height: 100%; border: none; display: block; }
.card-dot-badge {
  position: absolute;
  bottom: -14px; left: 14px;
  width: 32px; height: 32px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid #e8ddd0;
  display: flex; align-items: center; justify-content: center;
  font-size: 15px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  z-index: 2;
}
.card-watch-btn {
  font-family: 'Lora', serif;
  font-style: italic;
  font-size: 0.73rem;
  color: #9b3a5a;
  text-decoration: none;
  border-bottom: 1px solid currentColor;
  padding-bottom: 1px;
  width: fit-content;
  transition: opacity 0.2s;
  display: inline-flex; align-items: center; gap: 4px;
  margin-top: auto;
}
.card-watch-btn:hover { opacity: 0.7; }
.card-watch-btn .play-icon {
  width: 14px; height: 14px;
  background: #9b3a5a;
}
.card-watch-btn .play-icon::after {
  border-width: 3px 0 3px 5px;
}

/* ══ SMALL APPRECIATION CARDS (text-only, last row) ══ */
.appreciation-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
  margin-top: 16px;
}
.appr-card {
  background: #fff;
  border-radius: 12px;
  border: 1px solid #e8ddd0;
  padding: 16px 14px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  transition: transform 0.2s;
}
.appr-card:hover { transform: translateY(-2px); }
.appr-icon {
  font-size: 1.1rem;
  margin-bottom: 4px;
  line-height: 1;
}
.appr-title {
  font-family: 'Lora', serif;
  font-size: 0.78rem;
  font-weight: 700;
  color: #3a2c1e;
  line-height: 1.3;
}
.appr-name {
  font-family: 'Inter', sans-serif;
  font-size: 0.68rem;
  font-weight: 600;
  color: #9a7c5e;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.appr-desc {
  font-family: 'Lora', serif;
  font-size: 0.72rem;
  color: #7a6050;
  line-height: 1.5;
  margin-top: 2px;
}
.appr-link {
  font-family: 'Lora', serif;
  font-style: italic;
  font-size: 0.7rem;
  color: #9b3a5a;
  text-decoration: none;
  border-bottom: 1px solid currentColor;
  padding-bottom: 1px;
  width: fit-content;
  margin-top: 6px;
  transition: opacity 0.2s;
}
.appr-link:hover { opacity: 0.7; }

/* ══ DECO CARD ══ */
.award-card-deco {
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid #e8ddd0;
  aspect-ratio: auto;
  background: #fdf2ec;
  display: flex; align-items: center; justify-content: center;
}
.deco-flowers { width: 100%; height: 100%; object-fit: cover; display: block; }

/* ══ RESPONSIVE ══ */
@media (max-width: 1200px) {
  .awards-grid { grid-template-columns: repeat(3, 1fr); .card-by{font-size:0.7rem;}}
  .appreciation-grid { grid-template-columns: repeat(4, 1fr); }
}
@media (max-width: 900px) {
  .awards-grid { grid-template-columns: repeat(3, 1fr); }
  .appreciation-grid { grid-template-columns: repeat(3, 1fr); }
  .featured-block { grid-template-columns: 1fr; }
  .section-header { padding: 0 60px; }
  .featured-outer { padding: 28px 24px; }
}
@media (max-width: 600px) {
  .awards-grid { grid-template-columns: repeat(2, 1fr); }
  .appreciation-grid { grid-template-columns: repeat(2, 1fr); }
  .section-header { padding: 0 20px; }
  .header-deco-left, .header-deco-right { display: none; }
  .tl-label { font-size: 0.98rem; }
}

.group-heading {
  font-family: 'Inter', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #9a7c5e;
  margin-bottom: 20px;
  padding-bottom: 8px;
  border-bottom: 1.5px solid #ddd0bb;
  display: flex;
  align-items: center;
  gap: 10px;
}
.group-heading::after {
  content: '';
  flex: 1;
  height: 1px;
  background: #ddd0bb;
  display: block;
}

 .gallery-section{
  /* background:#f0ebe0; */
  padding:30px 0 50px;
  overflow:hidden;
}

.gallery-header{
  text-align:center;
  margin-bottom:36px;
}
.gallery-title{
  font-family:'Lato',sans-serif;
  font-size:22px;
  letter-spacing:0.2em;
  font-weight:700;
  color:#3d3529;
}
.gallery-divider{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:12px;
  margin-top:14px;
}
.divider-line{
  width:60px;height:1px;
  background:#b89e7a;
}
.divider-heart{
  color:#9a3040;
  font-size:14px;
}

/* Main horizontal scroll track */
.gallery-track{
  display:flex;
  /* gap:14px; */
  /* padding:10px 30px 20px */
  overflow-x:auto;
  scroll-snap-type:x proximity;
  -webkit-overflow-scrolling:touch;
  scrollbar-width:none;
}
.gallery-track::-webkit-scrollbar{ display:none; }

.g-col{
  flex-shrink:0;
  display:flex;
  flex-direction:column;
  gap:10px;
  scroll-snap-align:start;
}

/* Column width variations to mimic the reference layout */
.g-col-1{ width:200px; }
.g-col-2{ width:230px; }
.g-col-3{ width:150px; }
.g-col-4{ width:210px; }
.g-col-5{ width:280px; }
.g-col-6{ width:230px; }
.g-col-7{ width:240px; }

/* Photo frame (polaroid-ish white border) */
.g-photo{
  /* background:#fff; */
  padding:5px;
  box-shadow:0 4px 14px rgba(60,45,25,0.12);
  /* border-radius:2px; */
  overflow:hidden;
  flex:1;
  transition:transform 0.35s ease, box-shadow 0.35s ease;
}
.g-photo img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
  border-radius:1px;
}
.g-photo:hover{
  transform:translateY(-5px) scale(1.02);
  box-shadow:0 10px 24px rgba(60,45,25,0.2);
}

/* Single tall photo fills the whole column */
.g-col-1 .g-photo,
.g-col-2 .g-photo,
.g-col-4 .g-photo,
.g-col-5 .g-photo{
  height:300px;
}

/* Column 3: stacked halves */
.g-photo-half{
  height:148px;
}

/* Column 6: tall top + small row below */
.g-photo-tall{
  height:210px;
}
.g-row-pair{
  display:flex;
  gap:10px;
  height:90px;
}
.g-photo-small{
  flex:1;
}

/* Column 7: 2x2 grid + trio row */
.g-grid-2x2{
  display:grid;
  grid-template-columns:1fr 1fr;
  grid-template-rows:1fr 1fr;
  gap:10px;
  height:210px;
}
.g-row-trio{
  display:flex;
  gap:10px;
  height:90px;
}
.g-photo-tiny{
  width:100%;
  height:100%;
}



/* ============ RESPONSIVE ============ */

/* Tablet: smaller columns */
@media (max-width:1024px){
  .g-col-1{ width:140px; }
  .g-col-2{ width:190px; }
  .g-col-3{ width:130px; }
  .g-col-4{ width:180px; }
  .g-col-5{ width:230px; }
  .g-col-6{ width:200px; }
  .g-col-7{ width:200px; }

  .g-col-1 .g-photo,
  .g-col-2 .g-photo,
  .g-col-4 .g-photo,
  .g-col-5 .g-photo{
    height:250px;
  }
  .g-photo-half{ height:122px; }
  .g-photo-tall{ height:175px; }
  .g-row-pair, .g-row-trio{ height:75px; }
  .g-grid-2x2{ height:175px; }
}

/* Mobile: stack columns vertically, full width */
@media (min-width:641px) and (max-width:1024px){
.gallery-track{
gap:16px;
padding:14px 24px 28px;
}

/* shrink the columns so more fits and heights drop */
.g-col{ gap:14px; }
.g-col-1{ width:200px; }
.g-col-2{ width:230px; }
.g-col-3{ width:210px; }
.g-col-4{ width:230px; }
.g-col-5{ width:200px; }

.g-col-1 .g-photo{ height:280px; }
.g-col-2 .g-photo{ height:300px; }
.g-col-4 .g-photo{ height:300px; }
.g-col-5 .g-photo{ height:280px; }

.g-photo-half{ height:150px; }
.g-photo-tall{ height:190px; }
.g-row-pair, .g-row-trio{ height:100px; }.g-grid-2x2{ height:210px; }
}

/* ══ Mobile: compact 2-column grid, small images, short section ══ */
@media (max-width:640px){
.gallery-section{
padding:40px 0 30px;
}

.gallery-track{
display:block;/* masonry via CSS columns */
column-count:2;
column-gap:10px;
overflow-x:visible;
padding:8px 14px 16px;
}

.g-col{
width:100% !important;
gap:10px;
}
/* Match container shape to the actual 9:16 photos — no more cropping */
.g-photo:has(img[src*="pinky2"]),
.g-photo:has(img[src*="pinky6"]){
height:auto !important;
flex:none;
aspect-ratio: 9 / 16; /* same ratio as the original images */
align-self:flex-start;/* stop the grid stretching it taller */
}

.g-photo:has(img[src*="pinky2"]) img,
.g-photo:has(img[src*="pinky6"]) img{
object-fit: cover; /* ratio now matches, so nothing gets cut */
object-position: center;
}
.g-photo:has(img[src*="pinky15"]) img{
display:none;
}
/* small, controlled photo sizes */
.g-col-1 .g-photo,
.g-col-2 .g-photo,
.g-col-4 .g-photo,
.g-col-5 .g-photo{
height:180px;
}
.g-photo-half{ height:110px; }
.g-photo-tall{ height:140px; }
.g-row-pair, .g-row-trio{ height:75px; }.g-grid-2x2{ height:160px; }

.g-photo{
padding:4px;
/* neutralize JS inline tilt/float ONLY on mobile,
so tightly packed photos don't overlap */
transform:rotate(0deg) !important;
animation:none !important;
}

.gallery-dots{ display:none; }
}

/* ══ Very small phones ══ */
@media (max-width:380px){
.gallery-track{ gap:8px; padding:8px 10px 14px; }
.g-col{ gap:8px; }

.g-col-1 .g-photo,
.g-col-2 .g-photo,.g-col-4 .g-photo,
.g-col-5 .g-photo{
height:150px;
}
.g-photo-half{ height:95px; }
.g-photo-tall{ height:120px; }
.g-row-pair, .g-row-trio{ height:65px; }
.g-grid-2x2{ height:140px; }
}
@keyframes floatA {
  0%, 100% { transform: var(--base-tilt) translateY(0px); }
  50%       { transform: var(--base-tilt) translateY(-7px); }
}
@keyframes floatB {
  0%, 100% { transform: var(--base-tilt) translateY(-4px); }
  50%      { transform: var(--base-tilt) translateY(4px); }
}
@keyframes floatC {
  0%, 100% { transform: var(--base-tilt) translateY(-2px); }
  33%      { transform: var(--base-tilt) translateY(-8px); }
  66%      { transform: var(--base-tilt) translateY(2px); }
}
@keyframes sway {
  0%, 100% { transform: var(--base-tilt) rotate(0deg); }
  25%      { transform: var(--base-tilt) rotate(1.5deg); }
  75%      { transform: var(--base-tilt) rotate(-1.5deg); }
}

/* Replace the existing .g-photo:hover rule with this */
.g-photo:hover {
  transform: translateY(-10px) scale(1.04) rotate(0deg) !important;
  box-shadow: 0 18px 30px rgba(60,45,25,0.22) !important;
  animation: none !important;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  z-index: 10;
  position: relative;
}





 .love-section {
    /* background: #F2EAD8; */
    padding: 60px 40px 50px;
    position: relative;
    overflow: hidden;
    /* max-width:1600px; */
  }

  /* subtle botanical SVG left side – mirrors original */
  .love-section::before {
    content: '';
    position: absolute;
    left: -10px;
    top: 30px;
    width: 130px;
    height: 220px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 130 220'%3E%3Cpath d='M40 210 Q30 160 50 120 Q70 80 45 40' stroke='%23A8956B' stroke-width='2' fill='none'/%3E%3Cellipse cx='45' cy='40' rx='18' ry='26' fill='%23B8C9A0' opacity='0.7' transform='rotate(-20 45 40)'/%3E%3Cellipse cx='60' cy='70' rx='15' ry='22' fill='%23B8C9A0' opacity='0.6' transform='rotate(15 60 70)'/%3E%3Cellipse cx='35' cy='90' rx='16' ry='20' fill='%23A5B88C' opacity='0.65' transform='rotate(-30 35 90)'/%3E%3Cellipse cx='55' cy='115' rx='14' ry='18' fill='%23B8C9A0' opacity='0.6' transform='rotate(20 55 115)'/%3E%3Cellipse cx='30' cy='140' rx='17' ry='21' fill='%23A5B88C' opacity='0.55' transform='rotate(-15 30 140)'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-size: contain;
    pointer-events: none;
  }

  /* ── HEADING ── */
  .section-heading {
    text-align: center;
    margin-bottom: 40px;
  }

  .section-heading h2 {
    font-family: 'Dancing Script', cursive;
    font-size: 2.2rem;
    color: #5C3D2E;
    display: inline-flex;
    align-items: center;
    gap: 10px;
  }

  .section-heading h2 .heart {
    color: #C0695B;
    font-style: normal;
    font-size: 1.4rem;
  }

  /* ── LAYOUT ── */
  .stories-layout {
    display: flex;
    align-items: stretch;
    gap: 0;
    max-width: 1300px;
    margin: 0 auto;
  }

  /* LEFT: 3 testimonial cards */
  .testimonials-group {
    display: grid;
    flex: 1;
    gap: 10px;
    align-items: flex-start;
    grid-template-columns: repeat(4,1fr);
  }

  /* ── WATERCOLOR CARD ── */
  .testimonial-card {
    flex: 1;
    position: relative;
    min-height: 200px;
    display: flex;
    flex-direction: column;
    padding: 28px 22px 22px;
  }

  /* The watercolor paper stack background rendered as inline SVG via background */
  .testimonial-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("../images/card-design.png");
    background-repeat: no-repeat;
    background-size: 100% 100%;
    pointer-events: none;
    z-index: 0;
  }

  .card-content {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: 10px 6px 6px 10px;
  }

  .quote-text {
    font-family: 'Lato', sans-serif;
    font-size: 0.82rem;
    font-weight: 400;
    color: #4A3728;
    line-height: 1.65;
    flex: 1;
    margin-top: 22px;
    font-style: italic;
  }

  .quote-author {
    margin-top: 14px;
    font-family: 'Lato', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    color: #7A5C42;
    letter-spacing: 0.03em;
  }

  /* ── KNOW MORE CARD (4th slot) ── */
  .know-more-card {
    flex: 0.85;
    position: relative;
    min-height: 200px;
    display: flex;
    flex-direction: column;
    padding: 28px 22px 22px;
  }

  .know-more-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("../images/card-design.png");
    background-repeat: no-repeat;
    background-size: 100% 100%;
    pointer-events: none;
    z-index: 0;
  }

  .know-more-content {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    height: 100%;
    padding: 10px 10px 10px 10px;
    gap: 10px;
  }

  .know-more-content .badge {
    font-family: 'Lato', sans-serif;
    font-size: 0.72rem;
    font-weight: 600;
    color: #7A5C42;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    background: rgba(201, 169, 110, 0.18);
    padding: 3px 10px;
    border-radius: 20px;
    border: 1px solid rgba(201, 169, 110, 0.4);
  }

  .know-more-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.0rem;
    font-weight: 600;
    color: #4A3728;
    line-height: 1.4;
  }

  .know-more-content p {
    font-family: 'Lato', sans-serif;
    font-size: 0.78rem;
    color: #6B4F38;
    line-height: 1.5;
  }

  .know-more-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: 'Lato', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    color: #B5614A;
    text-decoration: none;
    letter-spacing: 0.04em;
    border-bottom: 1px solid #B5614A;
    padding-bottom: 1px;
    transition: opacity 0.2s;
    cursor: pointer;
    background: none;
    border-top: none;
    border-left: none;
    border-right: none;
  }

  .know-more-btn:hover { opacity: 0.7; }

  /* ── RIGHT: Tagline panel ── */
  .tagline-panel {
    width: 260px;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: center;
    padding: 0 0 0 30px;
    position: relative;
  }

  .tagline-panel .photo-wrap {
    position: absolute;
    
    width: auto;
    height: 130px;
    overflow: hidden;
    border-radius: 6px;
  }

  .tagline-panel .photo-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    border-radius: 6px;
  }

  .tagline-text {
    font-family: 'Dancing Script', cursive;
    font-size: 1.9rem;
    font-weight: 700;
    color: #5C3D2E;
    line-height: 1.3;
    text-align: right;
    position: relative;
    z-index: 1;
    padding-right: 0;
  }

  /* floral SVG right decoration */
  .floral-right {
    position: absolute;
    right: 180px;
    top: -15px;
    width: 60px;
    height: 80px;
    pointer-events: none;
  }

  /* ── TAPE accent on first card ── */
  .tape {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 48px;
    height: 20px;
    background: rgba(210, 190, 155, 0.55);
    border-radius: 2px;
    z-index: 2;
  }

  /* ── RESPONSIVE ── */
   /* ── LARGE DESKTOP (1200px+): 4 cols + tagline ── */
  @media (min-width: 1200px) {
    .testimonials-group {
      grid-template-columns: repeat(4, 1fr);
    }
  }
  @media(max-width:768px){
    .testimonials-group {
      grid-template-columns: repeat(1, 1fr);
    }
  }
 
  /* ── MEDIUM DESKTOP / LAPTOP (900–1199px): 2×2 grid + tagline below ── */
  @media (max-width: 1199px) and (min-width: 901px) {
    .stories-layout {
      flex-direction: column;
      gap: 30px;
    }
    .testimonials-group {
      grid-template-columns: repeat(2, 1fr);
    }
    .tagline-panel {
      width: 100%;
      align-items: center;
      padding: 0;
      flex-direction: row;
      justify-content: center;
      gap: 20px;
    }
    .tagline-text { text-align: center; }
    .floral-right { position: static; }
  }
 
  /* ── TABLET (601–900px): 2 cols, tagline below ── */
  @media (max-width: 900px) and (min-width: 601px) {
    .love-section {
      padding: 50px 28px 40px;
    }
    .stories-layout {
      flex-direction: column;
      gap: 24px;
    }
    .testimonials-group {
      grid-template-columns: repeat(2, 1fr);
      gap: 16px;
    }
    .testimonial-card,
    .know-more-card {
      min-height: 180px;
    }
    .tagline-panel {
      width: 100%;
      align-items: center;
      padding: 10px 0 0;
      flex-direction: row;
      justify-content: center;
      gap: 16px;
    }
    .tagline-text { text-align: center; }
    .floral-right { position: static; width: 44px; height: 60px; }
    .love-section::before { width: 80px; height: 160px; }
  }
 
  /* ── MOBILE (≤600px): 1 column stack ── */
  @media (max-width: 600px) {
    .love-section {
      padding: 40px 16px 36px;
    }
    .love-section::before {
      width: 70px;
      height: 130px;
      top: 10px;
      opacity: 0.6;
    }
    .section-heading {
      margin-bottom: 28px;
    }
    .stories-layout {
      flex-direction: column;
      gap: 20px;
    }
    
    .testimonial-card,
    .know-more-card {
      min-height: 160px;
      padding: 24px 16px 18px;
    }
    .quote-text {
      font-size: 0.85rem;
      margin-top: 18px;
    }
    .know-more-content h3 {
      font-size: 0.95rem;
    }
    .tagline-panel {
  width: 100%;
  align-items: center;
  padding: 8px 0 0;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
}
.tagline-panel .photo-wrap {
  position: relative;   /* absolute se relative — ab normal flow mein aayega */
  width: auto;
  height: 130px;
  margin: 0 auto;
  margin-top: -70px;
}
.tagline-text {
  font-size: 1.7rem;
  text-align: center;
}
    .tagline-text {
      font-size: 1.7rem;
      text-align: center;
    }
    .floral-right {
      position: static;
      width: 40px;
      height: 55px;
    }
  }
 
  /* ── VERY SMALL MOBILE (≤360px) ── */
  @media (max-width: 360px) {
    .love-section { padding: 32px 12px 28px; }
    .tagline-text { font-size: 1.45rem; }
    .quote-text { font-size: 0.8rem; }
  }


  /* ===== Instagram Section ===== */

.ig-divider {
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(143, 156, 120, 0.3), transparent);
  margin: 0 auto;
  width: 80%;
  max-width: 900px;
}

.ig-section {
  background: #eef0e4; /* sage green tint */
  padding: 70px 40px;
  border-radius: 24px;
  margin: 60px auto;
  max-width: 1100px;
  position: relative;
  overflow: hidden;
}

/* subtle texture/border feel, consistent with torn-paper theme */
.ig-section::before {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid rgba(143, 156, 120, 0.25);
  border-radius: 24px;
  pointer-events: none;
}

.ig-section-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 40px;
}

.ig-label {
  font-family: 'Lato', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #7f8c5e;
  margin: 0 0 6px;
}

.ig-title {
  font-family: 'Playfair Display', serif;
  font-size: 32px;
  font-weight: 500;
  color: #3d3a2f;
  margin: 0;
  line-height: 1.3;
}

.ig-follow-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #c75c7e;
  color: #fff;
  text-decoration: none;
  font-family: 'Lato', sans-serif;
  font-size: 14px;
  font-weight: 600;
  padding: 12px 22px;
  border-radius: 50px;
  white-space: nowrap;
  transition: background 0.25s ease, transform 0.25s ease;
}

.ig-follow-btn svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.ig-follow-btn:hover {
  background: #b5435f;
  transform: translateY(-2px);
}

.ig-stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 40px;
}

.ig-stat-item {
  background: #fff;
  border: 1px solid rgba(143, 156, 120, 0.2);
  border-radius: 14px;
  padding: 20px 12px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.ig-stat-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.07);
}

.ig-stat-number {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 600;
  color: #3d3a2f;
}

.ig-stat-label {
  font-family: 'Lato', sans-serif;
  font-size: 12px;
  color: #8a8378;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.ig-embed-wrapper {
  border-radius: 16px;
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(143, 156, 120, 0.2);
  min-height: 200px;
}

/* ===== Responsive ===== */

@media (max-width: 768px) {
  .ig-section {
    padding: 50px 20px;
    border-radius: 16px;
  }

  .ig-section-top {
    flex-direction: column;
    align-items: flex-start;
  }

  .ig-title {
    font-size: 26px;
  }

  .ig-stats-row {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .ig-follow-btn {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .ig-stats-row {
    grid-template-columns: repeat(2, 1fr);
  }

  .ig-stat-number {
    font-size: 18px;
  }
}

/* Hide old bead/pin */
.tl-item::before {
  display: none;
}

/* Base pin — sab tags pe light grey */
.tl-pin {
  display: block;
  width: 14px;
  height: 14px;
  border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
  background: #c0b8a8;
  margin: 0 auto 4px auto;
  box-shadow: 0 2px 4px rgba(0,0,0,0.2), inset 0 -2px 3px rgba(0,0,0,0.15);
  transition: background 0.3s ease, transform 0.3s ease;
}

/* Active pin — colorful pushpin */
.tl-item.active .tl-pin {
  background: radial-gradient(circle at 35% 35%, #ff6b6b, #c0392b);
  box-shadow: 0 3px 8px rgba(192, 57, 43, 0.5), inset 0 -2px 3px rgba(0,0,0,0.2);
  transform: scale(1.2);
}

/* Pin needle */
.tl-pin::after {
  content: '';
  display: block;
  width: 2px;
  height: 6px;
  background: #888;
  margin: 2px auto 0;
  border-radius: 0 0 2px 2px;
}
.tl-item.active .tl-tag {
  background: #f0d9a8;
  border-color: #b8934a;
  box-shadow: 0 0 12px rgba(184, 147, 74, 0.6), 0 0 24px rgba(184, 147, 74, 0.3);
}

.tl-item.active .tl-label {
  color: #6b3f10;
  font-weight: 700;
}



  .notebook-section {
    position: relative;
    /* width: min(1400px, 98vw); */
    aspect-ratio: 16 / 9;
    background-image: url('../images/instagram-background.png');
    background-size: 100% 100%;
    background-repeat: no-repeat;
    background-position: center;
    display: flex;
    overflow: hidden;
  }

  /* Left page */
  .left-page {
    flex: 1;
    padding: 6% 5% 6% 7%;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
  }

  /* Right page */
  .right-page {
    flex: 1;
    padding: 5% 6% 7% 7%;
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
    margin-left: 2%;
  }

  /* ---- LEFT PAGE ---- */
  .insta-heading {
    font-family: 'Dancing Script', cursive;
    font-size: clamp(1.4rem, 2.5vw, 2.2rem);
    color: #3d2b1f;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    line-height: 1.2;
  }

  .insta-heading .heart { color: #b5674d; font-size: 0.85em; }

  .insta-subtitle {
    font-family: 'Jost', sans-serif;
    font-size: clamp(0.65rem, 1.1vw, 0.88rem);
    color: #6b4f3a;
    font-weight: 400;
    line-height: 1.5;
    max-width: 85%;
  }

  .insta-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: clamp(4px, 0.8vw, 8px);
    flex: 1;
  }

  .grid-img-placeholder {
    aspect-ratio: 1;
    border-radius: 4px;
    width: 100%;
    background: linear-gradient(135deg, #e8d5c4 0%, #c9a98a 50%, #d4b8a8 100%);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .grid-img-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 4px;
  }

  .insta-follow {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: 'Jost', sans-serif;
    font-size: clamp(0.65rem, 1vw, 0.82rem);
    color: #3d2b1f;
    font-weight: 500;
    margin-top: 0.3rem;
    text-decoration: none;
  }

  .insta-follow svg { width: 1.1em; height: 1.1em; flex-shrink: 0; }

  /* ---- RIGHT PAGE ---- */
  .contact-heading {
    font-family: 'Dancing Script', cursive;
    font-size: clamp(1.2rem, 2.1vw, 1.85rem);
    color: #3d2b1f;
    font-weight: 600;
    line-height: 1.25;
    display: flex;
    flex-direction: column;
  }

  .contact-heading .heart {
    display: inline;
    font-size: 0.75em;
    color: #b5674d;
    margin-left: 0.3rem;
  }

  .contact-subtitle {
    font-family: 'Jost', sans-serif;
    font-size: clamp(0.58rem, 0.92vw, 0.78rem);
    color: #6b4f3a;
    line-height: 1.55;
    max-width: 90%;
  }

  .divider-botanical {
    font-size: clamp(0.9rem, 1.4vw, 1.1rem);
    color: #8a6a50;
    letter-spacing: 0.15em;
  }

  /* Form */
  .contact-form {
    display: flex;
    flex-direction: column;
    gap: clamp(0.3rem, 0.55vw, 0.5rem);
    flex: 1;
  }

  .form-field {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    background: rgba(255,255,255,0.45);
    border: 1px solid rgba(180,140,110,0.3);
    border-radius: 6px;
    padding: clamp(0.38rem, 0.8vw, 0.6rem) clamp(0.6rem, 1.2vw, 1rem);
    backdrop-filter: blur(2px);
  }

  .form-field svg {
    flex-shrink: 0;
    width: clamp(11px, 1.3vw, 15px);
    height: clamp(11px, 1.3vw, 15px);
    color: #8a6a50;
    opacity: 0.7;
  }

  .form-field input,
  .form-field textarea {
    border: none;
    background: transparent;
    font-family: 'Jost', sans-serif;
    font-size: clamp(0.6rem, 0.92vw, 0.78rem);
    color: #3d2b1f;
    width: 100%;
    outline: none;
    resize: none;
  }

  .form-field input::placeholder,
  .form-field textarea::placeholder {
    color: #8a6a50;
    opacity: 0.85;
  }

  /* Dropdown */
  .form-field select {
    border: none;
    background: transparent;
    font-family: 'Jost', sans-serif;
    font-size: clamp(0.6rem, 0.92vw, 0.78rem);
    color: #3d2b1f;
    width: 100%;
    outline: none;
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
  }

  .form-field select.empty {
    color: #8a6a50;
  }

  .form-field select option {
    color: #3d2b1f;
    background: #f5e8dd;
  }

  .form-field select option[value=""] {
    color: #8a6a50;
  }

  .select-wrapper {
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
  }

  .chevron-icon {
    position: absolute;
    right: 0;
    pointer-events: none;
    width: clamp(10px, 1.2vw, 13px);
    height: clamp(10px, 1.2vw, 13px);
    color: #8a6a50;
    opacity: 0.7;
    flex-shrink: 0;
  }

  /* Message field */
  .form-field.message-field { align-items: flex-start; padding-top: clamp(0.4rem, 0.8vw, 0.6rem); }
  .form-field.message-field svg { margin-top: 2px; }
  .form-field.message-field textarea { min-height: clamp(5rem, 10vw, 9rem); }

  /* Submit */
  .submit-btn {
    background: #5c6e40;
    color: #f5ede4;
    border: none;
    border-radius: 6px;
    padding: clamp(0.5rem, 1vw, 0.75rem);
    font-family: 'Jost', sans-serif;
    font-size: clamp(0.65rem, 1vw, 0.85rem);
    font-weight: 500;
    letter-spacing: 0.04em;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: background 0.25s ease, transform 0.15s ease;
    margin-top: 0.15rem;
    width: 100%;
  }

  .submit-btn:hover { background: #4a5a32; transform: translateY(-1px); }
  .submit-btn .btn-heart { color: #f0c4b0; font-size: 1.1em; }
  /* Elfsight widget full width + height */
.elfsight-app-c16ca48e-d131-41bf-958f-14a3a980b935 {
  width: 100% !important;
  flex: 1 !important;
}

/* Hide branding */
.eapps-link,
.eapps-instagram-feed-header {
  display: none !important;
}

/* Transparent background */
.eapps-instagram-feed,
.eapps-instagram-feed-posts-grid {
  background: transparent !important;
  padding: 0 !important;
}



@media (max-width: 768px) {

  .notebook-section {
    width: 100vw;
    aspect-ratio: unset;
    flex-direction: column;
    background-image: url('../images/instagram-background-mobile.png');
    background-size: 100% 100%;
    background-repeat: no-repeat;
    overflow: hidden;
    padding: 0;
  }

  /* LEFT PAGE — background ke top half mein */
  .left-page {
    flex: none;
    width: 75%;
    margin: 0 auto;
    padding: 16% 0 10% 0;
    text-align: center;
    gap: 0.7rem;
    overflow: hidden;
  }

  .insta-heading {
    font-size: clamp(1.6rem, 6.5vw, 2.2rem);
    justify-content: center;
    flex-wrap: wrap;
  }

  .insta-subtitle {
    max-width: 100%;
    font-size: clamp(0.75rem, 3vw, 0.9rem);
  }

  .elfsight-app-c16ca48e-d131-41bf-958f-14a3a980b935 {
    width: 100% !important;
    max-width: 100% !important;
    overflow: hidden !important;
    display: block !important;
  }

  .insta-follow {
    justify-content: center;
    font-size: 0.8rem;
  }

  /* RIGHT PAGE — background ke bottom half mein */
  .right-page {
    flex: none;
    width: 75%;
    margin: 0 auto;
    padding: 8% 0 20% 0;
    gap: 0.65rem;
    overflow: hidden;
    margin-left: auto;
    margin-right: auto;
  }

  .contact-heading {
    font-size: clamp(1.4rem, 6vw, 1.9rem);
    text-align: center;
    align-items: center;
  }

  .contact-subtitle {
    max-width: 100%;
    font-size: clamp(0.72rem, 2.8vw, 0.88rem);
    text-align: center;
  }

  .contact-form {
    width: 100%;
  }

  .form-field {
    width: 100%;
    padding: 0.65rem 0.8rem;
  }

  .form-field input,
  .form-field textarea,
  .form-field select {
    font-size: 0.8rem;
  }

  .form-field.message-field textarea {
    min-height: 4.5rem;
  }

  .submit-btn {
    width: 100%;
    padding: 0.8rem;
    font-family: 'Dancing Script', cursive;
    font-size: 1rem;
  }
}

@media (max-width: 768px) {
  /* Force elfsight grid, hide slider arrows */
  .eapps-instagram-feed-posts-slider-arrow,
  .eapps-instagram-feed-posts-slider-dots {
    display: none !important;
  }

  .eapps-instagram-feed-posts {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 4px !important;
    overflow: hidden !important;
  }

  .eapps-instagram-feed-posts-item {
    width: 100% !important;
    max-width: 100% !important;
  }
}


/* ── TABLET / IPAD (768px - 1024px) ── */
@media (min-width: 769px) and (max-width: 1024px) {

  .notebook-section {
    width: 100vw;
    aspect-ratio: 4 / 3;          /* thoda square — tablet fit */
    background-size: 100% 100%;
  }

  /* Left page */
  .left-page {
    flex: 1;
    padding: 7% 4% 9% 6%;
    gap: 0.9rem;
  }

  .insta-heading {
    font-size: clamp(1.4rem, 3vw, 2rem);
  }

  .insta-subtitle {
    font-size: clamp(0.7rem, 1.4vw, 0.9rem);
    max-width: 90%;
  }

  /* Elfsight */
  .elfsight-app-c16ca48e-d131-41bf-958f-14a3a980b935 {
    width: 100% !important;
    max-width: 100% !important;
    overflow: hidden !important;
  }

  .insta-follow {
    font-size: clamp(0.68rem, 1.2vw, 0.85rem);
  }

  /* Right page */
  .right-page {
    flex: 1;
    padding: 6% 5% 8% 5%;
    margin-left: 1%;
    gap: 0.6rem;
  }

  .contact-heading {
    font-size: clamp(1.2rem, 2.8vw, 1.7rem);
  }

  .contact-subtitle {
    font-size: clamp(0.65rem, 1.2vw, 0.85rem);
    max-width: 95%;
  }

  .form-field {
    padding: clamp(0.4rem, 0.9vw, 0.65rem) clamp(0.65rem, 1.2vw, 0.9rem);
  }

  .form-field input,
  .form-field textarea,
  .form-field select {
    font-size: clamp(0.65rem, 1.1vw, 0.82rem);
  }

  .form-field.message-field textarea {
    min-height: clamp(3rem, 5vw, 5rem);
  }

  .submit-btn {
    padding: clamp(0.55rem, 1vw, 0.75rem);
    font-size: clamp(0.7rem, 1.1vw, 0.88rem);
  }
}

/* ── IPAD PRO / LARGE TABLET (1024px - 1200px) ── */
@media (min-width: 1025px) and (max-width: 1199px) {

  .notebook-section {
    width: 100vw;
    aspect-ratio: 16 / 10;
  }

  .left-page {
    padding: 6% 4% 8% 6%;
  }

  .right-page {
    padding: 5% 5% 7% 5%;
    margin-left: 1.5%;
  }

  .contact-heading {
    font-size: clamp(1.1rem, 2.2vw, 1.6rem);
  }

  .insta-heading {
    font-size: clamp(1.3rem, 2.5vw, 1.9rem);
  }

  .form-field.message-field textarea {
    min-height: clamp(3.5rem, 5.5vw, 6rem);
  }
}


/* ── TABLET / IPAD (600px - 1024px) ── */
@media (min-width: 600px) and (max-width: 1024px) {
    .mobile-nav a {
        font-size:1.4rem;
    }
    .nav-logo-mobile img{
        max-height:100px;
    }

  .notebook-section {
    width: 100vw;
    aspect-ratio: unset;
    flex-direction: row;          /* side by side */
    background-size: 100% 100%;
    overflow: hidden;
  }

  /* Left page */
  .left-page {
    flex: 1;
    padding: 8% 3% 10% 5%;
    text-align: center;
    gap: 0.8rem;
    overflow: hidden;
  }

  .insta-heading {
    font-size: clamp(1.2rem, 3vw, 1.8rem);
    justify-content: center;
    flex-wrap: wrap;
  }

  .insta-subtitle {
    font-size: clamp(0.68rem, 1.4vw, 0.88rem);
    max-width: 100%;
  }

  /* Elfsight 2 columns */
  .elfsight-app-c16ca48e-d131-41bf-958f-14a3a980b935 {
    width: 100% !important;
    max-width: 100% !important;
    overflow: hidden !important;
  }

  .eapps-instagram-feed-posts-slider-arrow,
  .eapps-instagram-feed-posts-slider-dots {
    display: none !important;
  }

  .eapps-instagram-feed-posts {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 4px !important;
    overflow: hidden !important;
  }

  .eapps-instagram-feed-posts-item {
    width: 100% !important;
    max-width: 100% !important;
  }

  .insta-follow {
    justify-content: center;
    font-size: clamp(0.65rem, 1.2vw, 0.82rem);
  }

  /* Right page */
  .right-page {
    flex: 1;
    margin-left: 0;
    padding: 8% 4% 10% 3%;
    gap: 0.6rem;
    overflow: hidden;
  }

  .contact-heading {
    font-size: clamp(1.1rem, 2.8vw, 1.6rem);
  }

  .contact-subtitle {
    font-size: clamp(0.62rem, 1.2vw, 0.82rem);
    max-width: 100%;
  }

  .contact-form {
    width: 100%;
  }

  .form-field {
    padding: 0.55rem 0.8rem;
    width: 100%;
  }

  .form-field input,
  .form-field textarea,
  .form-field select {
    font-size: clamp(0.62rem, 1.1vw, 0.8rem);
  }

  .form-field.message-field textarea {
    min-height: clamp(3rem, 6vw, 5rem);
  }

  .submit-btn {
    width: 100%;
    padding: 0.7rem;
    font-size: clamp(0.7rem, 1.2vw, 0.88rem);
  }
}

/* ── IPAD PRO / LARGE TABLET (1025px - 1199px) ── */
@media (min-width: 1025px) and (max-width: 1199px) {

  .notebook-section {
    width: 100vw;
    aspect-ratio: 16 / 10;
    flex-direction: row;
  }

  .left-page {
    padding: 6% 4% 8% 6%;
  }

  .right-page {
    padding: 5% 5% 7% 3%;
    margin-left: 0;
  }

  .contact-heading {
    font-size: clamp(1.1rem, 2.2vw, 1.6rem);
  }

  .insta-heading {
    font-size: clamp(1.3rem, 2.5vw, 1.9rem);
  }

  .form-field.message-field textarea {
    min-height: clamp(3.5rem, 5.5vw, 6rem);
  }
}

/* ── SOCIAL CONNECT ── */
.social-connect {
  margin-top: auto;
  padding-top: clamp(0.5rem, 1vw, 0.8rem);
}

.social-divider {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: clamp(0.5rem, 1vw, 0.8rem);
}

.divider-line {
  flex: 1;
  height: 1px;
  background: rgba(139, 100, 70, 0.35);
}

.divider-text {
  font-family: 'Dancing Script', cursive;
  font-size: clamp(0.85rem, 1.3vw, 1.05rem);   /* thoda bada */
  color: #5c3d2e;
  white-space: nowrap;
}
.social-icons {
  display: flex;
  justify-content: center;
  gap: clamp(1.2rem, 2.5vw, 2rem);   /* gap badaya */
}

.social-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.3rem;
  text-decoration: none;
  color: #6b4f3a;
  transition: transform 0.2s ease;
}

.social-item span {
  font-family: 'Jost', sans-serif;
  font-size: clamp(0.62rem, 1vw, 0.78rem);
  color: #4a2f1e;          /* darker — visible */
  font-weight: 500;        /* bold — readable */
  letter-spacing: 0.02em;
}

.social-item:hover {
  transform: translateY(-3px);
}

.social-circle {
  width: 75px;
  height: 75px;
  border-radius: 50%;
  /* border: 1.5px solid rgba(139, 100, 70, 0.6); */
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.2);
}
.social-circle svg {
  width: 50%;
  height: 50%;
  color: #5c3d2e;        /* dark brown — filled look */
  stroke-width: 2px;
}


.social-item span {
  font-family: 'Jost', sans-serif;
  font-size: clamp(0.5rem, 0.85vw, 0.72rem);
  color: #6b4f3a;
  font-weight: 400;
}




/* Mobile adjustment */
@media (max-width: 768px) {
  .social-connect {
    padding-top: 0.8rem;
  }

  .divider-text {
    font-size: clamp(0.75rem, 3.5vw, 0.95rem);
  }

  .social-circle {
    width: 36px;
    height: 36px;
  }

  .social-item span {
    font-size: 0.65rem;
  }

  .social-icons {
    gap: 1rem;
  }
}

/* Tablet adjustment */
@media (min-width: 600px) and (max-width: 1024px) {
  .social-circle {
    width: clamp(30px, 3.8vw, 40px);
    height: clamp(30px, 3.8vw, 40px);
  }

  .divider-text {
    font-size: clamp(0.68rem, 1.3vw, 0.9rem);
  }
}

 
  .mc-section{
    --mc-kraft-dark: #c9bb98;
    --mc-ink: #2f3a26;
    --mc-green: #4a5a36;
    --mc-green-dark: #3a4729;
    --mc-rose: #b85c6b;
    --mc-line: #cfc4a4;

    font-family: 'Jost', Arial, sans-serif;
    padding: clamp(20px, 5vw, 56px) clamp(12px, 4vw, 24px);
    box-sizing: border-box;
    width: 100%;
  }

  .mc-section *{ box-sizing: border-box; }

  /* outer card — background is a single image
     (paperclip, tape, dried flowers, torn kraft border all baked in) */
  .mc-paper{
    position: relative;
    max-width: 1280px;
    margin: 0 auto;
    background-image: url("../images/mc-bg.png");
    background-size: 100% 100%; /* stretch frame to match this box's own size/shape */
    background-position: center;
    background-repeat: no-repeat;
    /* inset padding keeps content clear of the image's own kraft border + side flowers/tape */
    padding: clamp(36px, 6%, 64px) clamp(70px, 11%, 120px);
    overflow: hidden;
  }

  /* heading pill */
  .mc-heading-wrap{
    text-align: center;
    margin-bottom: 20px;
  }

  .mc-heading{
    display: inline-block;
    margin: 0;
    background: var(--mc-green);
    color: #f6f1e2;
    /* font-family: 'Dancing Script', cursive; */
    font-weight: 700;
    font-size: 30px;
    padding: 10px 16px 10px;
    border-radius: 999px;
    box-shadow: 0 6px 14px rgba(0,0,0,0.18);
    letter-spacing: 0.5px;
  }

  .mc-heart{
    color: #e98ea0;
    font-size: 0.7em;
    margin-left: 4px;
  }

  /* tabs */
  .mc-tabs{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: clamp(10px, 2vw, 28px);
    margin-bottom: clamp(24px, 5vw, 40px);
    padding-bottom: 14px;
    border-bottom: 1px solid var(--mc-line);
  }

  .mc-tab{
    background: none;
    border: none;
    cursor: pointer;
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: clamp(13px, 1.6vw, 16px);
    color: var(--mc-ink);
    opacity: 0.65;
    padding: 4px 2px;
    position: relative;
    transition: opacity 0.2s ease, color 0.2s ease;
    white-space: nowrap;
  }

  .mc-tab:hover{ opacity: 0.9; }

  .mc-tab.is-active{
    opacity: 1;
    color: var(--mc-green-dark);
    font-weight: 600;
  }

  .mc-tab.is-active::after{
    content: "";
    position: absolute;
    left: 0; right: 0;
    bottom: -16px;
    height: 2px;
    background: var(--mc-green-dark);
    border-radius: 2px;
  }

  .mc-tab:focus-visible{
    outline: 2px solid var(--mc-green-dark);
    outline-offset: 3px;
    border-radius: 4px;
  }

  /* grid */
  .mc-grid{
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: clamp(10px, 1.6vw, 20px);
  }

  /* card = polaroid/clipping holder, image only */
  .mc-card{
    position: relative;
    background: #fbf8ef;
    border-radius: 4px;
    padding: 14px 14px 18px;
    box-shadow:
      0 10px 18px rgba(0,0,0,0.10),
      0 1px 0 rgba(255,255,255,0.6) inset;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    transform: rotate(var(--mc-rot, 0deg));
    cursor: pointer; /* signal the card is clickable */
  }

  .mc-card:nth-child(odd){ --mc-rot: -1.2deg; }
  .mc-card:nth-child(even){ --mc-rot: 1deg; }
  .mc-card:nth-child(3n){ --mc-rot: -0.6deg; }

  .mc-card:hover{
    transform: rotate(0deg) translateY(-4px) scale(1.015);
    box-shadow: 0 16px 26px rgba(0,0,0,0.16);
    z-index: 2;
  }

  .mc-card:focus-visible{
    outline: 2px solid var(--mc-green-dark);
    outline-offset: 3px;
  }

  .mc-card-tape{
    position: absolute;
    top: -10px;
    left: 50%;
    width: 54px;
    height: 20px;
    background: rgba(196, 168, 110, 0.6);
    border: 1px solid rgba(196, 168, 110, 0.75);
    box-shadow: 0 2px 4px rgba(0,0,0,0.12);
    transform: translateX(-50%) rotate(-2deg);
  }

  /* image placeholder box — swap inner comment for your <img> */
  .mc-img-box{
    width: 100%;
    aspect-ratio: 4 / 3;
    border: 1px dashed var(--mc-kraft-dark);
    border-radius: 2px;
    background: repeating-linear-gradient(
      45deg,
      rgba(0,0,0,0.015) 0 10px,
      transparent 10px 20px
    );
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .mc-img-box img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }

  /* hide filtered-out cards */
  .mc-card.is-hidden{
    display: none;
  }

  /* footer line */
  .mc-footer{
    text-align: center;
    margin: clamp(24px, 5vw, 36px) 0 0;
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: clamp(13px, 1.6vw, 16px);
    color: var(--mc-ink);
    line-height: 1.8;
  }

  .mc-footer-heart{ color: var(--mc-rose); }

  .mc-footer-deco{
    display: inline-block;
    margin-top: 4px;
    color: var(--mc-kraft-dark);
    letter-spacing: 2px;
    font-style: normal;
  }

  /* ---------- responsive ---------- */
  @media (max-width: 1024px){
    .mc-grid{
      grid-template-columns: repeat(4, 1fr);
    }
  }

  @media (max-width: 820px){
    .mc-grid{
      grid-template-columns: repeat(3, 1fr);
    }
  }

  @media (max-width: 480px){
    .mc-paper{
      padding: 40px 22px;
    }
    .mc-grid{
      grid-template-columns: repeat(2, 1fr);
      gap: 12px;
    }
    .mc-tabs{
      gap: 8px 14px;
    }
    .mc-tab{
      font-size: 12px;
    }
  }

  /* reduced motion */
  @media (prefers-reduced-motion: reduce){
    .mc-card{ transition: none; }
  }

  /* ============================================================
     LIGHTBOX MODAL — styles (mc- namespace)
  ============================================================ */

  .mc-lightbox{
    position: fixed;
    inset: 0;
    background: rgba(20, 15, 8, 0.86);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: clamp(16px, 5vw, 60px);
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.25s ease;
  }

  .mc-lightbox.is-open{
    opacity: 1;
    visibility: visible;
  }

  .mc-lightbox-inner{
    max-width: 90vw;
    max-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .mc-lightbox-img{
    max-width: 90vw;
    max-height: 90vh;
    width: auto;
    height: auto;
    object-fit: contain;
    border-radius: 4px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.5);
    background: #fff;
    transform: scale(0.96);
    transition: transform 0.25s ease;
  }

  .mc-lightbox.is-open .mc-lightbox-img{
    transform: scale(1);
  }

  .mc-lightbox-close{
    position: absolute;
    top: clamp(10px, 3vw, 24px);
    right: clamp(10px, 3vw, 24px);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: none;
    background: rgba(255,255,255,0.12);
    color: #f6f1e2;
    font-size: 28px;
    line-height: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s ease;
  }

  .mc-lightbox-close:hover{
    background: rgba(255,255,255,0.25);
  }

  .mc-lightbox-nav{
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: none;
    background: rgba(255,255,255,0.12);
    color: #f6f1e2;
    font-size: 30px;
    line-height: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s ease;
  }

  .mc-lightbox-nav:hover{
    background: rgba(255,255,255,0.25);
  }

  .mc-lightbox-prev{ left: clamp(8px, 3vw, 24px); }
  .mc-lightbox-next{ right: clamp(8px, 3vw, 24px); }

  @media (max-width: 480px){
    .mc-lightbox-nav{
      width: 40px;
      height: 40px;
      font-size: 24px;
    }
    .mc-lightbox-close{
      width: 38px;
      height: 38px;
      font-size: 24px;
    }
  }
         .ux-enc-section {
    /* background-color: #f6f3ed; */
    /* font-family: "Montserrat", sans-serif; */
    padding: 30px 20px;
    overflow: hidden;
    /* Prevents decorative items from causing horizontal scroll */
  }

  .ux-enc-container {
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
    /* Anchors the absolute decorative images */
  }

  /* Decorative Images Anchored Correctly */
  .ux-enc-deco-flowers {
    position: absolute;
    top: -20px;
    left: -60px;
    width: clamp(180px, 20vw, 260px);
    z-index: 0;
    pointer-events: none;
    animation: floatLeft 4s ease-in-out infinite;
  }

  .ux-enc-deco-card {
    position: absolute;
    top: 20px;
    right: -100px;
    width: clamp(220px, 25vw, 320px);
    z-index: 0;
    pointer-events: none;
    filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.08));
    /* 5s duration taki flowers aur card ek saath bounce na karein, thoda natural lage */
    animation: floatRightCard 5s ease-in-out infinite;
  }

  /* Header */
  .ux-enc-header {
    text-align: center;
    position: relative;
    z-index: 2;
    margin-bottom: 50px;
  }

  .ux-enc-header h2 {
    font-family: "Cinzel", serif;
    font-size: clamp(2rem, 4vw, 2.8rem);
    color: #3a2b24;
    letter-spacing: 2px;
    margin: 0 0 10px 0;
  }

  .ux-enc-header p {
    color: #555;
    font-size: 1.1rem;
    margin: 0;
  }

  .ux-enc-heart {
    margin-top: 10px;
    font-size: 1.2rem;
  }

  /* Tabs */
  /* Tabs Container - Updated for Horizontal Scrolling */
  .ux-enc-tabs {
    display: flex;
    justify-content: flex-start; /* Ensures tabs start from the left when scrolling */
    flex-wrap: nowrap; /* Ye tabs ko neeche girne se rokega */
    gap: 8px;
    position: relative;
    z-index: 3;
    margin-bottom: -1px;
    overflow-x: auto; /* Horizontal scroll on karta hai */
    -webkit-overflow-scrolling: touch; /* Mobile me smooth scroll ke liye */
    scrollbar-width: none; /* Firefox me scrollbar chupane ke liye */
    padding-bottom: 2px;
  }

  /* Chrome, Safari, aur Edge me scrollbar chupane ke liye */
  .ux-enc-tabs::-webkit-scrollbar {
    display: none; 
  }

  /* Individual Tab Styling */
  .ux-enc-tab {
    background: #fff;
    border: 1px solid #e8dbce;
    border-bottom: none;
    padding: 14px 22px;
    border-radius: 12px 12px 0 0;
    font-family: "Montserrat", sans-serif;
    font-size: 0.85rem;
    font-weight: 500;
    color: #555;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    white-space: nowrap; /* Text ko ek hi line me rakhega */
    flex-shrink: 0; /* Tabs ko dabne (squish hone) se rokega */
  }

  .ux-enc-tab.active {
    background: #a57c65;
    color: #fff;
    border-color: #a57c65;
  }

  /* Main Card */
  .ux-enc-main-card {
    background: #fefcf9;
    border-radius: 16px;
    padding: 40px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    position: relative;
    z-index: 2;
    border: 1px solid #f0eadd;
  }

  /* Left Side (Image & Stamp) */
  .ux-enc-card-left {
    position: relative;
  }

  .ux-enc-main-image {
    width: 100%;
    height: 100%;
    min-height: 400px;
    object-fit: cover;
    border-radius: 12px;
    background-color: #e2ddd5;
  }

  .ux-enc-stamp {
    position: absolute;
    bottom: -20px;
    left: -20px;
    width: 110px;
    height: 110px;
    background: #f6f3ed;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  }

  .ux-enc-rotating-text {
    width: 90px;
    height: 90px;
    animation: uxRotate 12s linear infinite;
    position: absolute;
  }

  .ux-enc-rotating-text text {
    font-size: 14px;
    font-weight: 600;
    fill: #a57c65;
    letter-spacing: 1.5px;
  }

  .ux-enc-stamp-icon {
    font-size: 1.5rem;
    z-index: 2;
  }

  @keyframes uxRotate {
    100% {
      transform: rotate(360deg);
    }
  }

  /* Right Side Content */
  .ux-enc-card-right {
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .ux-enc-script {
    font-family: "Dancing Script", cursive;
    color: #a57c65;
    font-size: 2rem;
    margin-bottom: -5px;
  }

  .ux-enc-card-right h3 {
    font-family: "Cinzel", serif;
    font-size: clamp(1.8rem, 3vw, 2.2rem);
    color: #3a2b24;
    margin: 10px 0 5px 0;
  }

  .ux-enc-subtitle {
    font-size: 0.75rem;
    letter-spacing: 1px;
    color: #888;
    font-weight: 600;
  }

  .ux-enc-divider {
    width: 50px;
    height: 2px;
    background: #a57c65;
    margin: 20px 0px 0px 0px;
  }

  .ux-enc-description {
    line-height: 1.7;
    color: #555;
    margin-bottom: 20px;
  }

  .ux-enc-btn {
    align-self: flex-start;
    background: transparent;
    color: #a57c65;
    border: 1.5px solid #a57c65;
    padding: 10px 24px;
    border-radius: 30px;
    font-family: "Montserrat", sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 15px;
  }

  .ux-enc-btn:hover {
    background: #a57c65;
    color: #fff;
  }

  .ux-enc-quote {
    background-color: #fbf8f3;
    padding: 20px;
    border-left: 4px solid #e8dbce;
    position: relative;
    border-radius: 0 8px 8px 0;
  }

  .ux-enc-quote-mark {
    font-family: "Cinzel", serif;
    font-size: 3rem;
    color: #e8dbce;
    position: absolute;
    top: -5px;
    left: 10px;
    line-height: 1;
  }

  .ux-enc-quote p {
    margin: 0;
    padding-left: 25px;
    font-style: italic;
    color: #666;
    font-size: 0.95rem;
  }

  /* Thumbnails */
  .ux-enc-thumbnails-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-top: 30px;
  }

  .ux-enc-thumbnails {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    scrollbar-width: none;
    /* Hide scrollbar Firefox */
  }

  .ux-enc-thumbnails::-webkit-scrollbar {
    display: none;
  }

  /* Hide scrollbar Chrome */

  .ux-enc-thumb {
    width: 90px;
    height: 70px;
    border-radius: 6px;
    cursor: pointer;
    object-fit: cover;
    transition: transform 0.2s;
  }

  .ux-enc-thumb:hover {
    transform: translateY(-3px);
  }

  .ux-enc-nav-btn {
    background: transparent;
    border: 1px solid #a57c65;
    color: #a57c65;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    cursor: pointer;
  }

  /* MODAL STYLES */
  .ux-enc-modal-overlay {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(5px);
    opacity: 0;
    transition: opacity 0.3s ease;
  }

  .ux-enc-modal-overlay.ux-show {
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
  }

  .ux-enc-modal-box {
    background-color: #fff;
    padding: 40px;
    border-radius: 12px;
    max-width: 700px;
    width: 90%;
    max-height: 85vh;
    overflow-y: auto;
    position: relative;
    transform: translateY(20px);
    transition: transform 0.4s ease;
  }

  .ux-enc-modal-overlay.ux-show .ux-enc-modal-box {
    transform: translateY(0);
  }

  .ux-enc-close {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 28px;
    cursor: pointer;
    color: #888;
  }

  .ux-enc-modal-title {
    font-family: "Cinzel", serif;
    color: #3a2b24;
    font-size: 1.8rem;
    border-bottom: 1px solid #eee;
    padding-bottom: 15px;
    margin-top: 0;
  }

  .ux-enc-modal-content p {
    line-height: 1.7;
    color: #555;
  }

  /* Modal Image Gallery Grid */
  .ux-enc-modal-gallery {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin: 25px 0;
  }

  .ux-enc-modal-gallery img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 8px;
  }

  /* --- MODAL LAYOUT STYLES --- */
  
  /* 1. Normal Full Width Text */
  .ux-enc-modal-full-text {
    line-height: 1.8;
    color: #555;
    font-size: 0.95rem;
    margin-bottom: 20px;
  }

  /* 2. Beech wali (Center) Image */
  .ux-enc-modal-center-img {
    width: 100%;
    height: auto;
    max-height: 350px;
    object-fit: cover;
    object-position: top;
    border-radius: 12px;
    margin: 20px 0 30px 0;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  }

  /* 3. Side-by-Side Layout */
  .ux-enc-modal-row {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-bottom: 30px;
  }

  .ux-enc-modal-row p {
    flex: 1;
    margin: 0;
    line-height: 1.8;
    color: #555;
    font-size: 0.95rem;
  }

  .ux-enc-modal-row img {
    flex: 0 0 40%; 
    max-width: 40%;
    /* height: 240px; */
    object-fit: cover;
    object-position: top;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  }

  /* Mobile screen ke liye side-by-side ko vertical stack karna */
  @media (max-width: 768px) {
    .ux-enc-modal-row {
      flex-direction: column;
      text-align: left;
      gap: 15px;
    }
    .ux-enc-modal-row img {
      max-width: 100%;
      flex: 0 0 auto;
      width: 100%;
      height: auto;
      max-height: 300px;
    }
  }

  /* --- RESPONSIVE DESIGN (Tablets & Mobile) --- */
  @media (max-width: 992px) {
    .ux-enc-main-card {
      grid-template-columns: 1fr;
      /* Stacks the card */
      padding: 30px;
    }
    
    .ux-enc-header{
        margin-bottom: 10px !important;
    }

    .ux-enc-main-image {
      min-height: 300px;
    }

    .ux-enc-deco-flowers,
    .ux-enc-deco-card {
      display: none;
    }
  }

  @media (max-width: 768px) {
    .ux-enc-tabs {
      justify-content: flex-start;
      overflow-x: auto;
      padding-bottom: 5px;
      white-space: nowrap;
      scrollbar-width: thin;
    }

 .ux-enc-header{
        margin-bottom: 10px !important;
    }

    .ux-enc-modal-gallery {
      grid-template-columns: 1fr;
      /* Stack images in modal on mobile */
    }

    .ux-enc-modal-gallery img {
      height: auto;
    }
  }


  @keyframes floatLeft {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
    100% { transform: translateY(0px); }
  }

  /* Card Animation (Right) - Tilted (tedha) rahega aur float karega */
  @keyframes floatRightCard {
    /* rotate(15deg) se ye right side tilt rahega. Aap 15deg ko apne hisaab se kam zyada kar sakte hain */
    0% { transform: translateY(0px) rotate(15deg); }
    50% { transform: translateY(-15px) rotate(15deg); }
    100% { transform: translateY(0px) rotate(15deg); }
  }

  /* Mobile Instagram Widget Fix */
  .elfsight-app-c16ca48e-d131-41bf-958f-14a3a980b935 {
    width: 100% !important;
    max-width: 100%;
    overflow: hidden !important;
    display: block;
    margin-bottom: 30px; /* Neeche ke text se gap dene ke liye */
  }


  .ux-enc-tabs-wrapper{
  position: relative;
  padding-top: 22px; /* tag ke latakne ke liye thodi jagah top pe */
}

.ux-enc-tabs{
  display: flex;
  overflow-x: auto;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.ux-enc-tabs::-webkit-scrollbar{ display: none; }

/* ---------- hanging "swipe" tag ---------- */
.ux-enc-swipe-tag{
  position: absolute;
  top: -4px;
  right: 18px;
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 6;
  transform-origin: top center;
  animation: ux-tag-swing 3.4s ease-in-out infinite;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}


@keyframes ux-tag-swing{
  0%, 100% { transform: rotate(-6deg); }
  50%      { transform: rotate(6deg); }
}

.ux-enc-swipe-pin{
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, #f0d9b8, #a8765a 75%);
  box-shadow: 0 1px 2px rgba(0,0,0,0.3);
}

.ux-enc-swipe-thread{
  width: 1px;
  height: 14px;
  background: rgba(90,70,50,0.35);
}

.ux-enc-swipe-label{
  display: flex;
  align-items: center;
  gap: 5px;
  background: #f4ecdf;
  border: 1px solid rgba(168,118,90,0.4);
  border-radius: 3px;
  padding: 5px 9px 5px 7px;
  box-shadow: 0 3px 6px rgba(46,52,36,0.18);
  white-space: nowrap;
}
.ux-enc-swipe-label span{
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-weight: 600;
  font-size: 0.72rem;
  color: #8a6248;
}
.ux-enc-swipe-arrow{
  width: 22px;
  height: 14px;
  flex-shrink: 0;
}
.ux-enc-swipe-arrow path{
  fill: none;
  stroke: #a8765a;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-dasharray: 26;
  stroke-dashoffset: 26;
  animation: ux-arrow-draw 2.2s ease-in-out infinite;
}
.ux-enc-swipe-arrow path:last-child{
  stroke-dasharray: 10;
  stroke-dashoffset: 10;
  animation-delay: 0.15s;
}
.ux-enc-swipe-tag{
  position: absolute;
  top: -15px;
  right: 18px;
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 6;
  cursor: pointer;            /* yeh line add karo */
  transform-origin: top center;
  animation: ux-tag-swing 3.4s ease-in-out infinite;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}
@keyframes ux-arrow-draw{
  0%   { stroke-dashoffset: 26; opacity: 0; }
  25%  { opacity: 1; }
  55%  { stroke-dashoffset: 0; opacity: 1; }
  85%  { opacity: 1; }
  100% { stroke-dashoffset: 0; opacity: 0; }
}

/* chhoti screens pe sirf arrow rakho, text hide */
@media (max-width: 640px){
  .ux-enc-swipe-label span{ display: none; }
}



 .es-section {
    /* background-color: #f2e9d8; */
    /* background-image: url('../images/pink-side-of-pinky/speaker-bg.png'); */
    font-family: 'Lato', sans-serif;
    padding: 52px 48px 44px;
    position: relative;
    overflow: hidden;
  }


  /* decorative dried flowers */
  .es-deco { position: absolute; pointer-events: none; }
  .es-deco.tl { top: 30px; left: 12px; width: 90px; opacity: 0.55; }
  .es-deco.bl { bottom: 80px; left: 8px; width: 80px; opacity: 0.5; }
  .es-deco.br { bottom: 60px; right: 10px; width: 70px; opacity: 0.45; }

  /* ── MAIN GRID ── */
  .es-grid {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 36px;
    align-items: start;
    max-width: 1200px;
    margin: 0 auto;
  }

  /* ── LEFT PANEL ── */
  .es-left { display: flex; flex-direction: column; gap: 18px; padding-top: 8px; }

  .es-eyebrow {
    font-family: 'Dancing Script', cursive;
    font-size: 2rem;
    color: #6b4c2a;
    line-height: 1;
    margin-bottom: -4px;
  }

  .es-title {
    /* font-family: 'Playfair Display', serif; */
    font-size: clamp(2.0rem, 3vw, 3.0rem);
    font-weight: 700;
    color: #2e2416;
    line-height: 1.05;
    letter-spacing: -0.5px;
  }

  .es-title .heart {
    color: #c0766a;
    font-weight: 400;
    font-style: italic;
    font-size: 0.7em;
  }

  .es-divider {
    width: 140px;
    height: 1px;
    background: linear-gradient(to right, #b89970, transparent);
    position: relative;
  }
  .es-divider::before, .es-divider::after {
    content: '❧';
    position: absolute;
    top: -8px;
    font-size: 10px;
    color: #b89970;
  }
  .es-divider::before { left: 0; }
  .es-divider::after  { left: 20px; }

  .es-body {
    font-size: 0.95rem;
    color: #4a3820;
    line-height: 1.75;
    max-width: 260px;
  }
  .es-body strong { color: #c0766a; font-weight: 600; }

  .es-tagline {
    background: #7a8c5e;
    border-radius: 4px;
    padding: 12px 16px;
    display: inline-block;
  }
  .es-tagline p {
    font-family: 'Dancing Script', cursive;
    font-size: 1.2rem;
    color: #f5f0e8;
    line-height: 1.55;
  }
  .es-tagline .heart2 { color: #f4a7a0; }

  /* ── RIGHT: GALLERY GRID ── */
  .es-right {
    position: relative;
  }

  /* "Moments That Matter" style pill header */
  .es-gallery-header {
    display: flex;
    justify-content: flex-start;
    margin-bottom: 16px;
  }
  .es-gallery-pill {
    background: #3d5a2a;
    color: #f5f0e8;
    font-family: 'Lato', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    padding: 8px 20px;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
  }
  .es-gallery-pill .leaf { font-size: 0.9rem; }

  /* 4-column grid */
  .es-gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
  }

  /* ── CARD ── */
  .es-card {
    background: #fff;
    border-radius: 3px;
    overflow: hidden;
    box-shadow: 2px 3px 12px rgba(0,0,0,0.14);
    position: relative;
  }

  /* Tape strip on top of card */
  .es-card::before {
    content: '';
    position: absolute;
    top: -6px;
    left: 50%;
    transform: translateX(-50%) rotate(-1.5deg);
    width: 44px;
    height: 16px;
    background: rgba(210,190,150,0.7);
    border-radius: 2px;
    z-index: 10;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
  }
  .es-card:nth-child(2n)::before { transform: translateX(-50%) rotate(1deg); }
  .es-card:nth-child(3n)::before { transform: translateX(-50%) rotate(-2.5deg); top: -5px; }
  .es-card:nth-child(4n)::before { transform: translateX(-50%) rotate(2deg); }

  /* ── PENDULUM ANIMATION ── */
  @keyframes pendulum-a {
    0%   { transform: rotate(-3deg); }
    50%  { transform: rotate(3deg); }
    100% { transform: rotate(-3deg); }
  }
  @keyframes pendulum-b {
    0%   { transform: rotate(3deg); }
    50%  { transform: rotate(-3deg); }
    100% { transform: rotate(3deg); }
  }
  @keyframes pendulum-c {
    0%   { transform: rotate(-2.5deg); }
    50%  { transform: rotate(2.5deg); }
    100% { transform: rotate(-2.5deg); }
  }
  @keyframes pendulum-d {
    0%   { transform: rotate(2deg); }
    50%  { transform: rotate(-2deg); }
    100% { transform: rotate(2deg); }
  }

  /* transform-origin at top-center so it swings from the tape */
  .es-card {
    transform-origin: top center;
  }

  .es-card:nth-child(1) { animation: pendulum-a 3.8s ease-in-out infinite; animation-delay: 0s; }
  .es-card:nth-child(2) { animation: pendulum-b 4.2s ease-in-out infinite; animation-delay: -1.1s; }
  .es-card:nth-child(3) { animation: pendulum-a 3.5s ease-in-out infinite; animation-delay: -0.6s; }
  .es-card:nth-child(4) { animation: pendulum-b 4.6s ease-in-out infinite; animation-delay: -2.2s; }
  .es-card:nth-child(5) { animation: pendulum-c 4.0s ease-in-out infinite; animation-delay: -0.4s; }
  .es-card:nth-child(6) { animation: pendulum-d 3.6s ease-in-out infinite; animation-delay: -1.8s; }
  .es-card:nth-child(7) { animation: pendulum-c 4.4s ease-in-out infinite; animation-delay: -0.9s; }
  .es-card:nth-child(8) { animation: pendulum-d 3.9s ease-in-out infinite; animation-delay: -2.5s; }

  /* pause pendulum on hover so user can interact with slider */
  .es-card:hover { animation-play-state: paused; }

  /* ── SLIDER inside card ── */
  .es-slider {
    position: relative;
    width: 100%;
    aspect-ratio: 4/3;
    overflow: hidden;
    background: #e0d5c0;
  }

  /* Fade-based slider — no translateX, no half-image bug */
  .es-slides {
    position: relative;
    width: 100%;
    height: 100%;
  }

  .es-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.45s ease;
    pointer-events: none;
  }

  .es-slide.active {
    opacity: 1;
    pointer-events: auto;
  }

  .es-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: sepia(6%) contrast(1.02);
  }

  /* prev/next arrows — show on hover */
  .es-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.75);
    border: none;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 5;
    opacity: 0;
    transition: opacity 0.2s;
    font-size: 13px;
    color: #3d2a10;
    padding: 0;
    box-shadow: 0 1px 4px rgba(0,0,0,0.2);
  }
  .es-arrow.prev { left: 6px; }
  .es-arrow.next { right: 6px; }
  .es-slider:hover .es-arrow { opacity: 1; }
  .es-arrow:hover { background: rgba(255,255,255,0.95); }

  /* ── CAPTION + DOTS ── */
  .es-card-footer {
    padding: 10px 10px 11px;
    background: #fff;
  }

  .es-cap-text {
    font-family: 'Lato', sans-serif;
    font-size: 0.72rem;
    color: #4a3820;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-align: center;
    margin-bottom: 7px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .es-cap-text .cap-heart {
    color: #c0766a;
  }

  /* dot indicators */
  .es-dots {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
  }

  .es-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #d0c4b0;
    cursor: pointer;
    transition: background 0.25s, transform 0.25s;
    border: none;
    padding: 0;
  }
  .es-dot.active {
    background: #6b4c2a;
    transform: scale(1.25);
  }

  /* ── DIVIDER ── */
  .es-mid-divider {
    display: flex;
    align-items: center;
    gap: 14px;
    margin: 32px auto 0;
    max-width: 700px;
    color: #8a7055;
    font-size: 0.65rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
  }
  .es-mid-divider span { white-space: nowrap; }
  .es-mid-divider .line { flex: 1; height: 1px; background: #c9b99a; }
  .es-mid-divider .heart3 { color: #c0766a; font-size: 0.8rem; }

  /* ── LOGOS ── */
  .es-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 0;
    margin-top: 20px;
  }

  .es-logo-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 14px 22px;
    border-right: 1.5px dashed #c9b99a;
    min-width: 130px;
  }
  .es-logo-card:last-child { border-right: none; }

  .es-logo-placeholder {
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.8rem;
    color: #5a4020;
    letter-spacing: 0.05em;
    gap: 6px;
  }

  .es-logo-name {
    font-size: 0.6rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #7a6040;
    text-align: center;
    line-height: 1.4;
    max-width: 110px;
  }

  .logo-iim { color: #1a3a7c; }
  .logo-skit { color: #b22222; }
  .logo-jecrc { color: #2a4a2a; }
  .logo-jaipuria { color: #7a5000; }
  .logo-acic { color: #1a4060; }

  /* ── RESPONSIVE ── */
  @media (max-width: 1100px) {
    .es-gallery-grid { grid-template-columns: repeat(2, 1fr); }
  }

  @media (max-width: 900px) {
    .es-section { padding: 44px 20px 36px; }
    .es-grid { grid-template-columns: 1fr; gap: 28px; }
    .es-left { align-items: center; text-align: center; }
    .es-body { max-width: 100%; }
    .es-divider { margin: 0 auto; }
    .es-gallery-grid { grid-template-columns: repeat(2, 1fr); }
    .es-logo-card { min-width: 100px; padding: 12px 14px; }
  }

  @media (max-width: 520px) {
    .es-gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
    .es-arrow { width: 22px; height: 22px; font-size: 11px; opacity: 0.7; }
    .es-logos { gap: 0; }
    .es-logo-card { min-width: 80px; padding: 10px 10px; }
    .es-logo-name { font-size: 0.52rem; }
  }


  
  /* =========================================================
   MEANINGFUL ENCOUNTERS — SCROLL TAGS (LEFT + RIGHT)
   This version EXPLICITLY styles both .ux-enc-swipe-tag--left
   and .ux-enc-swipe-tag--right with the same paper-note look,
   rather than relying on inheriting whatever your existing
   .ux-enc-swipe-tag base rule does. This guarantees both tags
   match regardless of what that base rule contains.

   If your original right tag's exact paper-note styling
   (rotation angle, font, pin color) differs from what's below,
   tell me the values and I'll match them precisely — these are
   reasonable defaults based on the screenshot you shared.

   Paste this AFTER your existing CSS, so these rules win.
   ========================================================= */

#ux-enc-tabs-wrapper{
  position: relative;
}

.ux-enc-swipe-tag--left,
.ux-enc-swipe-tag--right{
  position: absolute;
  top: -14px !important;
  z-index: 5;
  cursor: pointer;
  background: transparent;
  border: none;
  padding: 0;
  margin: 0;
  font-family: inherit;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  width: max-content;
  text-align: center;
}

.ux-enc-swipe-tag--left{ left: 6px; }
.ux-enc-swipe-tag--right{ right: 6px; }

/* the pin dot at the top */
.ux-enc-swipe-tag--left .ux-enc-swipe-pin,
.ux-enc-swipe-tag--right .ux-enc-swipe-pin{
  display: block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #8a6a52;
  box-shadow: 0 1px 2px rgba(0,0,0,0.3);
  flex-shrink: 0;
}

/* the little thread connecting pin to label */
.ux-enc-swipe-tag--left .ux-enc-swipe-thread,
.ux-enc-swipe-tag--right .ux-enc-swipe-thread{
  display: block;
  width: 1px;
  height: 8px;
  background: #8a6a52;
  flex-shrink: 0;
}

/* the paper-note label itself */
.ux-enc-swipe-tag--left .ux-enc-swipe-label,
.ux-enc-swipe-tag--right .ux-enc-swipe-label{
  display: flex;
  align-items: center;
  gap: 0.4rem;
  background: #fffaf2;
  border: 1px solid rgba(74,59,47,0.15);
  border-radius: 3px;
  padding: 0.4rem 0.7rem;
  box-shadow: 0 4px 10px rgba(74,59,47,0.2);
  font-family: 'Dancing Script', cursive, sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  color: #8a5a3c;
  white-space: nowrap;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.ux-enc-swipe-tag--left{ transform: rotate(-4deg); }
.ux-enc-swipe-tag--right{ transform: rotate(4deg); }

.ux-enc-swipe-tag--left:hover .ux-enc-swipe-label,
.ux-enc-swipe-tag--right:hover .ux-enc-swipe-label{
  transform: scale(1.04);
  box-shadow: 0 6px 14px rgba(74,59,47,0.28);
}

.ux-enc-swipe-tag--left .ux-enc-swipe-arrow,
.ux-enc-swipe-tag--right .ux-enc-swipe-arrow{
  width: 22px;
  height: 14px;
  flex-shrink: 0;
}

.ux-enc-swipe-tag--left .ux-enc-swipe-arrow path,
.ux-enc-swipe-tag--right .ux-enc-swipe-arrow path{
  stroke: #8a5a3c;
  stroke-width: 2;
  fill: none;
  stroke-linecap: round;
}

.ux-enc-swipe-arrow--flip{
  transform: scaleX(-1);
}

@media (max-width: 600px){
  .ux-enc-swipe-tag--left .ux-enc-swipe-label,
  .ux-enc-swipe-tag--right .ux-enc-swipe-label{
    font-size: 0.82rem;
    padding: 0.32rem 0.55rem;
  }
}

/* =========================================================
   MEANINGFUL ENCOUNTERS — SCROLL TAGS (LEFT + RIGHT)
   This version EXPLICITLY styles both .ux-enc-swipe-tag--left
   and .ux-enc-swipe-tag--right with the same paper-note look,
   rather than relying on inheriting whatever your existing
   .ux-enc-swipe-tag base rule does. This guarantees both tags
   match regardless of what that base rule contains.

   If your original right tag's exact paper-note styling
   (rotation angle, font, pin color) differs from what's below,
   tell me the values and I'll match them precisely — these are
   reasonable defaults based on the screenshot you shared.

   Paste this AFTER your existing CSS, so these rules win.
   ========================================================= */

#ux-enc-tabs-wrapper{
  position: relative;
  overflow: visible !important;
}


/* #ux-enc-tabs is the element that actually scrolls. It must
   never clip its absolutely-positioned siblings (the swipe
   tags), and its own scrolled content must never out-stack
   them. If your existing CSS already sets overflow-x on
   #ux-enc-tabs (it should, for the horizontal scroll), this
   just guarantees it doesn't also clip vertically and that
   nothing inside it can render above z-index: 50. */
#ux-enc-tabs{
  position: relative;
  z-index: 1;
  overflow-y: visible;
}

#ux-enc-tabs .ux-enc-tab{
  position: relative;
  z-index: 1;
}

/* the pin dot at the top */
.ux-enc-swipe-tag--left .ux-enc-swipe-pin,
.ux-enc-swipe-tag--right .ux-enc-swipe-pin{
  display: block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #8a6a52;
  box-shadow: 0 1px 2px rgba(0,0,0,0.3);
  flex-shrink: 0;
}

/* the little thread connecting pin to label */
.ux-enc-swipe-tag--left .ux-enc-swipe-thread,
.ux-enc-swipe-tag--right .ux-enc-swipe-thread{
  display: block;
  width: 1px;
  height: 8px;
  background: #8a6a52;
  flex-shrink: 0;
}

/* the paper-note label itself */
.ux-enc-swipe-tag--left .ux-enc-swipe-label,
.ux-enc-swipe-tag--right .ux-enc-swipe-label{
  display: flex;
  align-items: center;
  gap: 0.4rem;
  background: #fffaf2;
  border: 1px solid rgba(74,59,47,0.15);
  border-radius: 3px;
  padding: 0.4rem 0.7rem;
  box-shadow: 0 4px 10px rgba(74,59,47,0.2);
  font-family: 'Dancing Script', cursive, sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  color: #8a5a3c;
  white-space: nowrap;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.ux-enc-swipe-tag--left{ transform: rotate(-4deg); }
.ux-enc-swipe-tag--right{ transform: rotate(4deg); }

.ux-enc-swipe-tag--left:hover .ux-enc-swipe-label,
.ux-enc-swipe-tag--right:hover .ux-enc-swipe-label{
  transform: scale(1.04);
  box-shadow: 0 6px 14px rgba(74,59,47,0.28);
}

.ux-enc-swipe-tag--left .ux-enc-swipe-arrow,
.ux-enc-swipe-tag--right .ux-enc-swipe-arrow{
  width: 22px;
  height: 14px;
  flex-shrink: 0;
}

.ux-enc-swipe-tag--left .ux-enc-swipe-arrow path,
.ux-enc-swipe-tag--right .ux-enc-swipe-arrow path{
  stroke: #8a5a3c;
  stroke-width: 2;
  fill: none;
  stroke-linecap: round;
}

.ux-enc-swipe-arrow--flip{
  transform: scaleX(-1);
}

@media (max-width: 600px){
  .ux-enc-swipe-tag--left .ux-enc-swipe-label,
  .ux-enc-swipe-tag--right .ux-enc-swipe-label{
    font-size: 0.82rem;
    padding: 0.32rem 0.55rem;
  }
}

.ux-enc-nav-btn i {
  font-size: 1.1rem;
}



:root{
    --paper:        #f4ecdd;
    --paper-card:   #fbf5e8;
    --ink:          #3a2c22;
    --ink-soft:     #6b5a4a;
    --maroon:       #7c2035;
    --gold:         #c68a2e;
    --gold-tape:    #e0ab52;
    --line:         #c9ab7c;

    --tag-problem-bg: #f3c7cb;
    --tag-problem-tx: #7a2331;
    --tag-learn-bg:   #cfe0c4;
    --tag-learn-tx:   #34512a;

    --c1: #7c2035; /* maroon */
    --c2: #4c7a4c; /* green */
    --c3: #c17a2b; /* amber */
    --c4: #6b7a3a; /* olive */
    --c5: #c0405a; /* rose */
    --c6: #2e4c6b; /* navy */
    --c7: #b8860b; /* mustard */
    --c8: #7a4c8a; /* purple */
    --c9: #7c2035; /* maroon */
    --c10:#2e4c6b; /* navy */
    --c11:#c17a2b; /* amber */
    --c12:#4c7a4c; /* green */
  }
 
 
  .dgap-section{
    font-family:'Poppins', sans-serif;
    color:var(--ink);
    padding:130px 24px 20px;
    position:relative;
    overflow:hidden;
  }
 
  /* ---------- Header ---------- */
  .dgap-header{
    max-width:1120px;
    margin:0 auto 48px;
    padding-top:12px;
    text-align:center;
    position:relative;
  }
 
  .dgap-title{
    font-family:'Poppins', sans-serif;
    font-weight:800;
    letter-spacing:.06em;
    font-size:clamp(28px, 4.4vw, 46px);
    color:var(--ink);
    margin:0;
    text-transform:uppercase;
  }
 
  .dgap-script{
    font-family:'Dancing Script', cursive;
    font-weight:700;
    font-size:clamp(38px, 7vw, 74px);
    color:var(--maroon);
    margin:2px 0 18px;
    line-height:1;
  }
 
  .dgap-sub{
    position:relative;
    display:inline-block;
    font-size:15px;
    font-weight:500;
    color:#3a2a1e;
    padding:12px 28px 10px;
    z-index:1;
    font-family: "Marko One", serif;
  }
 
  /* hand-painted torn tape stroke behind the subtitle (using your image asset) */
  .dgap-sub::before{
    content:"";
    position:absolute;
    left:-18px;
    right:-18px;
    top:-10px;
    bottom:-8px;
    background:url("../images/pink-side-of-pinky/icons/background-text.png") no-repeat center/100% 100%;
    transform:rotate(-1deg);
    z-index:-1;
  }
 
  .dgap-deco{
    position:absolute;
    opacity:.9;
  }
  .dgap-deco.heart{ top:-10px; right:calc(50% - 210px); width:34px; height:34px; }
  .dgap-deco.plane{ top:2px; right:calc(50% - 304px); width:30px; color:var(--ink-soft); }
  .dgap-deco.leaf-l{ top:-10px; left:6px; width:70px; color:#8a9a63; transform:rotate(-8deg); }
 
  .dgap-deco.woman{
    top:-30px;
    left:-4px;
    height:180px;
    width:auto;
    max-width:190px;
    object-fit:contain;
    object-position:top left;
    z-index:2;
    pointer-events:none;
  }
 
  .dgap-deco.leaf-r-img{
    top:8px;
    right:-6px;
    height:130px;
    width:auto;
    max-width:160px;
    object-fit:contain;
    object-position:top right;
    z-index:1;
    pointer-events:none;
  }
 
  /* ---------- Grid ---------- */
  .dgap-grid{
    max-width:1280px;
    margin:0 auto;
    display:grid;
    grid-template-columns:repeat(4, minmax(0, 1fr)); 
    gap:20px;
    align-items:stretch;
  }
 
 
  .dgap-card{
    background:var(--paper-card);
    border:1.5px dashed var(--line);
    border-radius:14px;
    padding:20px 18px 18px;
    position:relative;
    box-shadow:0 3px 0 rgba(0,0,0,.03), 0 10px 24px -14px rgba(60,40,20,.35);
    transition:transform .35s ease, box-shadow .35s ease;
    /* opacity:0; */
    transform:translateY(6px);
    display:flex;
    flex-direction:column;
    height:100%;
  }
 
  .dgap-card.is-visible{
    animation:dgapIn .6s cubic-bezier(.2,.7,.3,1) forwards;
  }
 
  @keyframes dgapIn{
    to{ opacity:1; transform:translateY(0) rotate(var(--tilt,0deg)); }
  }
 
  /* number badge bounces in shortly after the card fades in */
  .dgap-card.is-visible .dgap-num{
    animation:dgapNumPop .5s cubic-bezier(.34,1.56,.64,1) both;
    animation-delay:.15s;
  }
  @keyframes dgapNumPop{
    0%{ transform:scale(.4) rotate(-15deg); opacity:0; }
    100%{ transform:scale(1) rotate(0deg); opacity:1; }
  }
 
  /* dashed divider "draws" itself in left to right */
  .dgap-card .dgap-divider{
    transform-origin:left center;
    /* transform:scaleX(0); */
  }
  .dgap-card.is-visible .dgap-divider{
    animation:dgapDrawLine .6s ease forwards;
    animation-delay:.3s;
  }
  @keyframes dgapDrawLine{
    to{ transform:scaleX(1); }
  }
 
  .dgap-card:nth-child(4n+1){ --tilt:-0.6deg; }
  .dgap-card:nth-child(4n+2){ --tilt:0.4deg; }
  .dgap-card:nth-child(4n+3){ --tilt:-0.3deg; }
  .dgap-card:nth-child(4n)  { --tilt:0.5deg; }
 
  .dgap-card:hover{
    transform:translateY(-6px) rotate(0deg) scale(1.015);
    box-shadow:0 18px 30px -16px rgba(60,40,20,.45);
    z-index:2;
  }
 
  .dgap-card-top{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:10px;
    margin-bottom:12px;
  }
 
  .dgap-num{
    flex:0 0 auto;
    width:42px; height:42px;
    border-radius:50%;
    display:flex; align-items:center; justify-content:center;
    color:#fff;
    font-family:'Lato', serif;
    font-weight:800;
    font-size:18px;
    background:var(--card-color, var(--maroon));
    box-shadow:0 4px 8px rgba(0,0,0,.18);
    border:2.5px solid rgba(255,255,255,.55);
  }
 
  .dgap-card-title{
    font-family: "Marko One", serif;
    font-weight:400;
    font-size:18px;
    line-height:1.28;
    color:var(--ink);
    margin:4px 0 0;
    flex:1;
  }
 
  /* ---- icon image slots ---- */
  .dgap-icon{
    flex:0 0 auto;
    width: 110px;
    height: 110px;
    display:flex;
    align-items:center;
    justify-content:center;
  }
  .dgap-icon img{
    width:100%;
    height:100%;
    object-fit:contain;
    filter:drop-shadow(0 3px 4px rgba(0,0,0,.18));
    display:block;
    animation:dgapFloat 3.6s ease-in-out infinite;
    transform-origin:center bottom;
  }
 
  /* gentle idle sway, staggered so all 4 icons in a row don't move in sync */
  @keyframes dgapFloat{
    0%, 100%{ transform:translateY(0) rotate(0deg); }
    50%{ transform:translateY(-5px) rotate(-3deg); }
  }
  .dgap-card:nth-child(4n+1) .dgap-icon img{ animation-delay:0s; }
  .dgap-card:nth-child(4n+2) .dgap-icon img{ animation-delay:.4s; }
  .dgap-card:nth-child(4n+3) .dgap-icon img{ animation-delay:.8s; }
  .dgap-card:nth-child(4n)   .dgap-icon img{ animation-delay:1.2s; }
 
  /* playful pop + wiggle when the card is hovered */
  .dgap-card:hover .dgap-icon img{
    animation:dgapWiggle .55s ease;
  }
  @keyframes dgapWiggle{
    0%{ transform:rotate(0deg) scale(1); }
    25%{ transform:rotate(-9deg) scale(1.1); }
    50%{ transform:rotate(7deg) scale(1.1); }
    75%{ transform:rotate(-4deg) scale(1.04); }
    100%{ transform:rotate(0deg) scale(1); }
  }
 
  .dgap-tag{
    position:relative;
    display:inline-block;
    font-size:10.5px;
    font-weight:700;
    letter-spacing:.02em;
    padding:5px 13px;
    margin-bottom:9px;
    clip-path: polygon(
      0% 6%, 3% 0%, 6% 9%, 10% 2%, 14% 10%, 18% 1%, 22% 8%, 26% 0%, 30% 9%,
      34% 2%, 38% 8%, 42% 0%, 46% 9%, 50% 2%, 54% 8%, 58% 0%, 62% 9%,
      66% 2%, 70% 8%, 74% 0%, 78% 9%, 82% 2%, 86% 8%, 90% 0%, 94% 9%, 97% 1%, 100% 6%,
      100% 94%, 97% 100%, 94% 91%, 90% 99%, 86% 92%, 82% 100%, 78% 91%, 74% 99%,
      70% 92%, 66% 100%, 62% 91%, 58% 99%, 54% 92%, 50% 100%, 46% 91%, 42% 99%,
      38% 92%, 34% 100%, 30% 91%, 26% 99%, 22% 92%, 18% 100%, 14% 90%, 10% 98%, 6% 91%, 3% 100%, 0% 94%
    );
  }
  .dgap-tag.problem{ background:var(--tag-problem-bg); color:var(--tag-problem-tx); }
  .dgap-tag.learn{ background:var(--tag-learn-bg); color:var(--tag-learn-tx); }
 
  .dgap-text{
    font-size:12.5px;
    line-height:1.55;
    color:#4a3c2f;
    /* margin:0 0 12px; */
  }

  
  .dgap-learn-row{
    display:flex;
    align-items:flex-end;
    justify-content:space-between;
    gap:8px;
  }
  .dgap-learn-row .dgap-text{ margin-bottom:0; }
 
  .dgap-mini-icon{
    flex:0 0 auto;
    width:24px; height:24px;
    display:flex;
    align-items:center;
    justify-content:center;
  }
  .dgap-mini-icon img{
    width:100%;
    height:100%;
    object-fit:contain;
    filter:drop-shadow(0 2px 3px rgba(0,0,0,.15));
    display:block;
    animation:dgapPulse 2.4s ease-in-out infinite;
  }
 
  @keyframes dgapPulse{
    0%, 100%{ transform:scale(1); }
    50%{ transform:scale(1.15); }
  }




  .dgap-divider{
    border:none;
    border-top:1.5px dashed var(--line);
    margin:10px 0 10px;
  }



  /* ---------- Footer quote ---------- */
  .dgap-footer{
  max-width:1180px;
  margin:40px auto 0;
  padding:0;
  background:transparent;
  border:none;
  box-shadow:none;
}

.dgap-footer img{
  width:100%;
  height:auto;
  display:block;
  border-radius:14px;
}
  /* ---------- Responsive ---------- */
  @media (max-width: 1020px){
    .dgap-grid{ grid-template-columns:repeat(3, minmax(0, 1fr)); }
  }

  @media (max-width: 760px){
    .dgap-grid{ grid-template-columns:repeat(2, minmax(0, 1fr)); gap:16px; }
    .dgap-deco.heart, .dgap-deco.plane{ display:none; }
    .dgap-deco.woman{ width:140px; top:-20px; }
    .dgap-deco.leaf-r-img{ width:110px; top:6px; }
    .dgap-footer{ flex-wrap:wrap; }
    .dgap-footer .leaf-icon{ display:none; }
  }

  @media (max-width: 480px){
    .dgap-section{ padding:88px 16px 56px; }
    .dgap-grid{ grid-template-columns:1fr; gap:16px; }
    .dgap-deco.leaf-l{ width:44px; }
    .dgap-deco.woman, .dgap-deco.leaf-r-img{ display:none; }
    .dgap-card-title{ font-size:17.5px; }
    .dgap-num{ width:48px; height:48px; font-size:22px; }
    .dgap-icon{ width:56px; height:56px; }
  }

  @media (prefers-reduced-motion: reduce){
    .dgap-card{ opacity:1; transform:none; animation:none; }
    .dgap-card:hover{ transform:none; }
  }



  @media (min-width: 600px) and (max-width: 1024px) {
  .dgap-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)); !important;
  }
}

  .dgap-part-block {
  margin: 8px 0;
}
.dgap-tag.mypart {
  background: #fde8d0; /* apni brand palette ke hisaab se color badal lena */
  color: #8a5a1f;
}


  :root{
    --cream:#f4ece1;
    --cream2:#efe4d4;
    --ink:#241b3a;
    --pink:#e0397e;
    --pink-soft:#f3b8cf;
    --purple-badge:#d9c7ee;
    --yellow-note:#f6c453;
    --green-note:#bcd88a;
    --lilac-note:#cdb6ea;
    --coral-note:#f2b1ae;
    --text-dark:#2b2430;
    --pin:#e8dcae;
  }

  *{ box-sizing:border-box; }
/* ================= PINKY SECTION — BASE (DESKTOP) ================= */

.pinky-section{
  position:relative;
  width:100%;
  max-width:100vw;
  background-image:url('../images/soul-background.png');
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
  overflow:hidden;
  padding:4vw 3vw 0vw;
  font-family:'Poppins', sans-serif;
  color:var(--text-dark);
  isolation:isolate;
}

/* ---------- OUTER GRID: photo (left) | content (right) ---------- */
.pinky-grid{
  position:relative;
  z-index:2;
  display:grid;
  grid-template-columns: 32% 68%;
  gap: 1.5vw;
  align-items:start;
  max-width:1600px;
  margin:0 auto;
}

/* ---------- LEFT: Photo ---------- */
.photo-col{
  position:relative;
}

.photo-col::before{
  content:'';
  position:absolute;
  top:-5%;
  left:-8%;
  width:115%;
  height:110%;
  background: url('../images/pinky-pic-bg.png') no-repeat center bottom/contain;
  z-index:0;
}

.main-photo{
  position:relative;
  z-index:2;
  width:100%;
}
.main-photo img{
  width:100%;
  height:auto;
  display:block;
  object-fit:contain;
}

/* ---------- RIGHT: content wrapper ---------- */
.content-col{
  display:grid;
  grid-template-columns: 55% 45%;
  gap: 1.5vw;
  align-items:start;
}

/* ---------- CENTER: Title + copy + list ---------- */
.center-col{
  position:relative;
}

.title-wrap{
  position:relative;
  margin-bottom: 0.8vw;
  width:100%;
  transform: rotate(-2deg);
}

.title-top{
  font-family:'Playfair Display', serif;
  font-style:italic;
  font-weight:700;
  color:var(--ink);
  font-size: clamp(1.8rem, 4vw, 3.4rem);
  margin:0;
  white-space:nowrap;
}

.title-main{
  font-family:'Dancing Script', cursive;
  font-weight:700;
  color:var(--pink);
  font-size: clamp(4.5rem, 10vw, 9.5rem);
  line-height:0.85;
  margin: -0.4vw 0 0 0;
  display:flex;
  align-items:center;
  gap:0.3vw;
  white-space:nowrap;
}
.title-main .heart{
  font-size:0.3em;
  color:var(--pink);
  transform: rotate(8deg);
}

.subtitle-banner{
  display:inline-block;
  background:var(--ink);
  color:#fff;
  font-family:'Caveat', cursive;
  font-weight:600;
  font-size: clamp(1.1rem, 1.6vw, 1.6rem);
  padding: 0.35rem 1.2rem;
  transform: rotate(0.5deg);
  margin-top: 0.5vw;
  position:relative;
}

.know-yourself{
  position:relative;
  margin-top: 1.6vw;
  margin-bottom: 5.3vw;
  display:grid;
  grid-template-columns: 1fr auto 1fr;
  grid-template-rows: auto 1fr;
  gap: 0.6vw 1.6vw;
  align-items:start;
}

.know-yourself h3{
  grid-column: 1;
  grid-row: 1;
  font-family:'Playfair Display', serif;
  font-weight:700;
  letter-spacing: 0.04em;
  color:var(--ink);
  font-size: clamp(0.8rem, 1vw, 1.35rem);
  margin: 0 0 0.4vw 0;
  position:relative;
  display:inline-block;
  text-align:left;
}
.know-yourself h3::before,
.know-yourself h3::after{
  content:'✧';
  color:var(--pink);
  font-size:0.4em;
  margin: 0 0.4rem;
  position:relative;
  top:-2px;
}

.know-yourself p{
  grid-column: 1;
  grid-row: 2;
  font-family:'Caveat', cursive;
  font-size: clamp(1.05rem, 1.5vw, 1.35rem);
  line-height:1.05;
  color:var(--text-dark);
  margin:0;
}

.divider{
  grid-column: 2;
  grid-row: 1 / 3;
  width:1px;
  align-self:stretch;
  background-image: linear-gradient(to bottom, var(--ink) 55%, transparent 45%);
  background-size: 2px 10px;
  background-repeat: repeat-y;
  opacity:0.5;
  min-height: 100%;
}

.feature-list{
  grid-column: 3;
  grid-row: 1 / 3;
  list-style:none;
  margin:0;
  padding:0;
  display:flex;
  flex-direction:column;
  justify-content:center;
  gap: 0.6vw;
  align-self:start;
}
.feature-list li{
  font-family:'Playfair Display', serif;
  font-style:italic;
  font-size: clamp(0.85rem, 1.05vw, 1.05rem);
  display:flex;
  align-items:center;
  gap:0.6rem;
  color:var(--text-dark);
}
.feature-list .icon{
  font-size:1.1em;
  flex-shrink:0;
}

.sticky-note{
  position:absolute;
  left: -100px;
  bottom: -6.5vw;
  transform: rotate(-3deg);
  z-index: 4;
}

.sticky-note-img{
  display:block;
  width: 100%;
  max-width: 210px;
  height: auto;
}

.bottom-tagline{
  margin-top: 2.5vw;
  font-family:'Caveat', cursive;
  font-weight:700;
  font-size: clamp(1.1rem, 1.7vw, 1.7rem);
}
.bottom-tagline .h1c{ color:var(--pink); }
.bottom-tagline .h2c{ color:#5c9e5c; }
.bottom-tagline .h3c{ color:var(--ink); }

/* ---------- RIGHT of content-col: Polaroid grid ---------- */
.polaroid-col{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 1vw 0.8vw;
}
.polaroid{
  position:relative;
  background:#fff;
  padding: 0.8rem 0.8rem 2.6rem 0.8rem;
  box-shadow: 4px 6px 12px rgba(0,0,0,0.12);
  border-radius:2px;
}

.polaroid-caption-img{
  position:absolute;
  bottom:0.4rem;
  left:0.4rem;
  right:0.4rem;
  width: calc(100% - 0.8rem);
  height:auto;
  display:block;
}
.polaroid:nth-child(1){ transform: rotate(-3deg); margin-top: 0; }
.polaroid:nth-child(2){ transform: rotate(3deg); margin-top: 8%; }
.polaroid:nth-child(3){ transform: rotate(-2deg); margin-top: -2%; }
.polaroid:nth-child(4){ transform: rotate(2deg); margin-top: 6%; }

.polaroid .pin{
  position:absolute;
  top:-10px;
  left:50%;
  transform: translateX(-50%);
  width:16px;
  height:16px;
  border-radius:50%;
  background: radial-gradient(circle at 35% 30%, #ff8a8a, #d92b2b 60%, #8f1717 100%);
  box-shadow:
    0 3px 4px rgba(0,0,0,0.35),
    inset -2px -2px 3px rgba(0,0,0,0.3),
    inset 2px 2px 3px rgba(255,255,255,0.4);
  z-index:4;
}

.polaroid-photo{
  width:100%;
  aspect-ratio: 1 / 1;
  background: linear-gradient(135deg,#e7d9c3,#cbb994);
  display:flex;
  align-items:center;
  justify-content:center;
  color:#7c6c4d;
  font-size:0.7rem;
  text-align:center;
  padding:0.5rem;
  overflow:hidden;
}
.polaroid-photo img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:none; /* set to block once you add a real src */
}

.polaroid:nth-child(1) .polaroid-caption-img{ bottom: 0.5rem; }
.polaroid:nth-child(2) .polaroid-caption-img{ bottom: 0.7rem; }
.polaroid:nth-child(3) .polaroid-caption-img{ bottom: -1rem; }
.polaroid:nth-child(4) .polaroid-caption-img{ bottom: -1rem; }

/* ---------- Decorative doodles ---------- */
.doodle{
  position:absolute;
  z-index:3;
  pointer-events:none;
  opacity:0.85;
}
.doodle svg{ width:100%; height:100%; display:block; }


/* ================= RESPONSIVE ================= */

/* ---------- TABLET / SMALL LAPTOP (≤1100px) ---------- */
@media (max-width: 1100px){
  .pinky-grid{
    grid-template-columns: 1fr;
    gap: 0;
    margin-top:100px;
  }

  .photo-col{
    order:1;
    max-width: 320px;
    margin: 0 auto 2.5rem;
  }
   .photo-col::before {
    top: -15%;
    left: -20%;
    width: 140%;
    height: 130%;
  background-size: 100% 100%;   /* image ko poore box mein stretch kar do, sirf testing ke liye */
  background-position: center;
    background: url('../images/pinky-pic-bg.png') no-repeat center bottom/contain;

  }

  .title-top{
    font-size:6rem;
  }
  .title-main{
    font-size: 8rem;
  }
  .subtitle-banner{
    font-size: 3rem;
  }
  .content-col{
    grid-template-columns: 1fr;
    order:2;
    margin-top: 0;
  }

  .center-col{ order:1; text-align:center; }
  .polaroid-col{
    order:2;
    grid-template-columns: 1fr 1fr;
    margin-top: 2.5rem;
    max-width: 480px;
    margin-left:auto;
    margin-right:auto;
  }

  .doodle{ display:none; }

  .title-wrap{
    transform: none;
    text-align:center;
  }
  .title-top{ white-space:normal; }
  .title-main{
    white-space:normal;
    justify-content:center;
  }
  .subtitle-banner{ transform:none; margin-top: 20px;}

  /* know-yourself: single column flow instead of 3-col grid */
  .know-yourself{
    display:flex;
    flex-direction:column;
    align-items:center;
    text-align:center;
    margin-top: 2rem;
    margin-bottom: 2.5rem;
    gap: 0.8rem;
  }
  .know-yourself h3,
  .know-yourself p{
    grid-column: unset;
    grid-row: unset;
    text-align:center;
  }
  .know-yourself p{ max-width: 480px; }

  .divider{
    grid-column: unset;
    grid-row: unset;
    width: 60%;
    height:1px;
    min-height:0;
    background-image: linear-gradient(to right, var(--ink) 55%, transparent 45%);
    background-size: 10px 2px;
    background-repeat: repeat-x;
    margin: 0.5rem 0;
  }

  .feature-list{
    grid-column: unset;
    grid-row: unset;
    align-items: center;
    max-width: 320px;
    margin: 0 auto;
  }
  .feature-list li{ justify-content:center; }

  /* sticky note: out of absolute flow, sits naturally after content */
  .sticky-note{
    position: relative;
    left: auto;
    bottom: auto;
    margin: 1.5rem auto 0;
    display:flex;
    justify-content:center;
  }
  .sticky-note-img{ max-width: 190px; display: none;}

  .bottom-tagline{ text-align:center; font-size: 3rem; }
}

/* ---------- iPAD RANGE: know-yourself back to ROW layout (601px–1100px) ---------- */
@media (min-width: 601px) and (max-width: 1100px){

  .ep-grid { grid-template-columns: repeat(2, 1fr);}
  .know-yourself{
    display:grid;
    grid-template-columns: minmax(200px, 300px) auto minmax(180px, 260px);
    grid-template-rows: auto 1fr;
    justify-content:center;
    align-items:start;
    text-align:left;
    gap: 0.8rem 2rem;
    max-width: 700px;
    margin: 2rem auto 2.5rem;
  }

  .know-yourself h3{
    grid-column: 1;
    grid-row: 1;
    text-align:left;
    font-size:1.2rem;
  }

  .know-yourself p{
    grid-column: 1;
    grid-row: 2;
    text-align:left;
    max-width: 300px;
    font-size:1.8rem;
  }

  .divider{
    grid-column: 2;
    grid-row: 1 / 3;
    width:1px;
    height:auto;
    min-height:100%;
    background-image: linear-gradient(to bottom, var(--ink) 55%, transparent 45%);
    background-size: 2px 10px;
    background-repeat: repeat-y;
    margin:0;
  }

  .feature-list{
    grid-column: 3;
    grid-row: 1 / 3;
    align-items:flex-start;
    justify-content:center;
    max-width: 300px;
    margin:0;
  }
  .feature-list li{
    justify-content:flex-start;
    font-size:1.2rem;
  }

  /* sticky note shouldn't disturb the row grid — keep it below, centered */
  .sticky-note{
    grid-column: 1 / -1;
    grid-row: 3;
    position: relative;
    left:auto;
    bottom:auto;
    margin: 1.2rem auto 0;
    display:flex;
    justify-content:center;
  }
}
/* ---------- TABLET PORTRAIT / LARGE PHONE (≤768px) ---------- */
@media (max-width: 768px){
  .pinky-section{ padding: 10vw 5vw 6vw; }

  .photo-col{ max-width: 320px; }


  .title-main{ font-size: clamp(3.6rem, 13vw, 5.5rem); }
  .subtitle-banner{ font-size: 1rem; padding: 0.3rem 1rem; }

  .know-yourself p{ font-size: 1.1rem; padding: 0 0.5rem; }

  /* feature list — simple left-aligned block, no forced centering */
  .feature-list{
    align-items: flex-start;
    max-width: 280px;
  }
  .feature-list li{
    justify-content: flex-start;
    font-size: 0.95rem;
  }

  .polaroid-col{ gap: 5vw 4vw; }
}

/* ---------- MOBILE (≤600px) ---------- */
@media (max-width: 600px){
  .pinky-section{ padding: 8vw 5vw 6vw; }

  .photo-col{ max-width: 260px; }

  .title-top{ font-size: clamp(1.4rem, 5vw, 1.9rem); }
  .title-main{ font-size: clamp(3rem, 15vw, 4.2rem); }

  /* unnecessary flourish removed on mobile */
  .title-main .heart{ display:none; }

  .know-yourself p{ font-size: 1rem; line-height: 1.2; }

  /* sticky note crowds mobile view — hide it */
  .sticky-note{ display:none; }

  .polaroid-col{
    grid-template-columns: 1fr 1fr;
    gap: 6vw 4vw;
    max-width: 340px;
  }
  .polaroid:nth-child(n){ margin-top:0; } /* flat 2x2 grid on mobile, no stagger */
  .polaroid{ padding: 0.6rem 0.6rem 2.2rem 0.6rem; }

  .bottom-tagline{
    text-align:center;
    font-size: clamp(1rem, 4vw, 1.3rem);
    margin-top: 1.8rem;
  }
}

/* ---------- VERY SMALL PHONES (≤380px) ---------- */
@media (max-width: 380px){
  .title-main{ font-size: 3.4rem; }
  .know-yourself p{ font-size: 0.92rem; }
  .feature-list li{ font-size: 0.88rem; }
  .polaroid-col{ max-width: 280px; }
}


    .ep-section {
 
    padding: 50px 6vw 30px;
    font-family: 'Jost', sans-serif;
    color: var(--ep-ink);
    position: relative;
    overflow: hidden;
  }

  .ep-section * { box-sizing: border-box; }

  /* --- section header --- */
  .ep-head {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 34px;
  }

  .ep-eyebrow-top {
    font-family: 'Dancing Script', cursive;
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    color: #a9636f;
    display: block;
    margin-bottom: 4px;
  }

  .ep-head h2 {
    font-family: 'Playfair Display', sans-serif;
    font-weight: 800;
    font-size: clamp(2rem, 4.2vw, 3.1rem);
    color: #2f3b4c;
  }

  .ep-head p {
    font-size: clamp(0.95rem, 1.4vw, 1.08rem);
    line-height: 1.7;
    color: #55503f;
    margin: 0 auto;
    max-width: 520px;
  }

  .ep-scribble { width: 130px; margin: 14px auto 0; display: block; }

  /* --- grid --- */
  .ep-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0px;
    max-width: 1020px;
    margin: 0 auto;
  }

  .ep-card {
    position: relative;
    overflow: hidden;
    background-size: cover;
    background-repeat: no-repeat;
    box-shadow: 0 14px 34px rgba(43,36,29,0.18);
    opacity: 0;
    transform: translateY(34px);
    transition: opacity 0.75s ease, transform 0.75s ease;
  }

  .ep-card.ep-in-view { opacity: 1; transform: translateY(0); }

  .ep-card--colours    { background-image: url('../images/expressive-art1.png'); background-position: 82% 42%; }
  .ep-card--individual { background-image: url('../images/soulful-sessions.png');    background-position: 85% 30%; }
  .ep-card--soul        { background-image: url('../images/soul-space.png');    background-position: 80% 40%; }
  .ep-card--kids        { background-image: url('../images/creative-healing.png');    background-position: 62% 40%; }


  /* cream wash so text stays legible over the negative-space side of each photo */
  .ep-card::before {
    content: '';
    position: absolute;
    inset: 0;
    /* background: linear-gradient(100deg,
      rgba(247,240,228,0.97) 0%,
      rgba(247,240,228,0.92) 40%,
      rgba(247,240,228,0.4) 60%,
      rgba(247,240,228,0) 72%); */
    pointer-events: none;
  }

  /* colour-tinted watercolour wash behind the photo, like the reference */
  .ep-card--colours::after,
  .ep-card--individual::after,
  .ep-card--kids::after {
    content: '';
    position: absolute;
    inset: 0;
    mix-blend-mode: multiply;
    opacity: 0.16;
    pointer-events: none;
  }
  .ep-card--colours::after    { background: radial-gradient(ellipse at 75% 30%, #c1584a 0%, transparent 60%); }
  .ep-card--individual::after { background: radial-gradient(ellipse at 78% 25%, #3a6ea5 0%, transparent 60%); }
  .ep-card--kids::after        { background: radial-gradient(ellipse at 70% 25%, #7a4a9e 0%, transparent 60%); }

  .ep-card-body {
    position: relative;
    z-index: 2;
    padding: 30px 20px 26px 26px;
    width: 66%;
    height: 100%;
    display: flex;
    flex-direction: column;
  }

  /* --- doodles --- */
  .ep-doodle { position: absolute; z-index: 2; pointer-events: none; }
  .ep-doodle-sun    { top: 22px; right: 26px; width: 54px; }
  .ep-doodle-cloud  { top: 78px; right: 18px; width: 62px; }
  .ep-doodle-flower { top: 20px; left: 16px;  width: 40px; }
  .ep-doodle-kids   { top: 108px; left: 6%;   width: 66px; opacity: 0.85; }

  /* --- title block --- */
  .ep-title-main {
     font-family: "Marko One", serif;
    font-weight: 500;
    font-size: clamp(1.3rem, 1.6vw + 0.7rem, 1.7rem);
    line-height: 1.08;
    margin: 0 0 8px;
    letter-spacing: 0.01em;
  }

  .ep-ribbon-sub {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
    font-weight: 700;
    font-size: clamp(0.95rem, 1vw + 0.5rem, 1.2rem);
    color: #3a2b12;
    padding: 10px 26px 12px;
    /* background-image: url('assets/ep-ribbon-bg.png'); */
    background-size: 100% 100%;
    background-repeat: no-repeat;
    background-position: center;
    transform: rotate(-1.2deg);
    margin: 0 0 16px;
    width: fit-content;
    filter: drop-shadow(0 4px 8px rgba(0,0,0,0.12));
  }

  .ep-card-body p.ep-desc {
    font-size: 0.85rem;
    line-height: 1.5;
    color: #423d31;
    margin: 0 0 8px;
    max-width: 94%;
    margin-bottom:20px;
  }

  /* --- icon list --- */
  .ep-list {
    list-style: none;
    margin: 0 0 auto;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  .ep-list li {
    font-size: 0.82rem;
    line-height: 1.25;
    color: var(--ep-ink);
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
  }

  .ep-list li i {
    flex: none;
    width: 16px;
    text-align: center;
    font-size: 0.88rem;
  }

  /* --- bottom tagline ribbon --- */
    .ep-ribbon-footer {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
    font-weight: 700;
    font-size: clamp(0.95rem, 1vw + 0.55rem, 1.15rem);
    line-height: 1.3;
    padding: 0 15%;
    margin-top: 18px;
    width: 106%;
    aspect-ratio: 1699 / 926;
    background-image: url('../images/exp-card-bg.png');
    background-size: 100% 100%;
    background-repeat: no-repeat;
    background-position: center;
    transform: rotate(-1deg) translateX(-3%);
    filter: drop-shadow(0 6px 10px rgba(0,0,0,0.15));
  }

  .ep-card--colours    .ep-ribbon-sub    {background-image:url('../images/soul-space-heading.png'); color:#fff; }
  .ep-card--colours    .ep-ribbon-footer { background-image: url('../images/exp-card-bg.png') }
  .ep-card--colours    .ep-title-main   { color: #a9463a; }
  .ep-card--colours    .ep-list li i    { color: #a9463a; }

  .ep-card--individual .ep-ribbon-sub    { background-image:url('../images/soul-heading.png'); color:#fff; }
  .ep-card--individual .ep-ribbon-footer { background-image: url('../images/soul-card-bg.png');}
  .ep-card--individual .ep-title-main   { color: #4a2f6d;  }
  .ep-card--individual .ep-list li i    { color: #6d3d8f;  }

  .ep-card--soul        .ep-ribbon-sub    {background-image:url('../images/creative-heading.png');  color:#fff;}
  .ep-card--soul        .ep-ribbon-footer { background-image: url('../images/soulspace-footer-bg.png');}
  .ep-card--soul        .ep-title-main   { color: #245001; }
  .ep-card--soul        .ep-list li i    { color: #245001; }


  .ep-card--kids        .ep-ribbon-sub    { background-image:url('../images/soulful-heading.png');  color:#fff;}
  .ep-card--kids        .ep-ribbon-footer {background-image: url('../images/creative-footer-bg.png');}
  .ep-card--kids        .ep-title-main   { color: #c4446c;}
  .ep-card--kids        .ep-list li i    { color: #c0405a }

  /* --- staggered reveal delays --- */
  .ep-grid .ep-card:nth-child(1) { transition-delay: 0s; }
  .ep-grid .ep-card:nth-child(2) { transition-delay: 0.15s; }
  .ep-grid .ep-card:nth-child(3) { transition-delay: 0.3s; }

  /* ===================== responsive ===================== */

 @media (max-width: 980px) {
  .ep-grid { grid-template-columns: repeat(2, 1fr); }
  
  .ep-card-body {
    width: 74%; /* thoda zyada space text ko, tablet पर */
    padding: 24px 16px 20px 20px;
  }
  
  .ep-title-main { font-size: clamp(1.15rem, 2vw, 1.4rem); }
  .ep-card-body p.ep-desc { font-size: 0.8rem; }
  .ep-list li { font-size: 0.78rem; }
}

  @media (max-width: 640px) {
    .ep-section { padding: 60px 5vw 70px; }
    .ep-grid { grid-template-columns: 1fr; gap: 26px; }
    .ep-grid .ep-card:nth-child(3) { grid-column: auto; max-width: none; margin: 0; }

    /* .ep-card { min-height: 560px; } */
    .ep-card-body { width: 76%; padding: 26px 16px 22px 20px; }
    .ep-ribbon-footer { width: 108%; }
    .ep-card::before {
      background: linear-gradient(105deg,
        rgba(247,240,228,0.97) 0%,
        rgba(247,240,228,0.93) 48%,
        rgba(247,240,228,0.42) 68%,
        rgba(247,240,228,0) 82%);
    }
  }

  @media (prefers-reduced-motion: reduce) {
    .ep-card { transition: none; opacity: 1; transform: none; }
  }

.quote-strip {
  position: relative;
  background-image: url('../images/soul-footer.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
  isolation: isolate;
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
}

/* torn paper jagged edges — top & bottom */
.quote-strip__torn {
  position: absolute;
  left: 0;
  width: 100%;
  height: 14px;
  background: #fff;
  z-index: 2;
}

.quote-strip__torn--top {
  top: 0;
  clip-path: polygon(
    0% 100%, 2% 30%, 4% 90%, 6% 20%, 8% 80%, 10% 10%, 12% 70%,
    14% 25%, 16% 95%, 18% 15%, 20% 75%, 22% 30%, 24% 85%, 26% 20%,
    28% 90%, 30% 10%, 32% 70%, 34% 25%, 36% 95%, 38% 15%, 40% 80%,
    42% 20%, 44% 90%, 46% 10%, 48% 75%, 50% 30%, 52% 85%, 54% 20%,
    56% 95%, 58% 15%, 60% 80%, 62% 25%, 64% 90%, 66% 10%, 68% 70%,
    70% 30%, 72% 85%, 74% 20%, 76% 95%, 78% 15%, 80% 80%, 82% 25%,
    84% 90%, 86% 10%, 88% 75%, 90% 30%, 92% 85%, 94% 20%, 96% 95%,
    98% 15%, 100% 80%, 100% 100%
  );
  transform: translateY(-100%);
}

.quote-strip__torn--bottom {
  bottom: 0;
  clip-path: polygon(
    0% 0%, 2% 70%, 4% 10%, 6% 80%, 8% 20%, 10% 90%, 12% 30%,
    14% 75%, 16% 5%, 18% 85%, 20% 25%, 22% 70%, 24% 15%, 26% 80%,
    28% 10%, 30% 90%, 32% 30%, 34% 75%, 36% 5%, 38% 85%, 40% 20%,
    42% 80%, 44% 10%, 46% 90%, 48% 25%, 50% 70%, 52% 15%, 54% 80%,
    56% 5%, 58% 85%, 60% 20%, 62% 90%, 64% 30%, 66% 75%, 68% 15%,
    70% 70%, 72% 5%, 74% 90%, 76% 25%, 78% 80%, 80% 10%, 82% 85%,
    84% 20%, 86% 90%, 88% 30%, 90% 70%, 92% 10%, 94% 80%, 96% 20%,
    98% 90%, 100% 20%, 100% 0%
  );
  transform: translateY(100%);
}

.quote-strip__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  position: relative;
}

/* ---------- LEFT girl ---------- */
.quote-strip__girl {
  flex: 0 0 auto;
  width: 160px;
}

.quote-strip__girl img {
  width: 100%;
  height: auto;
  display: block;
}

/* ---------- CENTER text ---------- */
.quote-strip__text {
  flex: 1 1 auto;
  text-align: center;
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 1.5rem;
  line-height: 1.6;
  color: #3a2e28;
  padding: 0 20px;
}

.quote-strip__highlight {
  font-family: 'Dancing Script', cursive;
  font-style: normal;
  font-size: 1.9rem;
  color: #d6588f;
  font-weight: 600;
}

.quote-strip__heart {
  display: inline-block;
  color: #d6588f;
  margin-left: 4px;
  cursor: pointer;
  transition: transform 0.25s ease;
}

.quote-strip__heart:hover,
.quote-strip__heart.pulse {
  transform: scale(1.35);
}

/* ---------- RIGHT card ---------- */
.quote-strip__card {
  flex: 0 0 auto;
  width: 190px;
  transform: rotate(3deg);
  transition: transform 0.35s ease;
}

.quote-strip__card img {
  width: 100%;
  height: auto;
  display: block;
  filter: drop-shadow(0 6px 10px rgba(0,0,0,0.12));
}

.quote-strip__card:hover {
  transform: rotate(0deg) translateY(-4px);
}

/* ================= RESPONSIVE ================= */

@media (max-width: 992px) {
  .quote-strip__text { font-size: 1.25rem; }
  .quote-strip__highlight { font-size: 1.6rem; }
  .quote-strip__girl { width: 130px; }
  .quote-strip__card { width: 160px; }
}

@media (max-width: 768px) {
  /* .quote-strip { padding: 45px 20px; } */
  .quote-strip__inner {
    flex-wrap: wrap;
    justify-content: center;
    text-align: center;
    gap: 18px;
  }
  .quote-strip__text {
    order: 1;
    flex: 1 1 100%;
    padding: 0 10px;
    font-size: 1.15rem;
  }
  .quote-strip__girl {
    order: 2;
    width: 110px;
  }
  .quote-strip__card {
    order: 3;
    width: 150px;
    transform: rotate(3deg);
  }
}

@media (max-width: 480px) {
  .quote-strip__text { font-size: 1rem; line-height: 1.5; }
  .quote-strip__highlight { font-size: 1.4rem; }
  .quote-strip__girl { width: 90px; }
  .quote-strip__card { width: 130px; }
  .quote-strip{max-width:380px; padding:30px 0px;}
}

.sbj-signature-img {
  height: 80px;
  width: auto;
  display: inline-block;
}


.scrap-arrows {
display: flex;
justify-content: center;
align-items: center;
gap: 18px;
padding: 6px 0 34px;
position: relative;
z-index: 5;
}

.scrap-arrow {
width: 44px;
height: 44px;
border-radius: 50%;
border: 1.5px solid #B89E7A;
background: rgba(250, 245, 235, 0.95);
color: #5C4A32;
font-size: 18px;
cursor: pointer;
display: flex;
align-items: center;
justify-content: center;
box-shadow: 0 2px 10px rgba(60, 45, 25, 0.15);
transition: background 0.2s ease, transform 0.2s ease, opacity 0.3s ease;
}

.scrap-arrow:hover {
background: #EDE4D3;
transform: scale(1.08);
}

.scrap-arrow:active {
transform: scale(0.95);
}

/* Left arrow starts hidden (page loads at scroll position 0);
your existing JS fades it in once the user scrolls right */
#scrapHintLeft {
opacity: 0;
pointer-events: none;
}

/* Keep arrows comfortably tappable on mobile */
@media(max-width: 640px) {
.scrap-arrow {
width: 40px;
height: 40px;
font-size: 16px;
}
.scrap-arrows {
gap: 14px;
padding-bottom: 26px;
}
}




@media (max-width: 768px) {
  .footer-bottom .footer-credit {
    display: block;
    margin-top: 6px;
  }

  .footer-bottom .divider {
    display: none; /* mobile pe "|" divider hata diya kyunki ab wo separate line pe hai */
  }
}



/*.launch-popup-overlay {*/
/*    display: none;*/
/*    position: fixed;*/
/*    top: 0; left: 0;*/
/*    width: 100%; height: 100%;*/
/*    background: rgba(0, 0, 0, 0.72);*/
/*    z-index: 99999;*/
/*    align-items: center;*/
/*    justify-content: center;*/
/*    padding: 20px;*/
/*    box-sizing: border-box;*/
/*    opacity: 0;*/
/*    transition: opacity 0.35s ease;*/
/*  }*/

/*  .launch-popup-overlay.show {*/
/*    display: flex;*/
/*    opacity: 1;*/
/*  }*/

/*  .launch-popup-box {*/
/*    position: relative;*/
/*    max-width: 620px;*/
/*    width: 100%;*/
/*    transform: scale(0.9);*/
/*    transition: transform 0.35s ease;*/
/*  }*/

/*  .launch-popup-overlay.show .launch-popup-box {*/
/*    transform: scale(1);*/
/*  }*/

/*  .launch-popup-img {*/
/*    width: 100%;*/
/*    height: auto;*/
/*    display: block;*/
/*    border-radius: 14px;*/
/*    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.45);*/
/*  }*/

/*  .launch-popup-close {*/
/*    position: absolute;*/
/*    top: -14px;*/
/*    right: -14px;*/
/*    width: 36px;*/
/*    height: 36px;*/
/*    border-radius: 50%;*/
/*    background: #fff;*/
/*    border: none;*/
/*    font-size: 22px;*/
/*    line-height: 1;*/
/*    cursor: pointer;*/
/*    color: #333;*/
/*    box-shadow: 0 3px 10px rgba(0,0,0,0.3);*/
/*    display: flex;*/
/*    align-items: center;*/
/*    justify-content: center;*/
/*  }*/

/*  .launch-popup-close:hover {*/
/*    background: #f0f0f0;*/
/*  }*/

/*  @media (max-width: 480px) {*/
/*    .launch-popup-close {*/
/*      top: -10px;*/
/*      right: 4px;*/
/*      width: 32px;*/
/*      height: 32px;*/
/*      font-size: 20px;*/
/*    }*/
/*  }*/
  
    /* ══ Large laptops / small desktops ══ */
/*  @media (max-width: 1024px) {*/
/*    .launch-popup-box {*/
/*      max-width: 560px;*/
/*    }*/
/*  }*/

  /* ══ iPad / Tablets (portrait & landscape) ══ */
/*  @media (max-width: 900px) {*/
/*    .launch-popup-box {*/
/*      max-width: 500px;*/
/*      max-height: 85vh;*/
/*    }*/
/*    .launch-popup-img {*/
/*      max-height: 85vh;*/
/*    }*/
/*  }*/

  /* ══ Small tablets / large phones ══ */
/*  @media (max-width: 600px) {*/
/*    .launch-popup-overlay {*/
/*      padding: 14px;*/
/*    }*/
/*    .launch-popup-box {*/
/*      max-width: 100%;*/
/*      max-height: 88vh;*/
/*    }*/
/*    .launch-popup-img {*/
/*      max-height: 88vh;*/
/*      border-radius: 10px;*/
/*    }*/
/*    .launch-popup-close {*/
/*      top: -10px;*/
/*      right: 2px;*/
/*      width: 32px;*/
/*      height: 32px;*/
/*      font-size: 20px;*/
/*    }*/
/*  }*/

  /* ══ Short-height screens (landscape phones/tablets, small laptops) ══ */
/*  @media (max-height: 500px) {*/
/*    .launch-popup-box {*/
/*      max-height: 92vh;*/
/*    }*/
/*    .launch-popup-img {*/
/*      max-height: 92vh;*/
/*    }*/
/*    .launch-popup-close {*/
/*      top: 4px;*/
/*      right: 4px;*/
/*    }*/
/*  }*/

  /* ══ Very small phones ══ */
/*  @media (max-width: 380px) {*/
/*    .launch-popup-overlay {*/
/*      padding: 10px;*/
/*    }*/
/*    .launch-popup-close {*/
/*      width: 30px;*/
/*      height: 30px;*/
/*      font-size: 18px;*/
/*    }*/
/*  }*/

