/* ═══════════════════════════════════════════════════════════════
   Our Story – Redesigned editorial layout
   Palette: Deep Crimson, Gold, Cream, Navy
   Typography: Cinzel (headings), Lato (body)
═══════════════════════════════════════════════════════════════ */

/* ── HIDE OLD HERO when using new editorial hero ── */
.our-story-page .home-hero.story-hero { display: none; }

/* ── HERO: Editorial full-bleed (compact) ── */
.story-hero-editorial {
  position: relative;
  min-height: 42vh;
  min-height: 42dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  padding: clamp(28px, 4vw, 40px) clamp(20px, 4vw, 32px);
}
.story-hero-editorial-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, var(--deep-crimson) 0%, var(--crimson) 35%, var(--navy) 100%);
  animation: story-hero-gradient-drift 18s ease-in-out infinite;
}
.story-hero-editorial-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23fff' fill-opacity='0.12'%3E%3Ccircle cx='10' cy='15' r='1'/%3E%3Ccircle cx='45' cy='8' r='0.8'/%3E%3Ccircle cx='25' cy='42' r='1'/%3E%3Ccircle cx='50' cy='35' r='0.6'/%3E%3Ccircle cx='15' cy='48' r='0.8'/%3E%3C/g%3E%3C/svg%3E");
  background-size: 60px 60px;
  animation: story-hero-dots-float 25s linear infinite;
}
@keyframes story-hero-gradient-drift {
  0%, 100% { opacity: 1; filter: hue-rotate(0deg) brightness(1); }
  50% { opacity: 0.95; filter: hue-rotate(2deg) brightness(1.02); }
}
@keyframes story-hero-dots-float {
  0% { background-position: 0 0; }
  100% { background-position: 60px 60px; }
}

/* Animated background layer: blobs + particles */
.story-hero-editorial-animation {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}
.story-hero-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.2;
  will-change: transform;
}
.story-hero-blob-1 {
  width: min(280px, 60vw);
  height: min(280px, 60vw);
  background: var(--gold);
  top: -10%;
  right: -5%;
  animation: story-hero-blob-float 14s ease-in-out infinite;
}
.story-hero-blob-2 {
  width: min(220px, 50vw);
  height: min(220px, 50vw);
  background: rgba(255,255,255,0.15);
  bottom: -15%;
  left: -8%;
  animation: story-hero-blob-float 18s ease-in-out infinite reverse;
  animation-delay: -5s;
}
.story-hero-blob-3 {
  width: min(180px, 40vw);
  height: min(180px, 40vw);
  background: var(--crimson);
  top: 50%;
  left: 30%;
  transform: translate(-50%, -50%);
  animation: story-hero-blob-float-center 16s ease-in-out infinite;
  animation-delay: -3s;
}
@keyframes story-hero-blob-float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(8%, -6%) scale(1.05); }
  66% { transform: translate(-5%, 8%) scale(0.98); }
}
@keyframes story-hero-blob-float-center {
  0%, 100% { transform: translate(-50%, -50%) scale(1); }
  33% { transform: translate(calc(-50% + 8%), calc(-50% - 6%)) scale(1.05); }
  66% { transform: translate(calc(-50% - 5%), calc(-50% + 8%)) scale(0.98); }
}
.story-hero-particle {
  position: absolute;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(255,255,255,0.35);
  will-change: transform, opacity;
}
.story-hero-particle-1 { top: 18%; left: 12%; animation: story-hero-particle-rise 12s ease-in-out infinite; }
.story-hero-particle-2 { top: 65%; left: 78%; animation: story-hero-particle-rise 14s ease-in-out infinite 1s; }
.story-hero-particle-3 { top: 40%; right: 15%; animation: story-hero-particle-rise 11s ease-in-out infinite 2s; }
.story-hero-particle-4 { top: 75%; left: 25%; animation: story-hero-particle-rise 13s ease-in-out infinite 0.5s; }
.story-hero-particle-5 { top: 25%; right: 35%; animation: story-hero-particle-rise 15s ease-in-out infinite 3s; }
@keyframes story-hero-particle-rise {
  0%, 100% { transform: translateY(0) scale(1); opacity: 0.35; }
  50% { transform: translateY(-20px) scale(1.2); opacity: 0.6; }
}
.story-hero-editorial-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, transparent 0%, rgba(0,0,0,0.15) 100%);
  pointer-events: none;
}
.story-hero-editorial-content {
  position: relative;
  z-index: 2;
  max-width: 600px;
}
.story-hero-editorial-badge {
  display: inline-block;
  font-family: 'Lato', sans-serif;
  font-size: 0.8rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 16px;
  padding: 10px 24px 12px;
  background: var(--deep-crimson);
  border-radius: 999px;
  border: 1px solid rgba(212,160,23,0.6);
  box-shadow: 0 0 20px rgba(212,160,23,0.35), inset 0 1px 0 rgba(255,255,255,0.08);
  text-shadow: 0 1px 2px rgba(0,0,0,0.4);
}
.story-hero-editorial-title {
  font-family: 'Cinzel', serif;
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  line-height: 1.1;
  color: var(--white);
  letter-spacing: -0.02em;
  margin-bottom: 10px;
  text-shadow: 0 2px 24px rgba(0,0,0,0.3);
}
.story-hero-editorial-title span {
  color: var(--gold);
  display: block;
  margin-top: 0.05em;
}
.story-hero-editorial-sub {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.92);
  line-height: 1.7;
  max-width: 520px;
  margin: 14px auto 20px;
  text-shadow: 0 1px 6px rgba(0,0,0,0.2);
}
.story-hero-editorial-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}
.story-hero-btn {
  display: inline-block;
  padding: 14px 28px;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 8px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  font-family: 'Lato', sans-serif;
}
.story-hero-btn-primary {
  background: var(--gold);
  color: var(--dark);
  border: 2px solid var(--gold);
}
.story-hero-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(212,160,23,0.4);
}
.story-hero-btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.8);
}
.story-hero-btn-outline:hover {
  background: rgba(255,255,255,0.12);
  border-color: var(--white);
}
.story-hero-editorial-accent {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0.5;
  pointer-events: none;
}

