/* ================================================================
   Lababdar — UX Enhancements & Animations
   ================================================================ */

:root {
  --leaf-green: #2e7d32;
  --leaf-green-soft: #66bb6a;
  --gold-soft: #d4af37;
  --cream: #fdf8ef;
  --ink: #0b3156;
}

/* ================================================================
   GLOBAL HEADER POLISH (top bar + main nav)
   ================================================================ */
.top-header {
  background: linear-gradient(90deg, #061d36 0%, #0b3156 50%, #061d36 100%) !important;
  position: relative;
  overflow: hidden;
}
.top-header::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(circle at 30% 50%, rgba(212,175,55,.18), transparent 60%);
  pointer-events: none;
}
.top-header-item i { color: var(--gold-soft); }
.top-header-social a {
  transition: transform .3s ease, color .3s ease;
}
.top-header-social a:hover {
  transform: translateY(-2px) scale(1.15);
  color: var(--gold-soft) !important;
}

#main-header {
  background: linear-gradient(180deg, rgba(11,49,86,.96), rgba(11,49,86,.92)) !important;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(212,175,55,.18);
  transition: padding .3s ease, box-shadow .3s ease, background .3s ease;
}
#main-header.scrolled {
  background: rgba(6,29,54,.95) !important;
  box-shadow: 0 8px 30px rgba(0,0,0,.35);
}
.nav-menu ul li a {
  position: relative;
  padding: 8px 14px;
  border-radius: 999px;
  transition: color .3s ease, background .3s ease;
}
.nav-menu ul li a span { position: relative; z-index: 2; color: #fff !important; }
.nav-menu ul li a::before {
  content: ""; position: absolute; inset: 0; border-radius: 999px;
  background: linear-gradient(135deg, var(--gold-soft), #b8862c);
  opacity: 0; transform: scale(.8); transition: opacity .3s ease, transform .3s ease;
}
.nav-menu ul li a:hover::before,
.nav-menu ul li a.active::before { opacity: 1; transform: scale(1); }
.nav-menu ul li a:hover span,
.nav-menu ul li a.active span { color: #0b3156 !important; }

.nav-cta {
  position: relative; overflow: hidden;
  background: linear-gradient(135deg, var(--gold-soft), #f1c95a) !important;
  transition: transform .3s ease, box-shadow .3s ease;
  box-shadow: 0 6px 20px rgba(212,175,55,.4);
}
.nav-cta:hover { transform: translateY(-2px); box-shadow: 0 10px 28px rgba(212,175,55,.55); }
.nav-cta::after {
  content: ""; position: absolute; top: 0; left: -75%;
  width: 50%; height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255,255,255,.5), transparent);
  transform: skewX(-20deg);
  animation: ctaShine 3.5s ease-in-out infinite;
}
@keyframes ctaShine {
  0%, 60% { left: -75%; }
  100%    { left: 130%; }
}

/* Logo subtle bob */
.logo-img { transition: transform .4s ease; }
.logo:hover .logo-img { transform: rotate(-5deg) scale(1.05); }
.logo-brand {
  background: linear-gradient(135deg, #ffffff 0%, var(--gold-soft) 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ================================================================
   PAGE BANNER — shared sub-page hero
   ================================================================ */
.page-banner {
  position: relative;
  min-height: 360px;
  display: flex; align-items: center; justify-content: center;
  text-align: center;
  color: #fff;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(11,49,86,.78), rgba(6,29,54,.88)),
    url('assets/images/organic/leaf-banner.jpg') center/cover no-repeat;
}
.page-banner .pb-inner { position: relative; z-index: 2; padding: 70px 20px; max-width: 900px; }
.page-banner .pb-eyebrow {
  display: inline-block; padding: 6px 18px; border-radius: 999px;
  background: rgba(212,175,55,.18); color: var(--gold-soft);
  font-weight: 600; letter-spacing: .12em; font-size: 12px; text-transform: uppercase;
  margin-bottom: 14px;
}
.page-banner h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(32px, 5vw, 56px); line-height: 1.1;
  margin: 0 0 14px;
}
.page-banner h1 span { color: var(--gold-soft); }
.page-banner p { opacity: .9; font-size: 17px; line-height: 1.7; margin: 0 auto 18px; max-width: 700px; }
.page-banner .pb-crumb { font-size: 14px; opacity: .85; }
.page-banner .pb-crumb a { color: var(--gold-soft); text-decoration: none; }
.page-banner .pb-crumb a:hover { text-decoration: underline; }
.page-banner::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -1px;
  height: 80px;
  background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 80' preserveAspectRatio='none'><path fill='%23ffffff' d='M0,40 C360,80 720,0 1440,50 L1440,80 L0,80 Z'/></svg>") center/cover no-repeat;
  z-index: 1; pointer-events: none;
}
.page-banner.on-cream::after { background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 80' preserveAspectRatio='none'><path fill='%23fdf8ef' d='M0,40 C360,80 720,0 1440,50 L1440,80 L0,80 Z'/></svg>"); }

/* Smooth in-page scroll */
html { scroll-behavior: smooth; }

/* Subtle hover lift used across cards */
.lift-on-hover {
  transition: transform .35s cubic-bezier(.2,.8,.2,1), box-shadow .35s ease;
  will-change: transform;
}
.lift-on-hover:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(11,49,86,.18);
}

/* Floating leaves background — pure CSS, GPU friendly */
.organic-leaves { position: absolute; inset: 0; pointer-events: none; overflow: hidden; z-index: 0; }
.organic-leaves i {
  position: absolute;
  display: block;
  width: 28px; height: 28px;
  background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%2366bb6a'><path d='M17 3c-5 0-9 4-9 9 0 1.6.4 3 1.1 4.3L4 21l1.4 1.4 5-5C11.7 18.6 13.3 19 15 19c5 0 9-4 9-9 0-2.6-1-4.9-2.7-6.6C19.6 1.7 18.3 1 17 3z'/></svg>") center/contain no-repeat;
  opacity: .35;
  animation: leafFloat 14s linear infinite;
}
.organic-leaves i:nth-child(1) { left: 4%;  top: 12%; animation-duration: 16s; }
.organic-leaves i:nth-child(2) { left: 22%; top: 78%; animation-duration: 22s; transform: scale(1.4); }
.organic-leaves i:nth-child(3) { left: 48%; top: 28%; animation-duration: 18s; transform: scale(.8); }
.organic-leaves i:nth-child(4) { left: 72%; top: 62%; animation-duration: 24s; transform: scale(1.2); }
.organic-leaves i:nth-child(5) { left: 88%; top: 18%; animation-duration: 20s; }
@keyframes leafFloat {
  0%   { transform: translateY(0)    rotate(0deg); }
  50%  { transform: translateY(-30px) rotate(180deg); }
  100% { transform: translateY(0)    rotate(360deg); }
}

/* ================================================================
   Homepage — Exhibition teaser strip
   ================================================================ */
.exhibition-teaser {
  position: relative;
  padding: 90px 20px;
  background: linear-gradient(135deg, #fdf8ef 0%, #f4ead0 100%);
  overflow: hidden;
}
.exhibition-teaser .container { position: relative; z-index: 2; max-width: 1200px; margin: 0 auto; }
.exhibition-teaser .section-eyebrow {
  display: inline-block; padding: 6px 16px; border-radius: 999px;
  background: rgba(46,125,50,.1); color: var(--leaf-green);
  font-weight: 600; letter-spacing: .08em; font-size: 12px; text-transform: uppercase;
}
.exhibition-teaser h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 4vw, 44px);
  color: var(--ink);
  margin: 14px 0 10px;
  line-height: 1.15;
}
.exhibition-teaser h2 span { color: var(--gold-soft); }
.exhibition-teaser p.lead {
  color: #4a5b6e; max-width: 760px; line-height: 1.7; margin-bottom: 36px;
}
.exhibition-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 18px;
  margin-bottom: 28px;
}
.exhibition-grid .ex-card {
  position: relative; overflow: hidden; border-radius: 18px;
  aspect-ratio: 4/5; box-shadow: 0 14px 30px rgba(11,49,86,.15);
  transition: transform .5s ease, box-shadow .5s ease;
}
.exhibition-grid .ex-card:first-child { aspect-ratio: 4/5; grid-row: span 1; }
.exhibition-grid .ex-card img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 1.2s cubic-bezier(.2,.8,.2,1);
}
.exhibition-grid .ex-card:hover img { transform: scale(1.08); }
.exhibition-grid .ex-card::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(11,49,86,.55), transparent 55%);
}
.exhibition-grid .ex-card .ex-tag {
  position: absolute; left: 14px; bottom: 14px; z-index: 2;
  color: #fff; font-weight: 600; font-size: 14px;
  text-shadow: 0 2px 10px rgba(0,0,0,.4);
}
.exhibition-cta { display: flex; gap: 14px; flex-wrap: wrap; }
.btn-leaf {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 26px; border-radius: 999px;
  background: var(--leaf-green); color: #fff; font-weight: 600;
  text-decoration: none; transition: all .3s ease;
  box-shadow: 0 8px 20px rgba(46,125,50,.35);
}
.btn-leaf:hover { background: var(--leaf-green-soft); transform: translateY(-2px); }
.btn-ghost {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 26px; border-radius: 999px;
  background: transparent; color: var(--ink); border: 2px solid var(--ink);
  font-weight: 600; text-decoration: none; transition: all .3s ease;
}
.btn-ghost:hover { background: var(--ink); color: #fff; }

@media (max-width: 800px) {
  .exhibition-grid { grid-template-columns: 1fr 1fr; }
  .exhibition-grid .ex-card:first-child { grid-column: span 2; aspect-ratio: 16/10; }
}

/* ================================================================
   Homepage / Exhibition — Lazy video showcase
   ================================================================ */
.video-showcase {
  position: relative;
  padding: 100px 20px;
  background:
    linear-gradient(rgba(11,49,86,.85), rgba(11,49,86,.92)),
    url('assets/images/organic/paddy-field.jpg') center/cover no-repeat;
  background-attachment: fixed;
  color: #fff;
  overflow: hidden;
}
.video-showcase .container { max-width: 1100px; margin: 0 auto; text-align: center; position: relative; z-index: 2; }
.video-showcase .section-eyebrow {
  display: inline-block; padding: 6px 16px; border-radius: 999px;
  background: rgba(212,175,55,.18); color: var(--gold-soft);
  font-weight: 600; letter-spacing: .08em; font-size: 12px; text-transform: uppercase;
}
.video-showcase h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 4vw, 46px);
  margin: 14px 0 12px;
}
.video-showcase h2 span { color: var(--gold-soft); }
.video-showcase p.lead { opacity: .85; max-width: 720px; margin: 0 auto 36px; line-height: 1.7; }