/* ── STORE SHOWCASE (OUR.webp) ── */
.story-store-showcase {
  position: relative;
  min-height: min(72vh, 620px);
  max-height: min(88vh, 820px);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  overflow: hidden;
  background: var(--navy);
}
.story-store-showcase-media {
  position: absolute;
  inset: 0;
}
.story-store-showcase-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.02);
  transition: transform 8s ease-out;
}
.story-store-showcase:hover .story-store-showcase-img {
  transform: scale(1.06);
}
.story-store-showcase-scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0, 28, 58, 0.25) 0%,
    rgba(0, 28, 58, 0.45) 45%,
    rgba(0, 18, 40, 0.88) 100%
  );
  pointer-events: none;
}
.story-store-showcase-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: min(920px, 100%);
  padding: clamp(28px, 5vw, 48px) clamp(20px, 4vw, 32px) clamp(32px, 6vw, 56px);
  padding-left: max(env(safe-area-inset-left, 0px), clamp(20px, 4vw, 32px));
  padding-right: max(env(safe-area-inset-right, 0px), clamp(20px, 4vw, 32px));
  text-align: center;
}
.story-store-showcase-eyebrow {
  margin: 0 0 10px;
  font-family: 'Lato', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
}
.story-store-showcase-title {
  margin: 0 0 12px;
  font-family: 'Cinzel', serif;
  font-size: clamp(1.65rem, 4vw, 2.65rem);
  font-weight: 700;
  line-height: 1.12;
  color: var(--white);
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.45);
  letter-spacing: 0.02em;
}
/* Hero headline accents: Nepal flag red + gold (solid colors — gradient text breaks across line wraps on mobile) */
.story-store-showcase-title .story-hero-word-nepal {
  color: #ff3d52;
  text-shadow:
    0 1px 2px rgba(0, 0, 0, 0.85),
    0 0 22px rgba(200, 16, 46, 0.75);
}
.story-store-showcase-title .story-hero-word-pacific {
  color: var(--gold-light);
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.45);
}
.story-store-showcase-lead {
  margin: 0 auto 22px;
  max-width: 36rem;
  font-size: clamp(0.95rem, 1.8vw, 1.1rem);
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.92);
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.35);
}
.story-store-showcase-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  font-family: 'Lato', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--dark);
  background: linear-gradient(180deg, #fff8e8 0%, var(--gold) 45%, #c9a010 100%);
  border: 2px solid rgba(255, 255, 255, 0.35);
  border-radius: 6px;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.35);
  transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}
.story-store-showcase-cta:hover {
  transform: translateY(-2px);
  filter: brightness(1.05);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.4);
}

@media (prefers-reduced-motion: reduce) {
  .story-store-showcase-img,
  .story-store-showcase:hover .story-store-showcase-img {
    transform: none;
    transition: none;
  }
}

/* Our Story page: no zoom / motion on store hero image */
.our-story-daraz .story-store-showcase .story-store-showcase-img,
.our-story-daraz .story-store-showcase:hover .story-store-showcase-img {
  transform: none !important;
  transition: none !important;
}

/* ── STORY ORIGIN + owner (editorial grid) ── */
.story-origin-editorial {
  background: linear-gradient(180deg, #faf8f5 0%, var(--cream) 12%, #f5f0ea 100%);
  padding: clamp(40px, 7vw, 72px) clamp(20px, 4vw, 40px) 0;
  position: relative;
}
.story-origin-editorial::before {
  display: none;
}
.story-about-shell {
  max-width: 1120px;
  margin: 0 auto;
}
.story-about-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 340px);
  gap: clamp(28px, 5vw, 56px);
  align-items: start;
  padding-bottom: clamp(24px, 4vw, 40px);
}
.story-about-copy {
  min-width: 0;
}
.story-about-aside {
  position: relative;
}
.story-owner-card {
  margin: 0;
  padding: 0;
  border-radius: 16px;
  overflow: hidden;
  background: #fff;
  box-shadow:
    0 32px 64px rgba(15, 23, 42, 0.12),
    0 0 0 1px rgba(15, 23, 42, 0.06);
  border-top: 4px solid var(--crimson);
}
.story-owner-photo-frame {
  position: relative;
  aspect-ratio: 4 / 5;
  max-height: min(420px, 52vh);
  overflow: hidden;
  background: linear-gradient(145deg, #1a2a44 0%, var(--navy) 100%);
}
.story-owner-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}
.story-owner-card-body {
  padding: clamp(18px, 3vw, 24px) clamp(18px, 3vw, 26px) clamp(22px, 3.5vw, 28px);
  text-align: left;
  border-top: 1px solid rgba(212, 160, 23, 0.25);
  background: linear-gradient(180deg, #fffefb 0%, #faf6f0 100%);
}
.story-owner-name {
  display: block;
  font-family: 'Cinzel', serif;
  font-size: clamp(1.15rem, 2vw, 1.35rem);
  font-weight: 700;
  color: var(--deep-crimson);
  letter-spacing: 0.03em;
  margin-bottom: 4px;
}
.story-owner-role {
  display: block;
  font-family: 'Lato', sans-serif;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(51, 51, 51, 0.55);
  margin-bottom: 14px;
}
.story-owner-note {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.65;
  color: #444;
}

.story-origin-editorial-inner {
  max-width: 1120px;
  margin: 0 auto;
}
.story-origin-editorial-panel {
  padding: 0 0 clamp(28px, 4vw, 36px) 0;
  margin-bottom: 28px;
}
.story-origin-editorial-panel-text {
  min-width: 0;
}
.story-origin-flex {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  margin-bottom: 22px;
}
.story-origin-photo {
  margin: 0;
  border-radius: 14px;
  overflow: hidden;
  box-shadow:
    0 28px 80px rgba(15, 23, 42, 0.18),
    0 2px 0 rgba(255, 255, 255, 0.35) inset;
  border: 1px solid rgba(15, 23, 42, 0.10);
  background: #f3eee6;
  width: 100%;
  max-width: 420px;
  flex: 0 0 auto;
}
.story-origin-photo-img {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}
.story-origin-editorial-tag {
  display: inline-block;
  font-size: 0.7rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
  font-weight: 700;
  padding-bottom: 8px;
  border-bottom: 2px solid rgba(212,160,23,0.4);
}
.story-origin-editorial-panel h2,
.story-about-copy h2 {
  font-family: 'Cinzel', serif;
  font-size: clamp(1.75rem, 3.2vw, 2.4rem);
  color: var(--deep-crimson);
  line-height: 1.2;
  margin: 0 0 28px 0;
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1.3;
}
.story-origin-editorial-panel .story-origin-editorial-body p,
.story-about-copy .story-origin-editorial-body p {
  color: #333;
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 20px;
  text-align: left;
}
.story-origin-editorial-panel .story-origin-editorial-body p:last-child,
.story-about-copy .story-origin-editorial-body p:last-child {
  margin-bottom: 0;
}
.story-origin-editorial-byline {
  margin-top: 28px;
  padding-top: 20px;
  border-top: 1px solid rgba(212,160,23,0.35);
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.story-origin-editorial-signature {
  font-family: 'Cinzel', serif;
  font-size: 1.15rem;
  font-style: normal;
  color: var(--deep-crimson);
  font-weight: 600;
  letter-spacing: 0.04em;
}
.story-origin-editorial-role {
  font-size: 0.68rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(51, 51, 51, 0.62);
  font-weight: 700;
}
.story-origin-editorial-lead {
  font-size: 1.08rem;
  color: #333;
  font-weight: 500;
}
.story-origin-editorial-lead::first-letter {
  font-family: 'Cinzel', serif;
  font-size: 4em;
  float: left;
  line-height: 0.85;
  color: var(--gold);
  margin-right: 10px;
  margin-top: 4px;
}
/* ── QUOTE BANNER: Full-width animated strip (compact) ── */
.story-quote-banner-wrap {
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  margin-top: 4px;
  margin-bottom: 0;
}
.story-origin-editorial-quote {
  margin: 0;
  padding: clamp(14px, 3vw, 22px) clamp(20px, 4vw, 36px) clamp(14px, 3vw, 22px) clamp(48px, 8vw, 56px);
  background: linear-gradient(120deg, #fdfbf7 0%, #faf6f0 40%, #f5efe6 100%);
  border-top: 3px solid rgba(212,160,23,0.6);
  position: relative;
  text-align: center;
  overflow: hidden;
}
.story-origin-editorial-quote::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.03) 50%, transparent 100%);
  animation: story-quote-shimmer 8s ease-in-out infinite;
  pointer-events: none;
}
@keyframes story-quote-shimmer {
  0%, 100% { opacity: 0; transform: translateX(-20%); }
  50% { opacity: 1; transform: translateX(20%); }
}
.story-origin-editorial-quote-mark {
  position: absolute;
  top: clamp(12px, 2vw, 20px);
  left: clamp(16px, 3.5vw, 28px);
  font-size: clamp(2rem, 5vw, 3rem);
  line-height: 1;
  color: var(--gold);
  opacity: 0.7;
  font-family: 'Cinzel', serif;
  font-style: normal;
}
.story-quote-mark-end {
  position: static;
  display: inline;
  font-size: 0.85em;
  margin-left: 0.05em;
  opacity: 1;
  color: var(--gold);
}
.story-quote-heart-start {
  display: inline-block;
  margin-right: 0.2em;
  vertical-align: middle;
  animation: story-heart-pulse 2s ease-in-out infinite;
}
.story-quote-heart-end {
  display: inline-block;
  margin-left: 0.2em;
  vertical-align: middle;
  animation: story-heart-pulse 2s ease-in-out infinite;
}
.story-origin-editorial-quote-text {
  position: relative;
  margin: 0;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  flex-direction: column;
  gap: 0.2em;
  align-items: center;
}
.story-quote-line {
  display: block;
  font-family: 'Cinzel', serif;
  font-size: clamp(0.95rem, 1.8vw, 1.2rem);
  font-style: italic;
  line-height: 1.35;
  color: var(--deep-crimson);
  font-weight: 600;
  letter-spacing: 0.02em;
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease-out, transform 0.7s ease-out;
}
.story-origin-editorial-quote.quote-banner-animated .story-quote-line {
  opacity: 1;
  transform: translateY(0);
}
.story-origin-editorial-quote.quote-banner-animated .story-quote-line[data-quote-line="1"] {
  transition-delay: 0.1s;
}
.story-origin-editorial-quote.quote-banner-animated .story-quote-line[data-quote-line="2"] {
  transition-delay: 0.35s;
}
.story-quote-line-with-sparks {
  position: relative;
}
.story-quote-spark {
  position: absolute;
  font-size: 0.65em;
  pointer-events: none;
  animation: story-spark-twinkle 1.8s ease-in-out infinite;
}
.story-quote-spark-1 {
  top: -0.35em;
  left: -0.5em;
  animation-delay: 0s;
}
.story-quote-spark-2 {
  top: -0.5em;
  right: 2.2em;
  animation-delay: 0.4s;
}
.story-quote-spark-3 {
  bottom: -0.4em;
  left: 1.5em;
  animation-delay: 0.8s;
}
@keyframes story-spark-twinkle {
  0%, 100% { opacity: 0.35; transform: scale(0.85); }
  50% { opacity: 1; transform: scale(1.15); }
}
.story-quote-heart {
  display: inline-block;
  font-size: 0.9em;
  vertical-align: middle;
  margin: 0 0.15em;
  animation: story-heart-pulse 2s ease-in-out infinite;
}
.story-quote-line[data-quote-line="2"] .story-quote-heart {
  margin-left: 0.2em;
}
@keyframes story-heart-pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.12); opacity: 0.9; }
}