.lazy-video-wrapper {
  position: relative;
  aspect-ratio: 16/9;
  max-width: 980px;
  margin: 0 auto;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(0,0,0,.45);
  background: #000;
}
.lazy-video-wrapper.tv-frame {
  padding: 18px;
  background: linear-gradient(145deg, #1a1a1a, #050505);
  border: 10px solid #2b2b2b;
  border-bottom-width: 22px;
  box-shadow: 0 28px 70px rgba(0,0,0,.5);
}
.lazy-video-wrapper.tv-frame::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 6px;
  width: 110px;
  height: 10px;
  transform: translateX(-50%);
  border-radius: 999px;
  background: linear-gradient(90deg, #111, #3a3a3a, #111);
  z-index: 4;
}
.lazy-video-wrapper .poster {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  transition: transform .8s ease, opacity .4s ease;
}
.lazy-video-wrapper:hover .poster { transform: scale(1.04); }
.lazy-video-wrapper::before {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(rgba(0,0,0,.25), rgba(0,0,0,.55));
  z-index: 1;
}
.lazy-video-wrapper video {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: contain;       /* don't crop the video */
  background: #000;
  opacity: 0; transition: opacity .4s ease;
  z-index: 2;
}
.lazy-video-wrapper.is-playing video { opacity: 1; }
.lazy-video-wrapper.is-playing .poster,
.lazy-video-wrapper.is-playing .lazy-video-play,
.lazy-video-wrapper.is-playing::before { opacity: 0; pointer-events: none; }

.lazy-video-play {
  position: absolute; inset: 0; margin: auto;
  width: 96px; height: 96px; border-radius: 50%;
  border: none; cursor: pointer;
  background: rgba(255,255,255,.92); color: var(--ink);
  font-size: 28px;
  display: flex; align-items: center; justify-content: center;
  z-index: 3;
  box-shadow: 0 12px 30px rgba(0,0,0,.4);
  transition: transform .3s ease, background .3s ease;
}
.lazy-video-play:hover { transform: scale(1.08); background: #fff; }
.lazy-video-play::after {
  content: ""; position: absolute; inset: -10px;
  border-radius: 50%; border: 2px solid rgba(255,255,255,.5);
  animation: pulseRing 2s ease-out infinite;
}
@keyframes pulseRing {
  0%   { transform: scale(.9);  opacity: 1; }
  100% { transform: scale(1.5); opacity: 0; }
}
.video-meta {
  margin-top: 22px;
  font-size: 14px; opacity: .8;
}
.video-meta i { color: var(--gold-soft); margin-right: 6px; }

/* ================================================================
   Exhibition page — Hero
   ================================================================ */
.ex-hero {
  position: relative;
  min-height: 42vh;
  display: flex; align-items: center; justify-content: center;
  text-align: center;
  background:
    linear-gradient(rgba(11,49,86,.7), rgba(11,49,86,.85)),
    url('uploads/exhibition/booth-3.jpeg') center/cover no-repeat;
  color: #fff;
  overflow: hidden;
}
.ex-hero .container { position: relative; z-index: 2; max-width: 820px; padding: 60px 20px; }
.ex-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(24px, 3.4vw, 40px);
  line-height: 1.15; margin: 14px 0 10px;
}
.ex-hero h1 span { color: var(--gold-soft); }
.ex-hero p { font-size: 15px; opacity: .9; max-width: 640px; margin: 0 auto 22px; line-height: 1.65; }
@media (max-width: 768px){
  .ex-hero { min-height: 34vh; }
  .ex-hero .container { padding: 40px 16px; }
  .ex-hero h1 { font-size: 22px; }
  .ex-hero p { font-size: 13.5px; }
}
.ex-hero .pill {
  display: inline-block; padding: 8px 18px; border-radius: 999px;
  background: rgba(255,255,255,.15); backdrop-filter: blur(6px);
  font-weight: 600; letter-spacing: .08em; font-size: 12px; text-transform: uppercase;
}

/* Stats strip */
.ex-stats {
  background: var(--cream);
  padding: 50px 20px;
}
.ex-stats .grid {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; text-align: center;
}
.ex-stats .stat .num {
  font-family: 'Playfair Display', serif;
  font-size: 42px; color: var(--ink); font-weight: 700;
  display: block; line-height: 1;
}
.ex-stats .stat .lbl {
  display: block; margin-top: 8px;
  color: #6a7d92; font-size: 14px; letter-spacing: .04em;
}
@media (max-width: 700px) { .ex-stats .grid { grid-template-columns: repeat(2, 1fr); } }

/* Gallery */
.ex-gallery {
  padding: 90px 20px;
  background: #fff;
  position: relative;
}
.ex-gallery .container { max-width: 1200px; margin: 0 auto; }
.ex-gallery .section-head { text-align: center; margin-bottom: 50px; }
.ex-gallery .section-head .section-eyebrow {
  display: inline-block; padding: 6px 16px; border-radius: 999px;
  background: rgba(46,125,50,.1); color: var(--leaf-green);
  font-weight: 600; letter-spacing: .08em; font-size: 12px; text-transform: uppercase;
}
.ex-gallery h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 4vw, 42px);
  color: var(--ink); margin: 14px 0 10px;
}
.ex-gallery h2 span { color: var(--gold-soft); }
.ex-gallery .gallery-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px;
}
.ex-gallery .gallery-grid figure {
  margin: 0; border-radius: 14px; overflow: hidden; position: relative;
  aspect-ratio: 1/1; box-shadow: 0 10px 24px rgba(11,49,86,.10);
  transition: transform .4s ease, box-shadow .4s ease;
}
.ex-gallery .gallery-grid figure:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 44px rgba(11,49,86,.22);
}
.ex-gallery .gallery-grid img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 1s ease;
}
.ex-gallery .gallery-grid figure:hover img { transform: scale(1.06); }
.ex-gallery .gallery-grid figcaption {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 12px 14px;
  color: #fff; font-weight: 600; font-size: 13px;
  background: linear-gradient(to top, rgba(11,49,86,.88), transparent);
}
@media (max-width: 1024px) { .ex-gallery .gallery-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 760px)  { .ex-gallery .gallery-grid { grid-template-columns: repeat(2, 1fr); } }