/* Red and blue pattern line with gold separators (full-width) */
.story-red-blue-pattern {
  width: 100vw;
  position: relative;
  left: 50%;
  margin-left: -50vw;
  height: 4px;
  margin-top: 0;
  margin-bottom: 0;
  background: repeating-linear-gradient(90deg,
    var(--navy) 0px,
    var(--navy) 26px,
    var(--gold) 26px,
    var(--gold) 29px,
    var(--crimson) 29px,
    var(--crimson) 55px,
    var(--gold) 55px,
    var(--gold) 58px
  );
}

/* ── STATS BAND: Nepali flag theme (crimson, blue, white) ── */
.story-stats-band {
  position: relative;
  padding: clamp(36px, 5vw, 52px) clamp(24px, 4vw, 48px);
  background: var(--navy);
  overflow: hidden;
}
.story-stats-band-bg {
  position: absolute;
  inset: 0;
  background-image: url('https://images.unsplash.com/photo-1544735716-392fe2489ffa?w=1200');
  background-size: cover;
  background-position: center;
  filter: blur(4px);
  opacity: 0.3;
}
.story-stats-band-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0,63,135,0.9) 0%, rgba(200,16,46,0.35) 50%, rgba(0,63,135,0.9) 100%);
  pointer-events: none;
}
.story-stats-inner {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  text-align: center;
  align-items: center;
}
.story-stats-band .stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 0 clamp(12px, 2vw, 24px);
  border-right: 1px solid rgba(255,255,255,0.4);
}
.story-stats-band .stat-item:last-child {
  border-right: none;
}
.story-stats-band .stat-item .num {
  font-family: 'Cinzel', serif;
  font-size: clamp(2rem, 4vw, 2.75rem);
  color: var(--white);
  font-weight: 700;
  line-height: 1.1;
  text-shadow: 0 1px 4px rgba(0,0,0,0.3);
}
.story-stats-band .stat-item .label {
  color: var(--white);
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
}
.story-stats-band .stat-item .stat-sublabel {
  color: rgba(255,255,255,0.85);
  font-size: 0.7rem;
  letter-spacing: 0.04em;
  text-transform: none;
  margin-top: 2px;
}

/* ── VALUES SECTION: Same gradient as How it began (crimson → navy) ── */
.story-values-section {
  background: linear-gradient(135deg, var(--crimson) 0%, var(--deep-crimson) 35%, var(--navy) 100%);
  padding: clamp(16px, 3vw, 28px) clamp(24px, 4vw, 40px) clamp(40px, 6vw, 56px);
}
.story-values-inner {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}
.story-values-tag {
  display: inline-block;
  font-size: 0.65rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.9);
  margin-bottom: 8px;
  font-weight: 600;
}
.story-values-title {
  font-family: 'Cinzel', serif;
  font-size: clamp(1.5rem, 2.8vw, 2rem);
  color: var(--white);
  margin-bottom: 28px;
  line-height: 1.2;
}
.story-values-title span {
  color: var(--gold);
}
.story-values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.story-value-card {
  display: flex;
  flex-direction: column;
  background: linear-gradient(165deg, #002a5c 0%, var(--navy) 100%);
  color: var(--white);
  padding: 28px 24px;
  border-radius: 8px;
  border-top: 3px solid var(--crimson);
  box-shadow: 0 10px 32px rgba(0,63,135,0.12);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-top-color 0.3s ease;
}
.story-value-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0,63,135,0.2);
  border-top-color: var(--gold);
}
.story-value-card-icon {
  font-size: 2rem;
  margin-bottom: 14px;
  line-height: 1;
}
.story-value-card-heading {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 14px;
  margin-bottom: 12px;
}
.story-value-card-heading .story-value-card-icon {
  margin-bottom: 0;
  flex-shrink: 0;
}
.story-value-card-heading h3 {
  margin-bottom: 0;
}
.story-value-card h3 {
  font-family: 'Cinzel', serif;
  font-size: 1rem;
  color: var(--gold);
  margin-bottom: 10px;
  font-weight: 600;
}
.story-value-card p {
  color: rgba(255,255,255,0.88);
  font-size: 0.88rem;
  line-height: 1.65;
  margin: 0;
}

/* ── MOBILE ── */
@media (max-width: 900px) {
  .story-hero-editorial {
    min-height: 38vh;
    min-height: 38dvh;
  }
  .story-store-showcase {
    min-height: min(56vh, 440px);
    max-height: none;
  }
  .story-about-grid {
    grid-template-columns: 1fr;
    gap: clamp(24px, 5vw, 36px);
  }
  .story-about-aside {
    width: 100%;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
  }
  .story-owner-photo-frame {
    max-height: none;
    aspect-ratio: 3 / 4;
  }
  .story-origin-editorial-panel {
    padding: 32px 24px 20px;
    margin-bottom: 24px;
  }
  .story-origin-photo {
    border-radius: 12px;
  }
  .story-origin-editorial-quote {
    padding: 16px 16px 16px 38px;
  }
  .story-origin-editorial-quote-mark {
    font-size: 1.5rem;
    left: 12px;
  }
  .story-quote-line {
    font-size: clamp(0.9rem, 3.5vw, 1.05rem);
  }
  .story-stats-inner {
    grid-template-columns: 1fr 1fr;
    gap: 0;
    max-width: 400px;
  }
  .story-stats-band .stat-item {
    padding: 20px 16px;
    border-right: none;
    border-bottom: 1px solid rgba(255,255,255,0.4);
  }
  .story-stats-band .stat-item:nth-child(3),
  .story-stats-band .stat-item:nth-child(4) {
    border-bottom: none;
  }
  .story-stats-band .stat-item:nth-child(odd) {
    border-right: 1px solid rgba(255,255,255,0.4);
  }
  .story-stats-band {
    padding: 28px 20px 48px;
  }
  .story-values-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .story-value-card {
    padding: 24px 20px;
  }
}

@media (min-width: 901px) {
  .story-owner-card {
    position: sticky;
    top: max(20px, env(safe-area-inset-top, 0px));
  }
  .story-origin-flex {
    flex-direction: row-reverse;
    align-items: center;
  }
  .story-origin-editorial-body {
    flex: 1 1 0;
    min-width: 0;
  }
}

@media (max-width: 560px) {
  .story-stats-inner {
    grid-template-columns: 1fr 1fr;
  }
  .story-hero-editorial-btns {
    flex-direction: column;
  }
  .story-hero-btn {
    width: 100%;
    text-align: center;
  }
}

/* ═══════════════════════════════════════════════════════════════
   Who we are (Daraz-inspired corporate layout)
   Ref: https://daraz.com/who-we-are/
═══════════════════════════════════════════════════════════════ */

body.our-story-page.our-story-daraz {
  background: var(--cream);
  padding-top: 0;
}

.our-story-daraz .story-main {
  background: var(--cream);
}

/* Hero flush with fixed nav: no cream strip above store image */
.our-story-daraz .story-store-showcase {
  margin-top: 0;
  padding-top: max(60px, calc(env(safe-area-inset-top, 0px) + 52px));
  min-height: min(52vh, 480px);
  max-height: min(76vh, 680px);
}
.our-story-daraz .story-store-showcase-inner {
  padding-top: 0;
}

@media (min-width: 1025px) {
  .our-story-daraz .story-store-showcase-inner {
    padding-top: clamp(20px, 2.8vw, 40px);
  }
}

/* Page title on store hero */
.our-story-daraz .story-store-page-title {
  margin: 0 0 8px;
  font-family: 'Lato', system-ui, sans-serif;
  font-size: clamp(0.7rem, 1.2vw, 0.78rem);
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-light);
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.45);
}
.our-story-daraz .story-store-showcase-eyebrow {
  letter-spacing: 0.18em;
  margin-top: 0;
  color: var(--gold);
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.4);
}
.our-story-daraz .story-store-showcase-title {
  font-family: 'Lato', system-ui, sans-serif;
  font-weight: 800;
  letter-spacing: -0.02em;
  font-size: clamp(1.5rem, 3.8vw, 2.35rem);
  color: #fff8ec;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.42);
}
.our-story-daraz .story-store-showcase-title .story-hero-word-nepal {
  color: #ffe08a;
  text-shadow:
    0 1px 2px rgba(0, 0, 0, 0.85),
    0 0 18px rgba(245, 200, 66, 0.45);
}
.our-story-daraz .story-store-showcase-title .story-hero-word-pacific {
  color: #fff3c4;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.5);
}
.our-story-daraz .story-store-showcase-lead {
  max-width: 34rem;
  font-family: 'Lato', sans-serif;
  font-weight: 400;
  line-height: 1.65;
  color: rgba(255, 248, 232, 0.94);
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.4);
}