/* Highlights / why */
.ex-highlights {
  padding: 90px 20px;
  background: linear-gradient(135deg, #fdf8ef 0%, #f4ead0 100%);
  position: relative;
}
.ex-highlights .container { max-width: 1200px; margin: 0 auto; position: relative; z-index: 2; }
.ex-highlights .section-eyebrow {
  display: inline-block; padding: 6px 16px; border-radius: 999px;
  background: rgba(46,125,50,.1); color: var(--leaf-green);
  font-weight: 600; letter-spacing: .08em; font-size: 12px; text-transform: uppercase;
}
.ex-highlights h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 4vw, 42px);
  color: var(--ink); margin: 14px 0 32px;
}
.ex-highlights .cards {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px;
}
.ex-highlights .card {
  background: #fff; border-radius: 18px; padding: 30px 26px;
  box-shadow: 0 14px 30px rgba(11,49,86,.08);
  transition: transform .35s ease, box-shadow .35s ease;
}
.ex-highlights .card:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 44px rgba(11,49,86,.18);
}
.ex-highlights .card .ic {
  width: 56px; height: 56px; border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(46,125,50,.1); color: var(--leaf-green);
  font-size: 24px; margin-bottom: 16px;
}
.ex-highlights .card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 20px; color: var(--ink); margin: 0 0 10px;
}
.ex-highlights .card p { color: #5a6a7e; line-height: 1.65; margin: 0; }
@media (max-width: 800px) { .ex-highlights .cards { grid-template-columns: 1fr; } }

/* ================================================================
   HOMEPAGE HERO — extra polish layered on top of existing .hero-new
   ================================================================ */
.hero-new::after {
  content: ""; position: absolute; inset: 0; pointer-events: none; z-index: 1;
  background:
    radial-gradient(circle at 85% 80%, rgba(212,175,55,.18), transparent 45%),
    radial-gradient(circle at 10% 10%, rgba(102,187,106,.12), transparent 40%);
  animation: heroGlowPulse 8s ease-in-out infinite alternate;
}
/* Decorative leaves floating in hero */
.hero-new .hero-left::before,
.hero-new .hero-left::after {
  content: ""; position: absolute; pointer-events: none;
  width: 60px; height: 60px;
  background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%2366bb6a' opacity='0.55'><path d='M17 3c-5 0-9 4-9 9 0 1.6.4 3 1.1 4.3L4 21l1.4 1.4 5-5C11.7 18.6 13.3 19 15 19c5 0 9-4 9-9 0-2.6-1-4.9-2.7-6.6C19.6 1.7 18.3 1 17 3z'/></svg>") center/contain no-repeat;
  z-index: 1;
}
.hero-new .hero-left { position: relative; }
.hero-new .hero-left::before { top: -28px; left: -38px; transform: rotate(-25deg); animation: leafFloat 14s ease-in-out infinite; }
.hero-new .hero-left::after  { bottom: -10px; right: -10px; width: 48px; height: 48px; transform: rotate(30deg); animation: leafFloat 18s ease-in-out infinite reverse; opacity: .7; }

/* Animated underline accent under headline */
.hero-new h1::after {
  content: "";
  display: block;
  width: 90px; height: 4px;
  margin-top: 18px;
  background: linear-gradient(90deg, #d4af37, transparent);
  border-radius: 4px;
  animation: lineGrow 2.4s ease-out forwards;
}
@keyframes lineGrow { from { width: 0; opacity: 0; } to { width: 90px; opacity: 1; } }
@keyframes heroGlowPulse {
  0%   { opacity: .7; }
  100% { opacity: 1; }
}
.hero-new .hero-tag {
  background: linear-gradient(135deg, rgba(212,175,55,.18), rgba(212,175,55,.05));
  border: 1px solid rgba(212,175,55,.45);
  backdrop-filter: blur(6px);
  display: inline-block; padding: 8px 18px; border-radius: 999px;
  color: var(--gold-soft); font-weight: 600; letter-spacing: .12em;
  font-size: 12px; text-transform: uppercase;
  animation: tagFloat 3.6s ease-in-out infinite;
}
@keyframes tagFloat {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-6px); }
}
.hero-new h1 {
  position: relative; z-index: 3;
}
.hero-new h1 span {
  background: linear-gradient(135deg, #d4af37, #f1c95a 40%, #d4af37);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 4px 16px rgba(212,175,55,.35));
}
.hero-new .hero-features span {
  position: relative;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(212,175,55,.25);
  backdrop-filter: blur(8px);
  padding: 8px 16px; border-radius: 999px;
  transition: all .3s ease;
}
.hero-new .hero-features span:hover {
  background: rgba(212,175,55,.18);
  transform: translateY(-2px);
  border-color: var(--gold-soft);
}
.hero-new .btn-primary {
  position: relative; overflow: hidden;
  background: linear-gradient(135deg, #d4af37, #b8862c);
  box-shadow: 0 12px 30px rgba(212,175,55,.4);
  transition: transform .3s ease, box-shadow .3s ease;
}
.hero-new .btn-primary:hover { transform: translateY(-3px); box-shadow: 0 18px 40px rgba(212,175,55,.55); }
.hero-new .btn-primary::after {
  content: ""; position: absolute; top: 0; left: -75%;
  width: 50%; height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255,255,255,.45), transparent);
  transform: skewX(-20deg);
  animation: ctaShine 3s ease-in-out infinite;
}
.hero-new .video-frame {
  position: relative; border-radius: 24px; overflow: hidden;
  box-shadow: 0 30px 70px rgba(0,0,0,.55), 0 0 0 1px rgba(212,175,55,.25);
  animation: floatY 6s ease-in-out infinite;
}
.hero-new .video-frame::before {
  content: ""; position: absolute; inset: -2px; border-radius: 24px;
  padding: 2px;
  background: linear-gradient(135deg, rgba(212,175,55,.7), transparent 40%, rgba(212,175,55,.7));
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude;
  pointer-events: none;
}
@keyframes floatY {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-12px); }
}
.hero-new .video-frame video { object-fit: cover; }

/* Animated leafy decorations overlayed on hero */
.hero-new::before {
  background:
    radial-gradient(circle, rgba(212,175,55,0.2), transparent),
    url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%2366bb6a' opacity='0.2'><path d='M17 3c-5 0-9 4-9 9 0 1.6.4 3 1.1 4.3L4 21l1.4 1.4 5-5C11.7 18.6 13.3 19 15 19c5 0 9-4 9-9 0-2.6-1-4.9-2.7-6.6C19.6 1.7 18.3 1 17 3z'/></svg>") top right/120px no-repeat !important;
}

/* ================================================================
   ABOUT HERO — overlay polish (keeps original video bg)
   ================================================================ */
.ab-hero-overlay {
  background: linear-gradient(160deg, rgba(11,49,86,.55) 0%, rgba(6,29,54,.7) 100%) !important;
}
.ab-hero-content { padding: 0 24px; }
.ab-hero-label {
  background: linear-gradient(135deg, rgba(212,175,55,.25), rgba(212,175,55,.08)) !important;
  border: 1px solid rgba(212,175,55,.55) !important;
  letter-spacing: .15em !important;
  box-shadow: 0 8px 22px rgba(0,0,0,.25);
}
.ab-hero-content h1 {
  text-shadow: 0 6px 24px rgba(0,0,0,.45);
}
.ab-hero-content h1 span {
  background: linear-gradient(135deg, #f1c95a, #d4af37);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.ab-hero-breadcrumb {
  display: inline-flex !important;
  background: rgba(0,0,0,.25);
  padding: 8px 18px; border-radius: 999px;
  backdrop-filter: blur(6px);
  margin-top: 8px;
}
/* Floating organic leaves layered into about-hero */
.ab-hero::before, .ab-hero::after {
  content: ""; position: absolute; pointer-events: none; z-index: 4;
  width: 90px; height: 90px;
  background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%2366bb6a' opacity='0.55'><path d='M17 3c-5 0-9 4-9 9 0 1.6.4 3 1.1 4.3L4 21l1.4 1.4 5-5C11.7 18.6 13.3 19 15 19c5 0 9-4 9-9 0-2.6-1-4.9-2.7-6.6C19.6 1.7 18.3 1 17 3z'/></svg>") center/contain no-repeat;
  animation: leafFloat 18s linear infinite;
}
.ab-hero::before { top: 8%; left: 6%; }
.ab-hero::after  { bottom: 12%; right: 8%; transform: scale(1.4); animation-duration: 22s; }

/* ================================================================
   INGREDIENTS HERO — natural organic re-skin
   ================================================================ */
.page-hero {
  position: relative;
  min-height: 70vh;
  background-image:
    linear-gradient(135deg, rgba(46,125,50,.55), rgba(11,49,86,.78)),
    url('assets/images/organic/paddy-field.jpg') !important;
  background-size: cover; background-position: center;
}
.page-hero .hero-video { display: none; } /* swap video for cleaner organic image */
.page-hero .hero-overlay {
  background: linear-gradient(160deg, rgba(11,49,86,.4), rgba(6,29,54,.7)) !important;
}
.page-hero .page-hero-label {
  background: linear-gradient(135deg, rgba(212,175,55,.25), rgba(212,175,55,.08)) !important;
  border: 1px solid rgba(212,175,55,.55);
  color: var(--gold-soft) !important;
  padding: 8px 22px !important; border-radius: 999px !important;
  letter-spacing: .14em; font-weight: 600; font-size: 12px; text-transform: uppercase;
}
.page-hero .page-hero-content h1 {
  text-shadow: 0 6px 24px rgba(0,0,0,.45);
}
.page-hero .page-hero-content h1 span {
  background: linear-gradient(135deg, #f1c95a, #d4af37);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.page-hero .breadcrumb {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(0,0,0,.25); padding: 8px 18px; border-radius: 999px;
  backdrop-filter: blur(6px); margin-top: 14px;
  font-size: 13px; color: rgba(255,255,255,.85);
}
.page-hero .breadcrumb a { color: var(--gold-soft); text-decoration: none; }
.page-hero::before, .page-hero::after {
  content: ""; position: absolute; pointer-events: none; z-index: 2;
  width: 100px; height: 100px;
  background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%2366bb6a' opacity='0.55'><path d='M17 3c-5 0-9 4-9 9 0 1.6.4 3 1.1 4.3L4 21l1.4 1.4 5-5C11.7 18.6 13.3 19 15 19c5 0 9-4 9-9 0-2.6-1-4.9-2.7-6.6C19.6 1.7 18.3 1 17 3z'/></svg>") center/contain no-repeat;
  animation: leafFloat 16s linear infinite;
}
.page-hero::before { top: 10%; left: 5%; }
.page-hero::after  { bottom: 12%; right: 6%; transform: scale(1.4); animation-duration: 22s; }

/* ================================================================
   HOMEPAGE — CRAFT MODERN (Artisan process re-design)
   ================================================================ */
.craft-modern {
  position: relative;
  padding: 110px 20px;
  background: linear-gradient(180deg, #fdf8ef 0%, #f4eadf 100%);
  overflow: hidden;
}
.craft-modern .craft-bg {
  position: absolute; inset: 0; pointer-events: none; opacity: .35;
  background:
    radial-gradient(circle at 90% 10%, rgba(212,175,55,.18), transparent 35%),
    radial-gradient(circle at 5% 90%, rgba(46,125,50,.12), transparent 40%),
    url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='28' height='28' viewBox='0 0 24 24' fill='%2366bb6a' opacity='0.18'><path d='M17 3c-5 0-9 4-9 9 0 1.6.4 3 1.1 4.3L4 21l1.4 1.4 5-5C11.7 18.6 13.3 19 15 19c5 0 9-4 9-9 0-2.6-1-4.9-2.7-6.6C19.6 1.7 18.3 1 17 3z'/></svg>");
  background-size: auto, auto, 80px 80px;
}
.craft-modern .container { max-width: 1280px; margin: 0 auto; position: relative; z-index: 2; }
.craft-head { text-align: center; max-width: 720px; margin: 0 auto 60px; }
.craft-head h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(30px, 4.2vw, 48px);
  color: var(--ink); margin: 14px 0 12px;
}
.craft-head h2 span {
  background: linear-gradient(135deg, #d4af37, #b8862c);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.craft-head .subline { color: #4a5b6e; line-height: 1.7; }

.craft-stage {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 50px;
  align-items: stretch;
}
@media (max-width: 980px) {
  .craft-stage { grid-template-columns: 1fr; gap: 36px; }
}

.craft-feature {
  position: relative; border-radius: 28px; overflow: hidden;
  min-height: 460px;
  box-shadow: 0 30px 70px rgba(11,49,86,.25);
}
.craft-feature img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 8s ease; }
.craft-feature:hover img { transform: scale(1.05); }
.craft-feature::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(11,49,86,.7), transparent 55%);
}
.craft-feature-overlay {
  position: absolute; left: 24px; bottom: 24px; z-index: 2;
}
.craft-feature-overlay span {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 12px 18px; border-radius: 999px;
  background: rgba(255,255,255,.95); color: var(--ink);
  font-weight: 700; font-size: 14px;
  box-shadow: 0 12px 30px rgba(0,0,0,.25);
}
.craft-feature-overlay i { color: var(--leaf-green); }

.craft-steps {
  list-style: none; padding: 0; margin: 0;
  display: grid; grid-template-columns: 1fr 1fr; gap: 18px;
  align-content: center;
}
@media (max-width: 600px) { .craft-steps { grid-template-columns: 1fr; } }

.craft-step {
  position: relative; padding: 22px 22px 22px 26px;
  background: #fff; border-radius: 18px;
  border: 1px solid rgba(11,49,86,.06);
  box-shadow: 0 12px 30px rgba(11,49,86,.06);
  transition: all .35s ease;
  overflow: hidden;
}
.craft-step::before {
  content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: 4px;
  background: linear-gradient(180deg, var(--gold-soft), var(--leaf-green));
  border-radius: 0 4px 4px 0;
}
.craft-step:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 50px rgba(11,49,86,.16);
  border-color: rgba(212,175,55,.4);
}
.craft-step-num {
  position: absolute; top: 14px; right: 18px;
  font-family: 'Playfair Display', serif;
  font-size: 28px; font-weight: 700;
  color: rgba(11,49,86,.08);
  letter-spacing: .02em;
}
.craft-step-icon {
  width: 46px; height: 46px; border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, rgba(212,175,55,.18), rgba(46,125,50,.14));
  color: var(--gold-soft); font-size: 18px;
  margin-bottom: 12px;
}
.craft-step-body h3 {
  font-family: 'Playfair Display', serif;
  font-size: 18px; color: var(--ink); margin: 0 0 6px;
}
.craft-step-body p { font-size: 13.5px; color: #5a6a7e; line-height: 1.6; margin: 0; }

/* ================================================================
   HOMEPAGE — Premium Product Cards (V2 Split Carousel Layout)
   ================================================================ */
.premium-products {
  position: relative;
  padding: 100px 20px;
  background:
    linear-gradient(rgba(253,248,239,.94), rgba(244,234,208,.94)),
    url('assets/images/organic/leaf-banner.jpg') center/cover no-repeat;
  overflow: hidden;
}
.premium-products .container { max-width: 1320px; margin: 0 auto; position: relative; z-index: 2; }
.premium-products .section-head { text-align: center; margin-bottom: 50px; }
.premium-products .section-eyebrow {
  display: inline-block; padding: 6px 16px; border-radius: 999px;
  background: rgba(46,125,50,.1); color: var(--leaf-green);
  font-weight: 600; letter-spacing: .12em; font-size: 12px; text-transform: uppercase;
}
.premium-products h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(30px, 4.2vw, 48px);
  color: var(--ink); margin: 14px 0 12px;
}
.premium-products h2 span { color: var(--gold-soft); }
.premium-products .subline { color: #4a5b6e; max-width: 720px; margin: 0 auto; line-height: 1.7; }

/* Split layout: image carousel left, product carousel right */
.pp-split {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 40px;
  align-items: stretch;
}
@media (max-width: 820px) {
  .pp-split { grid-template-columns: 1fr; gap: 32px; }
}

/* Left — image showcase */
.pp-showcase {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  min-height: 520px;
  height: 100%;
  box-shadow: 0 30px 60px rgba(11,49,86,.22);
  background: #0b3156;
}
.pp-showcase .swiper, .pp-showcase swiper-container { width: 100%; height: 100%; }
.pp-showcase .swiper-slide {
  position: relative;
}
.pp-showcase .swiper-slide img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.pp-showcase::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(to top, rgba(11,49,86,.65), transparent 45%);
  z-index: 2;
}
.pp-showcase .pp-show-caption {
  position: absolute; left: 26px; right: 26px; bottom: 24px; z-index: 3;
  color: #fff;
}
.pp-showcase .pp-show-caption .eyebrow {
  display: inline-block; padding: 5px 14px; border-radius: 999px;
  background: rgba(212,175,55,.22); color: var(--gold-soft);
  font-weight: 600; letter-spacing: .12em; font-size: 11px; text-transform: uppercase;
  border: 1px solid rgba(212,175,55,.45);
  backdrop-filter: blur(6px);
}
.pp-showcase .pp-show-caption h3 {
  font-family: 'Playfair Display', serif;
  font-size: 28px; margin: 12px 0 6px; line-height: 1.15;
}
.pp-showcase .pp-show-caption p { opacity: .85; font-size: 14px; }
.pp-showcase .swiper-pagination {
  bottom: 14px !important;
}
.pp-showcase .swiper-pagination-bullet {
  background: rgba(255,255,255,.55); opacity: 1;
}
.pp-showcase .swiper-pagination-bullet-active {
  background: var(--gold-soft);
  width: 22px; border-radius: 999px; transition: width .3s ease;
}
.pp-showcase .pp-floating-badge {
  position: absolute; top: 22px; right: 22px; z-index: 3;
  background: rgba(255,255,255,.95); color: var(--ink);
  padding: 12px 16px; border-radius: 16px;
  font-weight: 700; font-size: 13px; letter-spacing: .04em;
  box-shadow: 0 12px 30px rgba(0,0,0,.25);
  display: flex; align-items: center; gap: 8px;
  animation: floatY 4s ease-in-out infinite;
}
.pp-showcase .pp-floating-badge i { color: var(--leaf-green); }