.our-story-daraz .story-store-actions {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: stretch;
  justify-content: center;
  gap: 10px 12px;
  margin-top: 8px;
  width: 100%;
  max-width: 28rem;
  margin-left: auto;
  margin-right: auto;
}
.our-story-daraz .story-store-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 1 1 0;
  min-width: 0;
  min-height: 46px;
  padding: 0 clamp(12px, 3vw, 24px);
  font-family: 'Lato', sans-serif;
  font-size: clamp(0.68rem, 2.8vw, 0.8rem);
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 4px;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}
/* Shop primary — matches Shop page `.page-hero .btn-shop-collection` */
.our-story-daraz .story-store-btn--shop {
  color: var(--dark);
  background: var(--gold);
  border: 2px solid var(--gold);
  font-weight: 700;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.35);
}
.our-story-daraz .story-store-btn--shop:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  color: var(--dark);
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.4);
  transform: translateY(-1px);
}
.our-story-daraz .story-store-btn--outline {
  color: rgba(255, 249, 238, 0.96);
  background: transparent;
  border: 2px solid rgba(255, 255, 255, 0.88);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.28);
}
.our-story-daraz .story-store-btn--outline:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--gold);
  color: var(--gold-light);
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.32);
  transform: translateY(-1px);
}

.our-story-daraz .story-store-showcase-cta {
  display: none;
}

/* Hero: same proportions and bottom-weighted layout as desktop; readable type on narrow screens */
@media (max-width: 1024px) {
  .our-story-daraz .story-store-showcase {
    min-height: min(52vh, 500px);
    max-height: min(76vh, 680px);
    align-items: flex-end;
    justify-content: center;
  }
  .our-story-daraz .story-store-showcase-inner {
    padding-bottom: clamp(28px, 6vw, 52px);
  }
  .our-story-daraz .story-store-showcase-title {
    font-size: clamp(1.55rem, 4.2vw, 2.35rem);
    line-height: 1.14;
  }
  .our-story-daraz .story-store-showcase-lead {
    font-size: clamp(0.98rem, 2.5vw, 1.08rem);
  }
}
@media (max-width: 600px) {
  /* Bottom-weighted desktop hero reads as a huge empty gap above copy on phones */
  .our-story-daraz .story-store-showcase {
    align-items: flex-start;
    justify-content: center;
    min-height: min(40vh, 340px);
    max-height: none;
    padding-top: max(48px, calc(env(safe-area-inset-top, 0px) + 44px));
  }
  .our-story-daraz .story-store-showcase-inner {
    padding-top: clamp(10px, 2.8vw, 18px);
    padding-bottom: clamp(22px, 5vw, 40px);
  }
  .our-story-daraz .story-store-actions {
    flex-wrap: nowrap;
    max-width: min(28rem, 100%);
  }
}

/* Editorial cards */
.our-story-daraz .story-origin-editorial {
  background: var(--cream);
  padding-top: clamp(36px, 6vw, 64px);
}
.our-story-daraz .story-panel-card {
  background: #fffef8;
  border-radius: 8px;
  border: 1px solid rgba(0, 63, 135, 0.1);
  box-shadow: var(--card-shadow);
  padding: clamp(22px, 4vw, 32px) clamp(20px, 3.5vw, 32px);
}
.our-story-daraz .story-about-copy {
  padding-bottom: clamp(22px, 4vw, 32px);
}