/* Right — product carousel */
.pp-carousel-wrap { position: relative; padding: 0 8px; }
.pp-carousel { overflow: hidden; padding: 10px 4px 60px; }
.pp-carousel .swiper-slide { height: auto; display: flex; }
.pp-carousel .pp-card { width: 100%; }
.pp-nav {
  position: absolute; top: 50%;
  width: 46px; height: 46px; border-radius: 50%;
  background: #fff; color: var(--ink);
  border: 1px solid rgba(11,49,86,.12);
  box-shadow: 0 10px 24px rgba(11,49,86,.18);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; z-index: 5;
  transition: all .3s ease;
}
.pp-nav:hover { background: var(--gold-soft); color: #fff; transform: translateY(-50%) scale(1.08); }
.pp-nav.prev { left: -10px; transform: translateY(-50%); }
.pp-nav.next { right: -10px; transform: translateY(-50%); }
.pp-nav.swiper-button-disabled { opacity: .35; cursor: default; }
.pp-pagination {
  position: absolute; left: 0; right: 0; bottom: 12px;
  text-align: center;
}
.pp-pagination .swiper-pagination-bullet {
  background: var(--ink); opacity: .25;
}
.pp-pagination .swiper-pagination-bullet-active {
  background: var(--gold-soft); opacity: 1;
  width: 22px; border-radius: 999px;
}

/* ================================================================
   INGREDIENTS PAGE — Organic intro + Nature strip
   ================================================================ */
.ing-organic-intro {
  position: relative;
  padding: 90px 20px;
  background:
    radial-gradient(circle at 0% 0%, rgba(46,125,50,.08), transparent 40%),
    radial-gradient(circle at 100% 100%, rgba(212,175,55,.08), transparent 40%),
    #fdfaf2;
  overflow: hidden;
}
.ing-organic-intro::before {
  content: ""; position: absolute; inset: 0; pointer-events: none; opacity: .15;
  background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='40' height='40' viewBox='0 0 24 24' fill='%2366bb6a'><path d='M17 3c-5 0-9 4-9 9 0 1.6.4 3 1.1 4.3L4 21l1.4 1.4 5-5C11.7 18.6 13.3 19 15 19c5 0 9-4 9-9 0-2.6-1-4.9-2.7-6.6C19.6 1.7 18.3 1 17 3z'/></svg>") 0 0/80px 80px;
}
.ing-organic-intro .container { max-width: 1200px; margin: 0 auto; position: relative; }
.ing-intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
@media (max-width: 880px) { .ing-intro-grid { grid-template-columns: 1fr; gap: 40px; } }

.ing-intro-media {
  position: relative;
  height: 520px;
}
@media (max-width: 880px) { .ing-intro-media { height: 420px; } }

.ing-intro-img {
  position: absolute;
  background-size: cover;
  background-position: center;
  border-radius: 22px;
  box-shadow: 0 24px 50px rgba(11,49,86,.18);
  transition: transform .6s ease;
}
.ing-intro-img.main { width: 70%; height: 70%; top: 15%; left: 5%; z-index: 1; }
.ing-intro-img.sub-1 { width: 45%; height: 40%; top: 0; right: 0; z-index: 2; border: 6px solid #fdfaf2; }
.ing-intro-img.sub-2 { width: 38%; height: 38%; bottom: 0; right: 8%; z-index: 2; border: 6px solid #fdfaf2; }
.ing-intro-media:hover .ing-intro-img { transform: scale(1.03); }
.ing-intro-badge {
  position: absolute; top: 16px; left: 16px; z-index: 5;
  background: #fff; color: #0b3156;
  padding: 12px 18px; border-radius: 999px;
  font-weight: 700; font-size: 13px;
  box-shadow: 0 12px 30px rgba(0,0,0,.15);
  display: inline-flex; align-items: center; gap: 8px;
  animation: floatY 5s ease-in-out infinite;
}
.ing-intro-badge i { color: #2e7d32; }

.ing-intro-text .ing-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 14px; border-radius: 999px;
  background: rgba(46,125,50,.12); color: #2e7d32;
  font-weight: 600; letter-spacing: .12em; font-size: 12px; text-transform: uppercase;
}
.ing-intro-text .ing-eyebrow.light { background: rgba(255,255,255,.18); color: #fff; }
.ing-intro-text h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 4vw, 44px);
  color: #0b3156; margin: 16px 0 14px; line-height: 1.15;
}
.ing-intro-text h2 span {
  background: linear-gradient(135deg, #d4af37, #b8862c);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.ing-quote {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-style: italic;
  font-size: 1.4rem; color: #2e7d32;
  margin: 0 0 18px;
  padding-left: 16px; border-left: 3px solid #d4af37;
}
.ing-intro-text > p { color: #4a5b6e; line-height: 1.8; margin: 0 0 22px; }
.ing-checks {
  list-style: none; padding: 0; margin: 0;
  display: grid; grid-template-columns: 1fr 1fr; gap: 12px 22px;
}
.ing-checks li {
  display: flex; align-items: center; gap: 10px;
  color: #2c3e50; font-weight: 500; font-size: 14px;
}
.ing-checks li i {
  width: 22px; height: 22px; border-radius: 50%;
  background: #2e7d32; color: #fff;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 11px;
}

/* Nature strip */
.ing-nature-strip {
  position: relative;
  height: 380px;
  overflow: hidden;
}
.ing-nature-img {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  transform: scale(1.05);
  animation: kenBurnsSlow 24s ease-in-out infinite alternate;
}
@keyframes kenBurnsSlow {
  0% { transform: scale(1.05) translateX(0); }
  100% { transform: scale(1.15) translateX(-2%); }
}
.ing-nature-overlay {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, rgba(11,49,86,.7), rgba(46,125,50,.55));
  text-align: center;
  padding: 0 20px;
}
.ing-nature-content {
  max-width: 720px; color: #fff;
}
.ing-nature-content h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 4vw, 42px);
  margin: 16px 0 12px;
  text-shadow: 0 6px 20px rgba(0,0,0,.4);
}
.ing-nature-content p {
  font-size: 1.05rem; line-height: 1.7;
  opacity: .95;
}

/* Organic image banner strip */
.pp-banner {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  height: 200px;
  border-radius: 22px;
  overflow: hidden;
  margin-bottom: 50px;
  box-shadow: 0 24px 50px rgba(11,49,86,.18);
}
.pp-banner-img {
  background-size: cover;
  background-position: center;
  transition: transform 8s ease;
}
.pp-banner:hover .pp-banner-img { transform: scale(1.06); }
.pp-banner-overlay {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, rgba(11,49,86,.7), rgba(46,125,50,.55));
  color: #fff; text-align: center;
  font-weight: 600; letter-spacing: .04em;
}
.pp-banner-overlay span {
  font-size: clamp(14px, 1.4vw, 18px);
  background: rgba(0,0,0,.18);
  backdrop-filter: blur(6px);
  padding: 14px 24px; border-radius: 999px;
  border: 1px solid rgba(255,255,255,.18);
}
.pp-banner-overlay i { color: var(--gold-soft); margin-right: 4px; }
@media (max-width: 700px) {
  .pp-banner { grid-template-columns: repeat(2, 1fr); height: 240px; }
}

/* Premium products responsive grid */
.pp-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  align-items: stretch;
}
@media (max-width: 1180px) { .pp-grid { grid-template-columns: repeat(3, 1fr); gap: 24px; } }
@media (max-width: 880px)  { .pp-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; } }
@media (max-width: 520px)  { .pp-grid { grid-template-columns: 1fr; gap: 22px; } }

/* Defensive: ensure AOS-hidden cards still get visible if JS doesn't run */
.pp-grid > .pp-card[data-aos]:not(.aos-animate) { opacity: 1; transform: none; }

.pp-card {
  position: relative;
  background: #fff;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 14px 30px rgba(11,49,86,.10);
  transition: transform .45s cubic-bezier(.2,.8,.2,1), box-shadow .45s ease;
  display: flex; flex-direction: column;
}
.pp-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 28px 50px rgba(11,49,86,.20);
}
.pp-card .pp-media {
  position: relative;
  aspect-ratio: 1/1;
  overflow: hidden;
  background: linear-gradient(135deg, #f7efe0, #fdf8ef);
}
.pp-card .pp-media img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 1s cubic-bezier(.2,.8,.2,1);
}
.pp-card:hover .pp-media img { transform: scale(1.08) rotate(-1deg); }
.pp-card .pp-cat {
  position: absolute; top: 14px; left: 14px;
  padding: 5px 12px; border-radius: 999px;
  background: rgba(11,49,86,.85); color: #fff;
  font-size: 11px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase;
  backdrop-filter: blur(4px); z-index: 2;
}
.pp-card .pp-grain {
  position: absolute; top: 14px; right: 14px;
  padding: 5px 12px; border-radius: 999px;
  background: rgba(212,175,55,.95); color: #0b3156;
  font-size: 11px; font-weight: 700; letter-spacing: .04em;
  z-index: 2;
}
.pp-card .pp-body {
  padding: 22px 22px 24px;
  display: flex; flex-direction: column; gap: 10px; flex: 1;
}
.pp-card .pp-body h3 {
  font-family: 'Playfair Display', serif;
  font-size: 21px; color: var(--ink); margin: 0; line-height: 1.25;
}
.pp-card .pp-body p {
  color: #5a6a7e; font-size: 14px; line-height: 1.6; margin: 0;
  display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden;
}
.pp-card .pp-meta {
  display: flex; align-items: center; gap: 10px; flex-wrap: wrap;
  color: #6a7d92; font-size: 13px; margin-top: 4px;
}
.pp-card .pp-meta i { color: var(--leaf-green); margin-right: 4px; }
.pp-card .pp-cta {
  margin-top: auto;
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 12px 18px; border-radius: 999px;
  background: linear-gradient(135deg, var(--ink), #143b69);
  color: #fff; text-decoration: none; font-weight: 600; font-size: 14px;
  transition: all .35s ease;
}
.pp-card .pp-cta:hover {
  background: linear-gradient(135deg, var(--gold-soft), #b8862c);
  transform: translateX(2px);
}
.premium-products .all-cta {
  text-align: center; margin-top: 44px;
}

/* ================================================================
   Exhibition CTA (page) — extra polish
   ================================================================ */
/* Final CTA on exhibition page */
.ex-cta {
  padding: 80px 20px;
  background: var(--ink); color: #fff; text-align: center;
}
.ex-cta h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(26px, 3.6vw, 38px);
  margin: 0 0 14px;
}
.ex-cta h2 span { color: var(--gold-soft); }
.ex-cta p { opacity: .85; max-width: 640px; margin: 0 auto 26px; }

/* ================================================================
   Exhibition — secondary video grid + global responsive polish
   ================================================================ */
.ex-video-grid{
  margin-top: 28px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
}
.ex-video-grid video{
  width: 100%;
  height: auto;
  aspect-ratio: 16/10;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: 0 18px 40px rgba(0,0,0,.18);
  background:#000;
}
@media (max-width: 768px){
  .ex-video-grid{ grid-template-columns: 1fr; gap: 14px; }
}

/* ---------- Gallery polish ---------- */
.ex-gallery .gallery-grid{
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 16px;
}
.ex-gallery .gallery-grid figure{
  margin:0;
  position:relative;
  border-radius:14px;
  overflow:hidden;
  background:#0d2a4d;
  box-shadow: 0 10px 30px rgba(0,0,0,.12);
  transition: transform .35s ease, box-shadow .35s ease;
}
.ex-gallery .gallery-grid figure:hover{
  transform: translateY(-4px);
  box-shadow: 0 18px 38px rgba(0,0,0,.18);
}
.ex-gallery .gallery-grid img{
  width:100%;
  height: 230px;
  object-fit: cover;
  display:block;
  transition: transform .5s ease;
}
.ex-gallery .gallery-grid figure:hover img{ transform: scale(1.06); }
.ex-gallery .gallery-grid figcaption{
  position:absolute; left:0; right:0; bottom:0;
  padding: 28px 14px 12px;
  font-size: 12.5px;
  color:#fff;
  background: linear-gradient(transparent, rgba(0,0,0,.75));
}
@media (max-width:480px){
  .ex-gallery .gallery-grid{ grid-template-columns: 1fr 1fr; gap: 10px; }
  .ex-gallery .gallery-grid img{ height: 150px; }
  .ex-gallery .gallery-grid figcaption{ font-size: 11px; padding: 22px 8px 8px; }
}

/* ================================================================
   GLOBAL RESPONSIVE POLISH
   ================================================================ */
img, video { max-width: 100%; height: auto; }

@media (max-width: 1024px){
  .container { width: 92%; padding-left: 0; padding-right: 0; }
}
@media (max-width: 768px){
  body { -webkit-text-size-adjust: 100%; }
  .container { width: 94%; }
  h1 { font-size: clamp(22px, 6vw, 34px); }
  h2 { font-size: clamp(20px, 5vw, 28px); }
  h3 { font-size: clamp(17px, 4.4vw, 22px); }
  section { padding-left: 0; padding-right: 0; }
  table { display:block; overflow-x:auto; }
}
@media (max-width: 480px){
  .container { width: 96%; }
  .btn-primary, .btn-leaf, .btn-ghost-gold { padding: 10px 18px !important; font-size: 13px !important; }
}

/* prevent horizontal scroll on tiny screens */
html, body { overflow-x: hidden; }