/* One card: photo + leadership + story copy */
.our-story-daraz .story-unified-card {
  padding: 0;
  overflow: hidden;
}
.our-story-daraz .story-unified-layout {
  display: grid;
  grid-template-columns: minmax(260px, 320px) minmax(0, 1fr);
  align-items: stretch;
  min-height: 0;
}
.our-story-daraz .story-unified-media {
  display: flex;
  flex-direction: column;
  background: linear-gradient(180deg, var(--navy) 0%, #021a38 100%);
  border-right: 1px solid rgba(212, 160, 23, 0.28);
}
.our-story-daraz .story-unified-photo-wrap {
  position: relative;
  flex: 1 1 auto;
  min-height: min(52vw, 320px);
  max-height: 420px;
}
.our-story-daraz .story-unified-photo {
  width: 100%;
  height: 100%;
  min-height: 260px;
  object-fit: cover;
  object-position: center top;
  display: block;
}
.our-story-daraz .story-unified-owner-meta {
  padding: clamp(18px, 3vw, 24px) clamp(16px, 3vw, 22px);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(0, 0, 0, 0.22);
}
.our-story-daraz .story-unified-owner-meta .story-section-label {
  color: var(--gold-light);
}
.our-story-daraz .story-unified-owner-meta .story-owner-name {
  color: #fff;
}
.our-story-daraz .story-unified-owner-meta .story-owner-role {
  color: rgba(255, 255, 255, 0.65);
}
.our-story-daraz .story-unified-owner-meta .story-owner-note {
  color: rgba(255, 255, 255, 0.88);
}
.our-story-daraz .story-unified-copy {
  padding: clamp(22px, 4vw, 36px) clamp(22px, 4vw, 40px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media (max-width: 900px) {
  .our-story-daraz .story-unified-layout {
    grid-template-columns: 1fr;
  }
  .our-story-daraz .story-unified-media {
    border-right: none;
    border-bottom: 1px solid rgba(212, 160, 23, 0.28);
  }
  .our-story-daraz .story-unified-photo-wrap {
    max-height: 360px;
    min-height: 280px;
  }
}
.our-story-daraz .story-section-label {
  display: block;
  margin: 0 0 10px;
  font-family: 'Lato', sans-serif;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--navy);
  border: none;
  padding: 0;
}
.our-story-daraz .story-section-h2,
.our-story-daraz .story-about-copy h2 {
  font-family: 'Lato', system-ui, sans-serif;
  font-weight: 800;
  color: #1a1a2e;
  letter-spacing: -0.03em;
  margin: 0 0 10px;
  font-size: clamp(1.45rem, 3vw, 1.85rem);
}
.our-story-daraz .story-section-h2--origin {
  color: #1a1a2e;
}
@supports ((-webkit-background-clip: text) or (background-clip: text)) {
  .our-story-daraz .story-section-h2--origin {
    background: linear-gradient(95deg, #c8102e 0%, #003f87 48%, #b8860b 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
  }
}
.our-story-daraz .story-meta-line {
  margin: 0 0 22px;
  font-size: 0.82rem;
  color: #5c6370;
  font-weight: 600;
  letter-spacing: 0.04em;
}
.our-story-daraz .story-meta-accent {
  color: var(--gold);
  font-weight: 800;
}
.our-story-daraz .story-meta-accent--place {
  color: var(--crimson);
}
.our-story-daraz .story-meta-sep {
  color: rgba(92, 99, 112, 0.55);
  font-weight: 600;
}
.our-story-daraz .story-origin-editorial-tag {
  display: none;
}
.our-story-daraz .story-origin-editorial-body p {
  color: #3d4451;
  font-size: 1rem;
  line-height: 1.75;
}
.our-story-daraz .story-origin-editorial-lead {
  font-weight: 500;
}
.our-story-daraz .story-origin-editorial-lead::first-letter {
  float: none;
  font-size: inherit;
  font-family: inherit;
  color: inherit;
  margin: 0;
  line-height: inherit;
}
.our-story-daraz .story-owner-name {
  font-family: 'Lato', system-ui, sans-serif;
  font-weight: 800;
}

/* Values: light section, white cards */
.our-story-daraz .story-values-section {
  background: var(--cream);
  padding: clamp(40px, 7vw, 72px) clamp(20px, 4vw, 40px);
  border-top: 1px solid rgba(200, 16, 46, 0.12);
}
.our-story-daraz .story-section-label--on-dark {
  color: var(--navy);
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}
.our-story-daraz .story-values-title {
  font-family: 'Lato', system-ui, sans-serif;
  font-weight: 800;
  color: #1a1a2e;
  letter-spacing: -0.03em;
  font-size: clamp(1.5rem, 3vw, 2rem);
}
.our-story-daraz .story-values-title span {
  color: var(--gold);
}
.our-story-daraz .story-values-intro {
  max-width: 560px;
  margin: 0 auto 32px;
  font-size: 1rem;
  line-height: 1.65;
  color: #5c6370;
}
.our-story-daraz .story-values-tag {
  display: none;
}
.our-story-daraz .story-values-grid {
  gap: 22px;
}
.our-story-daraz .story-value-card {
  position: relative;
  text-align: left;
  padding: 26px 22px 26px 24px;
  border-radius: 12px;
  border: 1px solid rgba(0, 63, 135, 0.12);
  box-shadow: 0 6px 22px rgba(0, 38, 82, 0.07);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
  overflow: hidden;
}
.our-story-daraz .story-value-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--navy), var(--gold));
  opacity: 0.95;
}
.our-story-daraz .story-value-card:nth-child(1) {
  background: linear-gradient(165deg, #fffef9 0%, #fff5e6 55%, #ffecd4 100%);
}
.our-story-daraz .story-value-card:nth-child(1)::before {
  background: linear-gradient(90deg, var(--crimson), var(--gold-light));
}
.our-story-daraz .story-value-card:nth-child(2) {
  background: linear-gradient(165deg, #f8fbff 0%, #eef4fc 50%, #e8f0fa 100%);
}
.our-story-daraz .story-value-card:nth-child(2)::before {
  background: linear-gradient(90deg, var(--navy), var(--gold));
}
.our-story-daraz .story-value-card:nth-child(3) {
  background: linear-gradient(165deg, #fffdf7 0%, #fdf6e8 55%, #faefd8 100%);
}
.our-story-daraz .story-value-card:nth-child(3)::before {
  background: linear-gradient(90deg, var(--gold), var(--crimson));
}
.our-story-daraz .story-value-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 36px rgba(0, 38, 82, 0.12);
  border-color: rgba(212, 160, 23, 0.45);
}
.our-story-daraz .story-value-card-heading {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 14px;
  margin-bottom: 14px;
}
.our-story-daraz .story-value-card-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  flex-shrink: 0;
  margin-bottom: 16px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid rgba(0, 63, 135, 0.1);
  box-shadow: 0 2px 8px rgba(0, 38, 82, 0.06);
}
.our-story-daraz .story-value-card-heading .story-value-card-icon {
  width: 50px;
  height: 50px;
  margin-bottom: 0;
}
.our-story-daraz .story-value-card-icon-emoji {
  font-size: 1.75rem;
  line-height: 1;
}
.our-story-daraz .story-value-card-icon--community {
  background: linear-gradient(135deg, rgba(200, 16, 46, 0.12), rgba(0, 63, 135, 0.08));
  border-color: rgba(200, 16, 46, 0.22);
}
.our-story-daraz .story-community-icon {
  display: block;
  color: var(--crimson);
}
.our-story-daraz .story-value-card h3 {
  font-family: 'Lato', system-ui, sans-serif;
  font-weight: 800;
  color: var(--deep-crimson);
  font-size: 1.08rem;
  margin-bottom: 12px;
  text-transform: none;
  letter-spacing: -0.02em;
}
.our-story-daraz .story-value-card-heading h3 {
  margin-bottom: 0;
  flex: 1 1 auto;
  min-width: 0;
}
.our-story-daraz .story-value-card p {
  color: #5c6370;
  font-size: 0.95rem;
  line-height: 1.65;
}

/* Stats: elevated panel */
.our-story-daraz .story-stats-band {
  background: var(--cream);
  padding: clamp(36px, 6vw, 56px) clamp(16px, 4vw, 32px) clamp(48px, 7vw, 72px);
  border-top: 1px solid rgba(212, 160, 23, 0.22);
}
.our-story-daraz .story-stats-band-bg,
.our-story-daraz .story-stats-band-overlay {
  display: none !important;
}
.our-story-daraz .story-stats-panel {
  max-width: 1080px;
  margin: 0 auto;
  padding: clamp(20px, 3.5vw, 32px) clamp(12px, 2vw, 20px) clamp(24px, 4vw, 36px);
  background: linear-gradient(180deg, #fffef8 0%, #fdf6e8 45%, #faf2df 100%);
  border-radius: 16px;
  border: 1px solid rgba(0, 63, 135, 0.1);
  box-shadow:
    0 16px 48px rgba(0, 38, 82, 0.09),
    0 0 0 1px rgba(255, 255, 255, 0.7) inset;
}
.our-story-daraz .story-stats-header {
  text-align: center;
  max-width: 36rem;
  margin: 0 auto clamp(22px, 4vw, 32px);
  padding: 0 clamp(8px, 2vw, 16px);
}
.our-story-daraz .story-stats-kicker {
  display: block;
  margin: 0 auto 8px;
  color: var(--navy);
  text-align: center;
}
.our-story-daraz .story-stats-title {
  margin: 0 0 10px;
  font-family: 'Lato', system-ui, sans-serif;
  font-size: clamp(1.45rem, 3vw, 1.85rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--deep-crimson);
}
.our-story-daraz .story-stats-title .story-stats-accent {
  color: var(--gold);
}
.our-story-daraz .story-stats-subtitle {
  margin: 0;
  font-size: clamp(0.9rem, 1.8vw, 1rem);
  line-height: 1.6;
  color: var(--gray);
}
.our-story-daraz .story-stats-inner {
  max-width: none;
  gap: 0;
}
.our-story-daraz .story-stats-band .stat-item {
  border-right: 1px solid rgba(0, 63, 135, 0.1);
  border-bottom: none;
  padding: clamp(16px, 3vw, 28px) clamp(10px, 2vw, 20px);
  position: relative;
}
.our-story-daraz .story-stats-band .stat-item::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 36px;
  height: 3px;
  border-radius: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0.85;
}
.our-story-daraz .story-stats-band .stat-item:last-child {
  border-right: none;
}
.our-story-daraz .story-stats-band .stat-item .num {
  color: var(--navy);
  text-shadow: none;
  font-family: 'Cinzel', 'Lato', serif;
  font-weight: 700;
  font-size: clamp(2.1rem, 5vw, 3rem);
  line-height: 1.05;
  margin-bottom: 6px;
}
.our-story-daraz .story-stats-band .stat-item .label {
  color: var(--deep-crimson);
  letter-spacing: 0.1em;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
}
.our-story-daraz .story-stats-band .stat-item .stat-sublabel {
  color: var(--gray);
  font-size: 0.8rem;
  margin-top: 6px;
  line-height: 1.45;
  text-transform: none;
  letter-spacing: 0.02em;
}

@media (max-width: 900px) {
  .our-story-daraz .story-stats-band .stat-item {
    border-right: none;
    border-bottom: 1px solid rgba(0, 63, 135, 0.08);
    padding: 22px 14px;
  }
  .our-story-daraz .story-stats-band .stat-item:nth-child(odd) {
    border-right: 1px solid rgba(0, 63, 135, 0.08);
  }
  .our-story-daraz .story-stats-band .stat-item:nth-child(3),
  .our-story-daraz .story-stats-band .stat-item:nth-child(4) {
    border-bottom: none;
  }
}
